:root {
      --blue: #1877f2;
      --blue-dark: #1258b3;
      --navy: #0b1420;
      --text-main: #111827;
      --text-muted: #6b7280;
      --bg-light: #f5f7fb;
      --border-soft: #e5e7eb;
      --radius-card: 14px;
      --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
      --max-width: 1300px;
    }

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

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      background: #ffffff;
      color: var(--text-main);
      line-height: 1.5;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    p {
        font-size: 16px;
    }

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

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* NAV */
    .top-nav {
      border-bottom: 1px solid #f3f4f6;
      background: #ffffff;
    }

    .top-nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 70px;
    }

    .logo {
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.06em;
      color: var(--blue-dark);
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      gap: 28px;
      color: #4b5563;
    }

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

    /* HERO */
    .hero {
      background: #ffffff;
      padding: 60px 0 70px;
    }

    .hero-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
      flex-wrap: wrap;
    }

    .hero-copy {
      flex: 1 1 320px;
      min-width: 280px;
    }

    .hero-kicker {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .hero-title {
        font-size: 50px;
      line-height: 1.1;
      font-weight: 800;
    }

    .hero-title span.highlight {
      color: var(--blue);
    }

    .hero-subtext {
      margin: 20px 0 26px;
      font-size: 18px;
      color: var(--text-muted);
      max-width: 420px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 24px;
      border-radius: 999px;
      font-size: 20px;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: background 0.15s ease, color 0.15s ease,
        box-shadow 0.15s ease, border-color 0.15s ease;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--blue);
      color: #ffffff;
      box-shadow: 0 12px 25px rgba(24, 119, 242, 0.35);
    }

    .btn-primary:hover {
      background: var(--blue-dark);
    }

    .btn-outline {
      background: #ffffff;
      color: var(--blue);
      border-color: var(--blue);
    }

    .btn-outline:hover {
      background: #eff6ff;
    }

    .btn-arrow {
      margin-left: 8px;
      font-size: 16px;
    }

    .hero-media {
      flex: 1 1 320px;
      min-width: 280px;
      display: flex;
      justify-content: center;
    }

    .hero-card {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .hero-card img {
      height: 100%;
      object-fit: cover;
    }

    .hero-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      background: #ffffff;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 11px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
    }

    .hero-badge-dot {
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: #22c55e;
    }

    /* SECTION GENERIC */
    section {
      padding: 60px 0;
    }

    .section-heading {
      text-align: center;
      margin-bottom: 24px;
    }

    .section-heading h2 {
      margin-bottom: 6px;
    }

    .section-heading p {
      font-size: 16px;
      color: var(--text-muted);
    }

    .bg-light {
      background: var(--bg-light);
    }

    /* CARDS */
    .card-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }

    .card {
      background: #ffffff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-soft);
      padding: 24px 22px;
      flex: 1 1 230px;
      max-width: 320px;
      text-align: center;
      font-size: 14px;
    }

    .icon-circle {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: var(--blue);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto 16px;
    }

    .card h3 {
      font-size: 18px;
      margin-bottom: 8px;
      font-weight: 700;
    }

    .card p {
      color: var(--text-muted);
    }

    .card .card-footer-link {
      display: inline-block;
      margin-top: 14px;
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .card .card-footer-link:hover {
      color: var(--blue);
    }

    /* LEGAL */
    .legal-card {
      background: #ffffff;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-soft);
      padding: 50px;
      text-align: center;
      max-width: 1000px;
      margin: 0 auto;
    }

    .legal-icon {
      width: 40px;
      height: 40px;
      border-radius: 999px;
      background: #e0fbea;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #16a34a;
      margin: 0 auto 12px;
      font-size: 20px;
    }

    .legal-card h2 {
      margin-bottom: 8px;
    }

    .legal-card p {
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .legal-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 14px;
      border-radius: 999px;
      background: #dcfce7;
      font-size: 15px;
      color: #166534;
    }

    .legal-pill span.dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #16a34a;
    }

    /* FAQ */
    .faq-list {
      max-width: 740px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .faq-item {
      background: #ffffff;
      border-radius: 8px;
      border: 1px solid var(--border-soft);
      padding: 16px 18px;
    }

    .faq-item h3 {
    font-size: 20px;
      margin-bottom: 4px;
      line-height: 1.4;
      font-weight: 700;
    }

    .faq-item p {
      color: var(--text-muted);
    }

    /* CTA */
    .cta {
      background: var(--blue);
      color: #ffffff;
      text-align: center;
      padding: 48px 0 52px;
    }

    .cta h2 {
      margin-bottom: 6px;
    }

    .cta p {
      font-size: 13px;
      color: #e5e7eb;
      margin-bottom: 18px;
    }

    .cta .btn-primary {
      box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
      background: #ffffff;
      color: var(--blue);
      font-size: 20px;
    }

    .cta .btn-primary:hover {
      background: #e5e7eb;
    }

    /* FOOTER */
    footer {
      background: var(--navy);
      color: #e5e7eb;
      font-size: 12px;
      padding: 28px 0 18px;
      font-size: 15px;
    }

    .footer-top {
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      justify-content: space-between;
      margin-bottom: 20px;
      border-bottom: 1px solid #111827;
      padding-bottom: 16px;
    }

    .footer-col-title {
      font-weight: 600;
      font-size: 12px;
      margin-bottom: 6px;
      font-size: 15px;
    }

    .footer-col small {
      display: block;
      margin-bottom: 4px;
      color: #9ca3af;
      font-size: 15px;
    }

    .footer-links {
      display: flex;
      gap: 10px;
      margin-top: 4px;
    }

    .footer-links a {
      color: #9ca3af;
      font-size: 15px;
    }

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

    .footer-list a {
      display: block;
      color: #9ca3af;
      margin-bottom: 3px;
    }

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

    .footer-bottom {
      text-align: center;
      color: #6b7280;
      font-size: 11px;
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .top-nav-inner {
        flex-direction: row;
        gap: 12px;
      }

      .nav-links {
        gap: 16px;
        font-size: 12px;
      }

      .hero {
        padding-top: 40px;
      }

      .hero-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero-title {
        font-size: 30px;
      }

      .hero-actions {
        width: 100%;
      }

      .hero-actions .btn {
        flex: 1 1 auto;
        justify-content: center;
      }

      .footer-top {
        flex-direction: column;
        gap: 16px;
      }
    }

    @media (max-width: 480px) {
      .hero-title {
        font-size: 26px;
      }

      section {
        padding: 44px 0;
      }
    }