:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-soft: #eef4ff;
  --text: #0b1220;
  --muted: #5d6a7c;
  --line: #dbe4f2;
  --brand: #0867d8;
  --brand-dark: #07306a;
  --navy: #06142b;
  --accent: #16a3ff;
  --yellow: #ffe35a;
  --yellow-strong: #ffcf24;
  --green: #16a34a;
  --shadow: 0 24px 70px rgba(6, 20, 43, 0.12);
  --soft-shadow: 0 18px 54px rgba(6, 20, 43, 0.08);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 227, 90, 0.34), transparent 24rem),
    radial-gradient(circle at 0% 10%, rgba(8, 103, 216, 0.13), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 42%, #eef4ff 100%);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(219, 228, 242, 0.88);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--navy);
}

.brand-logo { width: 92px; height: auto; object-fit: contain; }
.brand-name { letter-spacing: -0.03em; }

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 750;
  color: #253047;
}
.menu a:hover { color: var(--brand); }

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: var(--navy) !important;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  box-shadow: 0 14px 32px rgba(255, 207, 36, 0.30);
}

.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  color: var(--navy);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(2.65rem, 5.3vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.067em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.9vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.052em;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.hero { padding-top: 86px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: 54px;
  align-items: center;
}
.hero-subtitle {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  box-shadow: 0 18px 36px rgba(255, 207, 36, 0.32);
}
.button-secondary {
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
}
.button-secondary:hover { border-color: rgba(8, 103, 216, 0.42); }
.button.large { width: 100%; min-height: 54px; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span, .about-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  color: #334155;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-showcase {
  display: grid;
  gap: 16px;
}
.certified-badge {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--soft-shadow);
}
.certified-badge > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  color: var(--navy);
  font-weight: 1000;
  font-size: 1.6rem;
}
.certified-badge strong { display: block; font-size: 1.05rem; }
.certified-badge small { color: rgba(255,255,255,0.72); font-weight: 600; }

.dashboard-card {
  padding: 26px;
  border: 1px solid rgba(219, 228, 242, 0.95);
  border-radius: 32px;
  background:
    radial-gradient(circle at 84% 6%, rgba(8, 103, 216, 0.16), transparent 14rem),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(238,244,255,0.92));
  box-shadow: var(--shadow);
}
.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.dashboard-top img { width: 116px; }
.dashboard-top span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(8, 103, 216, 0.10);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px 0;
}
.metric-grid div {
  padding: 18px;
  border: 1px solid rgba(219, 228, 242, 0.82);
  border-radius: 20px;
  background: rgba(255,255,255,0.82);
}
.metric-grid small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-weight: 800;
}
.metric-grid strong {
  color: var(--navy);
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}
.growth-strip {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 76px;
  margin: 4px 0 18px;
  padding: 16px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}
.growth-strip span {
  flex: 1;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}
.growth-strip span:nth-child(1) { height: 30%; }
.growth-strip span:nth-child(2) { height: 46%; }
.growth-strip span:nth-child(3) { height: 42%; }
.growth-strip span:nth-child(4) { height: 66%; }
.growth-strip span:nth-child(5) { height: 86%; background: linear-gradient(180deg, var(--yellow), var(--yellow-strong)); }
.dashboard-card p { margin-bottom: 0; color: var(--muted); }

.certified-section {
  padding-top: 56px;
  padding-bottom: 76px;
}
.certified-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #fff;
  box-shadow: var(--soft-shadow);
}
.certified-seal {
  display: grid;
  place-items: center;
  min-height: 220px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 227, 90, 0.7), transparent 7rem),
    linear-gradient(135deg, #fff7bb, #ffdc35);
  color: var(--navy);
}
.certified-seal span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  font-weight: 1000;
  font-size: 1.55rem;
}
.certified-seal strong { display: block; margin-top: 12px; font-size: 1.15rem; letter-spacing: -0.03em; }
.certified-seal small { color: #4b5563; font-weight: 800; }
.certified-copy p:not(.eyebrow) { color: var(--muted); font-size: 1.07rem; }
.mini-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.mini-steps div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(246,248,252,0.92);
}
.mini-steps strong { display: block; margin-bottom: 8px; color: var(--brand); }
.mini-steps span { color: #334155; font-weight: 650; }

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}
.section-heading.centered {
  max-width: 900px;
  margin: 0 auto 38px;
  text-align: center;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.service-card, .solution-card, .seller-scope-card, .faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: var(--soft-shadow);
}
.service-card { padding: 28px; }
.service-card.featured {
  border-color: rgba(8, 103, 216, 0.34);
  background: linear-gradient(180deg, #ffffff, #edf6ff);
}
.seller-card {
  border-color: rgba(255, 207, 36, 0.58);
  background: linear-gradient(180deg, #ffffff, #fffbea);
}
.service-card-visual {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 22px;
  border: 1px solid rgba(219, 228, 242, 0.86);
  box-shadow: 0 18px 42px rgba(6, 20, 43, 0.10);
  background: #fff;
}
.service-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(8, 103, 216, 0.10);
  font-size: 0.78rem;
  font-weight: 900;
}
.seller-card .service-label {
  color: #5f4300;
  background: rgba(255, 207, 36, 0.28);
}
.service-card p { color: var(--muted); }
.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: #253047;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.37em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 8px 18px rgba(8, 103, 216, 0.22);
}
.seller-card .check-list li::before { background: linear-gradient(135deg, var(--yellow), var(--yellow-strong)); }
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.seller-card .check-list li::after { border-color: var(--navy); }
.text-link {
  color: var(--brand);
  font-weight: 900;
}
.text-link:hover { color: var(--brand-dark); }

