:root {
  --yellow: #FD0;
  --red: #E30518;
  --black: #121317;
  --text: #121317;
  --muted: #5E6673;
  --line: rgba(18, 19, 23, 0.1);
  --line-strong: rgba(18, 19, 23, 0.16);
  --bg: #F5F7F9;
  --white: #FFFFFF;
  --shadow-lg: 0 18px 52px rgba(18, 19, 23, 0.08);
  --shadow-md: 0 10px 28px rgba(18, 19, 23, 0.05);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 221, 0, 0.10), transparent 24%),
    linear-gradient(180deg, #FCFCFD 0%, #F3F5F8 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 252, 253, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}


     .stats {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

          .stat {
      padding: 22px 20px;
      min-height: 160px;
      border-radius: 26px;
      background: rgba(255,255,255,0.92);
      border: 1px solid rgba(18,19,23,0.08);
      box-shadow: var(--shadow-md);
    }

       .stat.highlight {
      background: linear-gradient(180deg, #FFFCEB 0%, #FFF4A8 100%);
      border-color: rgba(255,221,0,0.5);
    }

      .stat strong {
      display: block;
      font-size: 40px;
      line-height: 1;
      letter-spacing: -0.06em;
      color: var(--red);
    }

    .stat span {
      display: block;
      margin-top: 12px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--muted);
    }


.brand-logo {
  width: 150px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-copy strong {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.nav a:hover { color: var(--black); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  background: var(--red);
  color: white !important;
  font-weight: 700;
}

.hero {
  padding: 32px 0 24px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,221,0,0.18), transparent 20%),
    linear-gradient(145deg, #FFFFFF 0%, #F4F6F8 100%);
  border: 1px solid rgba(18,19,23,0.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 34px;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(227, 5, 24, 0.05);
  filter: blur(4px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.98fr 1.02fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.92);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #66707E;
}

.pill::before {
  content: "";
  width: 34px;
  height: 10px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow) 0 50%, var(--red) 50% 100%);
  flex: 0 0 auto;
}

h1 {
  margin: 22px 0 0;
  max-width: 760px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-copy p {
  margin: 24px 0 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.82;
  color: var(--muted);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-point {
  padding: 16px 16px 14px;
  border: 1px solid rgba(18,19,23,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.86);
}

.hero-point strong {
  display: block;
  font-size: 14px;
  line-height: 1.4;
}

.hero-point span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: white;
  border: 1px solid var(--red);
  box-shadow: 0 12px 24px rgba(18,19,23,0.14);
}

.btn-secondary {
  background: rgba(255,255,255,0.92);
  color: var(--black);
  border: 1px solid var(--line-strong);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(18,19,23,0.08);
  box-shadow: var(--shadow-md);
  background: #ddd;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: 330px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  color: var(--muted);
  background: rgba(255,255,255,0.90);
  box-shadow: 0 16px 30px rgba(18,19,23,0.22);
}

.hero-badge .eyebrow { color: var(--muted); }
.hero-badge p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.56), rgba(245,247,249,0.82));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
text-align: center;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.lead {
  margin: 0;
  
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(18,19,23,0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.service-card .copy,
.step-card,
.about-panel,
.about-copy {
  padding: 28px;
}

.service-card .copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 260px;
}

.service-card h3,
.step-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.28;
  letter-spacing: -0.03em;
  width: 100%;
  max-width: none;
  min-height: 62px;
}

.service-card p,
.step-card p,
.about-copy p,
.about-panel p {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.82;
  color: var(--muted);
}

.service-media {
  margin-top: auto;
  aspect-ratio: 16 / 10;
  background: #ddd;
  overflow: hidden;
  border-top: 1px solid rgba(18,19,23,0.08);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.b2b-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
  align-items: stretch;
}

.b2b-panel {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, #121317 0%, #1B2027 100%);
  color: white;
  box-shadow: var(--shadow-lg);
}

.b2b-panel--light {
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f9 100%);
  color: #121317;
  border: 1px solid rgba(18,19,23,0.08);
  box-shadow: 0 12px 30px rgba(18,19,23,0.06);
}

.b2b-panel .eyebrow { color: var(--muted); }

.b2b-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.icon-row {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.icon-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(18,19,23,0.08);
  box-shadow: 0 6px 16px rgba(18,19,23,0.04);
}


.icon-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.icon-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.icon-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-card {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(18,19,23,0.08);
  box-shadow: var(--shadow-md);
  position: relative;
  min-height: 146px;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  /* box-shadow: 24px 0 0 var(--red); */
}

.benefit-card p {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.step-number {
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #7A8391;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 20px;
}

.about-panel {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5F7F9 100%);
}

