* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background-color: #f8fafc;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #5b21b6, #7c3aed);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(91, 33, 182, 0.25);
}

.btn-secondary {
  background: #eef2ff;
  color: #4338ca;
  border: 1px solid rgba(67, 56, 202, 0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(91, 33, 182, 0.35);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 252, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(99, 102, 241, 0.15);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.3rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background: #7c3aed;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a.active {
  color: #312e81;
}

.main-nav a.active::after {
  width: 100%;
}

.hero {
  padding: 6rem 0 6.5rem;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(79, 70, 229, 0.2), transparent 60%), #f8fafc;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-text p {
  max-width: 520px;
  margin-bottom: 1.8rem;
  font-size: 1.05rem;
  color: #334155;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-highlight {
  width: min(420px, 100%);
  padding: 2rem 2rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.14);
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}

.partner-logo {
  width: 220px;
  max-width: 100%;
}

.hero-card-image {
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 18px 36px rgba(79, 70, 229, 0.16);
  object-fit: cover;
  max-height: 220px;
}
}

.hero-highlight h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #4c1d95;
}

.trust {
  padding: 4rem 0;
}

.trust-content {
  display: grid;
  gap: 2rem;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.trust h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.trust-badges {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.trust-badges li {
  padding: 1rem 1.2rem;
  border-radius: 0.9rem;
  background: #eef2ff;
  color: #4338ca;
  font-weight: 600;
}

.services {
  padding: 4.5rem 0 5rem;
  background: #ffffff;
}

.services h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.service-card {
  background: #f9fafb;
  border-radius: 1.2rem;
  padding: 2.2rem 2rem;
  border: 1px solid rgba(124, 58, 237, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #4338ca;
}

.service-card p {
  color: #475569;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(79, 70, 229, 0.15);
}

.mysip {
  padding: 5rem 0;
  background: radial-gradient(circle at center, rgba(79, 70, 229, 0.08), transparent 70%), #eef2ff;
}

.mysip-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.mysip h2 {
  font-size: 2.3rem;
  margin-bottom: 1.4rem;
}

.mysip-text p {
  margin-bottom: 1.2rem;
  color: #334155;
}

.mysip-text ul {
  list-style: disc;
  margin: 1rem 0 1.5rem 1.2rem;
  color: #1f2933;
}

.mysip-note {
  margin-top: 1rem;
  color: #1f2937;
  font-size: 0.95rem;
}

.mysip-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #4338ca;
  gap: 0.4rem;
  transition: color 0.2s ease;
}

.mysip-link:hover {
  color: #312e81;
}

.mysip-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2rem;
  border: 1px solid rgba(67, 56, 202, 0.15);
  box-shadow: 0 14px 32px rgba(51, 65, 85, 0.12);
  display: grid;
  gap: 1rem;
  justify-items: flex-start;
}

.mysip-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #4338ca;
}

.mysip-card p {
  color: #475569;
  margin-bottom: 1rem;
}

.process {
  padding: 4.5rem 0;
}

.process h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.step {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2.1rem 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: 1.3rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(79, 70, 229, 0.12);
}

.step h3 {
  margin-bottom: 0.8rem;
  color: #1f2937;
}

.step p {
  color: #475569;
}

.automation {
  padding: 5rem 0;
  background: #ffffff;
}

.automation-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.automation-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.3rem;
}

.automation-text p {
  color: #334155;
  margin-bottom: 1.2rem;
}

.automation-highlights {
  list-style: disc;
  margin-left: 1.2rem;
  display: grid;
  gap: 0.7rem;
  color: #1f2937;
}

.automation-flow {
  background: #f3f4ff;
  border: 1px solid rgba(79, 70, 229, 0.18);
  border-radius: 1.2rem;
  padding: 2rem;
  box-shadow: 0 18px 34px rgba(79, 70, 229, 0.12);
}

.automation-flow h3 {
  font-size: 1.3rem;
  color: #4338ca;
  margin-bottom: 1rem;
}

.automation-flow ol {
  margin-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
  color: #1f2937;
}

.automation-note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: #475569;
}

.section-illustration {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 1.5rem auto 0;
}

.mysip-card .section-illustration {
  margin: 0 0 0.5rem 0;
  max-width: 280px;
}

.ai {
  padding: 5rem 0;
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.12), transparent 60%), #f8fafc;
}

.ai-content {
  display: grid;
  gap: 2.5rem;
  justify-items: center;
}

.ai-intro {
  text-align: center;
  max-width: 720px;
}

.ai-intro h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.ai-intro p {
  color: #334155;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  width: 100%;
}

.ai-card {
  background: #ffffff;
  border-radius: 1.2rem;
  padding: 2rem;
  border: 1px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.12);
  display: grid;
  gap: 0.8rem;
}

.ai-card h3 {
  color: #4338ca;
  font-size: 1.2rem;
}

.ai-card p {
  color: #475569;
}

.ai-card span {
  font-size: 0.9rem;
  color: #6366f1;
  font-weight: 600;
}

.ai-cta {
  margin-top: 1rem;
}

.kpi {
  padding: 5rem 0;
  background: #ffffff;
}

.kpi h2 {
  text-align: center;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.kpi-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  color: #334155;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.kpi-card {
  border-radius: 1.2rem;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #f8fafc;
  display: grid;
  gap: 0.7rem;
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
}

.kpi-card h3 {
  color: #4338ca;
  font-size: 1.15rem;
}

.kpi-card p {
  color: #1f2937;
}

.kpi-card span {
  color: #475569;
  font-size: 0.9rem;
}

.kpi-note {
  margin-top: 2rem;
  text-align: center;
  color: #475569;
  max-width: 780px;
  margin-inline: auto;
}

.contact {
  padding: 5rem 0;
  background: #ffffff;
}

.contact-card {
  background: #f8fafc;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid rgba(79, 70, 229, 0.12);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.12);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.contact-channels {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.6rem;
  font-weight: 600;
}

.contact-channels a {
  color: #4338ca;
}

.contact-channels a:hover {
  color: #312e81;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 600;
  color: #1f2937;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: #ffffff;
  font: inherit;
  color: #1f2937;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(124, 58, 237, 0.4);
  outline-offset: 2px;
}

.privacy-note {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.4;
}

.site-footer {
  background: #111827;
  color: rgba(255, 255, 255, 0.75);
  padding: 2rem 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  text-align: center;
}

.footer-nav {
  display: flex;
  gap: 1.4rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.footer-nav a:hover {
  color: #ffffff;
}

@media (max-width: 780px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 2.3rem;
  }

  .hero-visual {
    width: min(360px, 100%);
  }

  .hero-highlight {
    width: 100%;
  }

  .automation-content {
    gap: 2rem;
  }

  .automation-flow {
    padding: 1.8rem;
  }

  .ai-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 2.2rem;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 5rem;
  }

  .automation-text h2,
  .ai-intro h2,
  .kpi h2 {
    font-size: 1.9rem;
  }

  .services h2,
  .mysip h2,
  .process h2 {
    font-size: 1.9rem;
  }
}