.seller-section {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 227, 90, 0.28), transparent 24rem),
    var(--navy);
  color: #fff;
}
.seller-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: start;
}
.seller-copy h2, .seller-section h3 { color: #fff; }
.seller-copy p { color: rgba(255,255,255,0.76); font-size: 1.06rem; }
.seller-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.84);
}
.seller-note strong { color: var(--yellow); }
.seller-scope-card {
  padding: 28px;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  box-shadow: none;
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.scope-grid div {
  padding: 17px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}
.scope-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-weight: 900;
}
.scope-grid p {
  margin: 0;
  color: rgba(255,255,255,0.74);
  font-size: 0.94rem;
}

.solutions-section { background: rgba(255,255,255,0.52); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.solution-card { padding: 24px; }
.solution-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--yellow), var(--yellow-strong));
  font-weight: 1000;
}
.solution-card p { color: var(--muted); margin-bottom: 0; }

.about-section {
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(238,244,255,0.58));
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
}
.about-image-card {
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.about-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.about-copy p { color: var(--muted); font-size: 1.06rem; }
blockquote {
  margin: 26px 0;
  padding: 22px 24px;
  border-left: 5px solid var(--brand);
  border-radius: 0 20px 20px 0;
  background: rgba(255,255,255,0.82);
  color: var(--navy);
  font-size: 1.14rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.faq-section { background: #fff; }
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}
.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.cta-section { padding-top: 72px; }
.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 32px;
  align-items: start;
  padding: 38px;
  border-radius: 34px;
  background:
    radial-gradient(circle at right, rgba(255, 227, 90, 0.24), transparent 22rem),
    linear-gradient(135deg, var(--navy), #0a2f68);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-card h2 { color: #fff; }
.cta-card p { color: rgba(255,255,255,0.78); }
.cta-card .eyebrow { color: var(--yellow); }
.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 22px;
  font-weight: 900;
}
.direct-contact a { color: #fff; }
.direct-contact a:hover { color: var(--yellow); }

.lead-form {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 26px;
  background: rgba(255,255,255,0.10);
}
.lead-form label {
  display: grid;
  gap: 7px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 800;
}
.lead-form input, .lead-form textarea, .lead-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 15px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.94);
  color: var(--navy);
  font: inherit;
  outline: none;
}
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 227, 90, 0.18);
}

.footer {
  padding: 30px 0;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.footer a { color: var(--brand); font-weight: 900; }

@media (max-width: 980px) {
  .hero-grid,
  .certified-grid,
  .seller-grid,
  .about-grid,
  .faq-grid,
  .cta-card {
    grid-template-columns: 1fr;
  }
  .service-grid,
  .solution-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mini-steps { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 66px 0; }
  .hero { padding-top: 54px; }
  .brand-logo { width: 76px; }
  .brand-name { display: none; }
  .menu-button { display: inline-flex; }
  .menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow);
  }
  .menu.is-open { display: flex; }
  .menu a { padding: 12px 14px; border-radius: 16px; }
  .nav-cta { text-align: center; }
  h1 { font-size: clamp(2.35rem, 12.8vw, 3.9rem); }
  h2 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .service-grid,
  .solution-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }
  .certified-grid, .cta-card, .service-card { padding: 22px; border-radius: 26px; }
  .metric-grid { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}