.about-logo {
  margin-top: 22px;
  width: 220px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.about-side {
  display: grid;
  gap: 18px;
}

.about-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.about-photo {
  aspect-ratio: 16 / 10;
  background: #ddd;
  overflow: hidden;
  border-bottom: 1px solid rgba(18,19,23,0.08);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #121317 0%, #1B2027 100%);
  box-shadow: var(--shadow-lg);
  color: white;
}

.cta-copy {
  padding: 40px;
}

.cta-copy .eyebrow { color: var(--muted); }

.cta-copy p {
  margin: 18px 0 0;
  max-width: 660px;
  color: rgba(255,255,255,0.74);
  font-size: 17px;
  line-height: 1.84;
}

.cta-visual {
  position: relative;
  min-height: 100%;
  background: #ddd;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-chip {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 250px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.95);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(18,19,23,0.18);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.footer {
  background: #0F1115;
  color: white;
  padding: 56px 0 24px;
  margin-top: 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  width: 210px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(1.02);
}

.footer-desc {
  margin-top: 14px;
  max-width: 340px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.8;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-kicker {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
  margin-bottom: 4px;
}

.footer-contact a,
.footer-links a {
  color: white;
}

.footer-contact strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
}

.footer-contact span {
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links a:hover,
.socials a:hover {
  color: var(--yellow);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,221,0,0.38);
  background: rgba(255,221,0,0.08);
}

.socials img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  color: rgba(255,255,255,0.52);
  font-size: 13px;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal a {
  color: rgba(255,255,255,0.58);
}

.footer-legal a:hover { color: white; }

@media (max-width: 1120px) {
  .hero-grid,
  
  .section-head,
  .b2b-layout,
  .about-grid,
  .cta-box,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .benefits-grid,
  .hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }
  .nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav {
    display: none;
  }

  .brand {
    gap: 12px;
  }

  .brand-logo {
    width: 150px;
  }

  .brand-copy strong {
    white-space: normal;
  }

  .topbar-inner {
    min-height: 74px;
  }

  .hero-shell {
    padding: 20px;
  }

  .hero-points,
  .cards-3,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 400px;
  }

  .section {
    padding: 72px 0;
  }

  .cta-copy {
    padding: 28px;
  }

  .footer {
    padding-top: 40px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


body.modal-open { overflow: hidden; }

.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 120; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15,17,21,0.58);
  backdrop-filter: blur(4px);
}
.modal-dialog {
  position: relative;
  width: min(720px, calc(100% - 24px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(18,19,23,0.08);
  box-shadow: 0 24px 70px rgba(18,19,23,0.24);
}
.modal-kicker {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #727A88;
}
.modal-dialog h3 {
  margin: 12px 0 0;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.modal-text {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: #F3F5F8;
  color: #121317;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.contact-form { margin-top: 22px; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field span {
  font-size: 14px;
  font-weight: 600;
  color: #121317;
}
.field input,
.field textarea {
  width: 100%;
  appearance: none;
  border: 1px solid rgba(18,19,23,0.12);
  border-radius: 12px;
  padding: 14px 15px;
  background: #fff;
  color: #121317;
  font: inherit;
  line-height: 1.5;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(227,5,24,0.5);
  box-shadow: 0 0 0 4px rgba(227,5,24,0.08);
}
.field-full { grid-column: 1 / -1; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.consent span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-weight: 400;
}
.form-submit { margin-top: 18px; }
.hp-wrap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 760px) {
  .modal-dialog {
    padding: 22px;
    border-radius: 18px;
  }

  .modal-dialog h3 {
    font-size: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}


.form-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  border: 1px solid transparent;
}

.form-message.is-error {
  background: rgba(227, 5, 24, 0.06);
  border-color: rgba(227, 5, 24, 0.18);
  color: #a30d1b;
}

.form-message.is-success {
  background: rgba(0, 140, 80, 0.08);
  border-color: rgba(0, 140, 80, 0.18);
  color: #0d6b45;
}


/* Policy popup */

.policy-dialog {
  width: min(860px, calc(100% - 24px));
  padding: 0;
  overflow: hidden;
}

.policy-dialog .modal-close {
  z-index: 2;
}

.policy-dialog .modal-kicker,
.policy-dialog h3 {
  padding-left: 32px;
  padding-right: 72px;
}

.policy-dialog .modal-kicker {
  padding-top: 30px;
}

.policy-dialog h3 {
  margin: 12px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(18, 19, 23, 0.08);
}

.policy-scroll {
  max-height: min(62vh, 620px);
  overflow-y: auto;
  padding: 28px 32px;
  background:
    linear-gradient(#ffffff 30%, rgba(255,255,255,0)),
    linear-gradient(rgba(255,255,255,0), #ffffff 70%) 0 100%,
    linear-gradient(rgba(18,19,23,0.08), rgba(18,19,23,0)),
    linear-gradient(rgba(18,19,23,0), rgba(18,19,23,0.08)) 0 100%;
  background-repeat: no-repeat;
  background-size: 100% 32px, 100% 32px, 100% 14px, 100% 14px;
  background-attachment: local, local, scroll, scroll;
}

.policy-content {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.policy-content h4 {
  margin: 28px 0 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.policy-content h4:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0 0 16px;
}

.policy-content ul,
.policy-content ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px 32px 28px;
  border-top: 1px solid rgba(18, 19, 23, 0.08);
  background: #fff;
}

@media (max-width: 760px) {
  .policy-dialog {
    width: min(100% - 20px, 860px);
  }

  .policy-dialog .modal-kicker,
  .policy-dialog h3 {
    padding-left: 22px;
    padding-right: 62px;
  }

  .policy-dialog .modal-kicker {
    padding-top: 24px;
  }

  .policy-dialog h3 {
    font-size: 28px;
  }

  .policy-scroll {
    max-height: 60vh;
    padding: 22px;
  }

  .policy-actions {
    padding: 18px 22px 22px;
  }

  .policy-actions .btn {
    width: 100%;
  }
}