    :root {
      --color-bg: #ffffff;
      --color-header-pill: #f3f6ff;
      --color-primary: #1a73ff;
      --color-primary-dark: #0052cc;
      --color-accent: #23c16b;
      --color-dark: #050816;
      --color-dark-soft: #0b1220;
      --color-text: #050816;
      --color-text-muted: #6b7280;
      --color-border: #e5e7eb;
      --color-card-bg: #f5f7fb;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-pill: 999px;
      --shadow-soft: 0 18px 50px rgba(15, 23, 42, 0.16);
      --shadow-subtle: 0 10px 30px rgba(15, 23, 42, 0.08);
      --container-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--color-bg);
      color: var(--color-text);
      line-height: 1.5;
    }

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

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

    button {
      font-family: inherit;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 18px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-primary {
      background: var(--color-primary);
      color: #ffffff;
      box-shadow: var(--shadow-subtle);
    }

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

    .btn-light {
      background: #ffffff;
      color: var(--color-text);
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

    /* HEADER */

    header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
    }

    .nav-shell {
      margin: 10px 0;
      background: var(--color-header-pill);
      border-radius: var(--radius-pill);
      padding: 8px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
      font-size: 18px;
    }

    .logo-image {
      width: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-subtle);
    }

    .nav-desktop {
      display: none;
      align-items: center;
      gap: 24px;
      font-size: 14px;
      color: var(--color-text-muted);
    }

    .nav-desktop a {
      position: relative;
      padding-bottom: 2px;
    }

    .nav-desktop a:hover::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 2px;
      background: var(--color-primary);
    }

    .header-actions {
      display: none;
      align-items: center;
      gap: 10px;
    }

    .nav-toggle {
      background: var(--color-primary);
      border-radius: 999px;
      width: 40px;
      height: 40px;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      cursor: pointer;
    }

    .nav-toggle span {
      width: 18px;
      height: 2px;
      background: #fff;
      position: relative;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
      width: 18px;
      height: 2px;
      background: #fff;
    }

    .nav-toggle span::before {
      top: -6px;
    }

    .nav-toggle span::after {
      top: 6px;
    }

    .nav-mobile {
      display: none;
      flex-direction: column;
      gap: 8px;
      padding: 4px 2px 10px;
      font-size: 14px;
    }

    .nav-mobile a {
      padding: 6px 0;
      color: var(--color-text-muted);
    }

    .nav-mobile .btn {
      margin-top: 6px;
      align-self: flex-start;
    }

    .nav-mobile.open {
      display: flex;
    }

    /* HERO */

    .hero {
      padding: 28px 0 56px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-areas:
        "text"
        "form"
        "phone";
      gap: 24px;
      align-items: start;
    }

    .hero-text {
      grid-area: text;
    }

    .hero-text h1 {
      margin: 0 0 12px;
      font-size: 32px;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .hero-text .highlight {
      color: var(--color-primary);
    }

    .hero-text .subtext {
      margin: 0 0 20px;
      color: var(--color-text-muted);
      font-size: 15px;
    }



    /* --------------------------------------------------
    FIXED BADGE STYLING – MATCHES REFERENCE DESIGN
    -------------------------------------------------- */

    .hero-badges {
    display: flex;
    gap: 16px;
    margin-top: 18px;
    flex-wrap: wrap;
    max-width: 500px;
    }


    .hero-badges .hero-badge-card:first-child {
    flex: 2; /* makes the first badge twice as wide as the second */
    }

    .hero-badge-card:first-child h3 {
    white-space: nowrap;
    }

    /* Main badge */
    .hero-badge-card {
    flex: 1;
    background: #cfe9ff; /* light blue from screenshot 1 */
    border-radius: 28px;
    padding: 24px 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .hero-badge-card h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #071437;  /* dark navy */
    }

    .hero-badge-card .hero-badge-label {
    margin-top: 6px;
    font-size: 10px;
    font-weight: 400;
    color: #0c254a;
    }

    .hero-badge-label-secondary {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #0c254a;
    }

    /* Secondary badge */
    .hero-badge-card.secondary {
    background: #f4f3ef; /* cream color */
    padding: 20px 24px;
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    }

    .hero-badge-card.secondary strong {
    font-size: 17px;
    display: block;
    margin-bottom: 3px;
    color: #071437;
    }

    .hero-badge-card.secondary .hero-badge-label {
    font-size: 14px;
    color: #3b4759;
    }

    /* Badge icon box */
    .hero-badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    }


    .hero-form-card {
      grid-area: form;
      border-radius: var(--radius-lg);
      background: #F5F3EF;
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 20px;
      max-width: 360px;
      margin: 0 auto;
    }

    .hero-form-card h3 {
      margin: 0 0 4px;
      font-size: 18px;
    }

    .hero-form-sub {
      margin: 0 0 14px;
      font-size: 13px;
      color: var(--color-text-muted);
    }

    .hero-form-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    font-size: 13px;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 6px;
    }

    .hero-form-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    }

    .hero-benefit-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    }


    .hero-form-fields {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 10px;
    }

    .hero-form-fields input {
      border-radius: var(--radius-pill);
      border: 1px solid var(--color-border);
      padding: 10px 14px;
      font-size: 14px;
      outline: none;
    }

    .hero-form-fields input:focus {
      border-color: var(--color-primary);
      box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
    }

    .hero-form-note {
      font-size: 11px;
      color: var(--color-text-muted);
      margin-top: 6px;
    }

    .hero-media {
      grid-area: phone;
      display: flex;
      justify-content: center;
    }

    .hero-phone-card {
      background: linear-gradient(135deg, #1565ff, #0040c1);
      border-radius: var(--radius-xl);
      padding: 22px 20px;
      color: #ffffff;
      position: relative;
      box-shadow: var(--shadow-soft);
      max-width: 360px;
      width: 100%;
    }

    .hero-phone-top-text {
      font-size: 14px;
      margin-bottom: 16px;
    }

    .hero-phone {
      margin: 0 auto 14px;
      width: 210px;
      height: 360px;
      border-radius: 34px;
      background: #ffffff;
      position: relative;
      overflow: hidden;
      box-shadow: 0 22px 60px rgba(15, 23, 42, 0.75);
    }

    /* phone placeholder - swap with your own image */
    .hero-phone-inner {
      position: absolute;
      inset: 14px;
      border-radius: 26px;
      background: #f3f4f6;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 11px;
    }

    .hero-phone-inner .top-bar {
      height: 16px;
      width: 60%;
      border-radius: 999px;
      background: #e5e7eb;
    }

    .hero-phone-inner .headline {
      height: 22px;
      width: 72%;
      border-radius: 8px;
      background: #d1d5db;
    }

    .hero-phone-inner .field {
      height: 26px;
      border-radius: 999px;
      background: #ffffff;
    }

    .hero-phone-inner .fields {
      margin-top: auto;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .hero-lead-bubble {
      position: absolute;
      left: 50%;
      bottom: 12px;
      transform: translateX(-50%);
      background: #ffffff;
      border-radius: 999px;
      padding: 6px 10px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 10px;
      color: var(--color-text);
      box-shadow: 0 10px 30px rgba(15, 23, 42, 0.55);
    }

    .hero-lead-bubble .icon {
      width: 14px;
      height: 14px;
      border-radius: 4px;
      background: var(--color-primary);
    }

    .hero-phone-tagline {
      font-size: 12px;
      opacity: 0.9;
    }

    /* GENERIC SECTION STYLES */

    .section {
      padding: 56px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 30px;
    }

    .section-title h2 {
      margin: 0 0 8px;
      font-size: 26px;
      letter-spacing: -0.03em;
    }

    .section-title p {
      margin: 0;
      font-size: 15px;
      color: var(--color-text-muted);
    }

    /* HOW IT WORKS */

    .steps-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .step-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 16px 6px;
    }

    .step-number {
      min-width: 32px;
      height: 32px;
      border-radius: var(--radius-pill);
      background: #e0f1ff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      color: var(--color-primary);
      font-size: 14px;
    }

    .step-card h3 {
      margin: 0 0 4px;
      font-size: 16px;
    }

    .step-card p {
      margin: 0;
      font-size: 14px;
      color: var(--color-text-muted);
    }

    /* FEATURE CARDS */

    .feature-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .feature-card {
      border-radius: var(--radius-lg);
      padding: 22px 20px 24px;
      background: var(--color-card-bg);
      box-shadow: var(--shadow-subtle);
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .feature-card.dark {
      background: var(--color-dark);
      color: #ffffff;
    }

    .feature-card.dark p {
      color: #e5e7eb;
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 16px;
      background: #ffffff;
    }

    .feature-card h3 {
      margin: 0;
      font-size: 18px;
    }

    .feature-card p {
      margin: 0;
      font-size: 14px;
      color: var(--color-text-muted);
    }

    .feature-card .btn {
      margin-top: 8px;
      align-self: flex-start;
    }

    .feature-phone-placeholder {
      margin-top: 14px;
      height: 180px;
      border-radius: 22px;
      background: #ffffff;
    }

    /* TESTIMONIAL / STORYCARD */

    .story-section {
      padding: 56px 0 40px;
    }

    .story-card {
      border-radius: var(--radius-lg);
      background: var(--color-dark);
      color: #ffffff;
      padding: 22px 22px 24px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
      box-shadow: var(--shadow-soft);
    }

    .story-image {
      border-radius: var(--radius-md);
      background: #1f2937;
      height: 190px;
      overflow: hidden;
    }

    .story-content h3 {
      margin: 0 0 6px;
      font-size: 18px;
    }

    .story-content p {
      margin: 0 0 8px;
      font-size: 14px;
      color: #e5e7eb;
    }

    .story-stars {
      width: 80px;
      height: 16px;
      border-radius: 999px;
      background: #facc15;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .story-name {
      font-size: 11px;
      color: #cbd5f5;
      margin-bottom: 20px;
      margin-top: 20px;
    }

    .story-controls {
      margin-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .dots {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #4b5563;
    }

    .dot.active {
      width: 16px;
      background: #ffffff;
    }

    .slider-arrows {
      display: flex;
      gap: 8px;
    }

    .slider-arrow {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      cursor: pointer;
      background: #111827;
    }

    /* BADGES / TRUST */

    .trust-strip {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      font-size: 13px;
      color: var(--color-text-muted);
    }

    .trust-badge {
      padding: 10px 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
      background: #ffffff;
    }

    /* FAQ */

    .faq-section {
      padding: 56px 0;
    }

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

    .faq-item {
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      background: #ffffff;
      overflow: hidden;
    }

    .faq-item.primary {
      background: var(--color-primary);
      color: #ffffff;
      border-color: transparent;
    }

    .faq-header {
      padding: 14px 16px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .faq-header span {
      font-size: 15px;
      font-weight: 500;
    }

    .faq-toggle {
      width: 22px;
      height: 22px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      background: #ffffff;
      color: #111827;
    }

    .faq-item.primary .faq-toggle {
      background: rgba(15, 23, 42, 0.12);
      color: #ffffff;
      border-color: transparent;
    }

    .faq-body {
      padding: 0 16px 12px;
      font-size: 14px;
      color: var(--color-text-muted);
      display: none;
    }

    .faq-item.primary .faq-body {
      color: #e0f2ff;
    }

    .faq-item.open .faq-body {
      display: block;
    }

    /* PRICING */

    .pricing-wrapper {
      padding: 56px 0;
    }

    .pricing-inner {
      border-radius: var(--radius-lg);
      background: var(--color-dark);
      color: #ffffff;
      padding: 30px 22px 32px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
      box-shadow: var(--shadow-soft);
    }

    .pricing-left h2 {
      margin: 0 0 10px;
      font-size: 24px;
    }

    .pricing-left p {
      margin: 0 0 16px;
      font-size: 14px;
      color: #d1d5db;
    }

    .pricing-left-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pricing-tag {
      padding: 8px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 13px;
    }

    .pricing-card {
      border-radius: var(--radius-lg);
      background: var(--color-dark-soft);
      padding: 20px 18px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .pricing-card-header {
      padding: 14px 14px 16px;
      border-radius: var(--radius-lg);
      background: #0f172a;
    }

    .pricing-card-header h3 {
      margin: 0 0 4px;
      font-size: 18px;
    }

    .pricing-price {
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .pricing-price span {
      font-size: 14px;
      font-weight: 400;
      color: #9ca3af;
    }

    .pricing-note {
      font-size: 12px;
      color: #9ca3af;
      margin: 2px 0 0;
    }

    .pricing-features {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 14px;
      color: #d1d5db;
    }

    .pricing-features li::before {
      content: "✔";
      margin-right: 8px;
      color: var(--color-accent);
    }

    /* FINAL CTA */

    .final-cta {
      margin-top: 40px;
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      background: linear-gradient(135deg, #0c2bff, #3b82f6);
      color: #ffffff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .final-cta h2 {
      margin: 0 0 8px;
      font-size: 24px;
    }

    .final-cta p {
      margin: 0 0 16px;
      font-size: 14px;
      color: #e0f2ff;
    }

    .final-cta .btn-primary {
      background: #ffffff;
      color: #111827;
    }

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

    .final-cta-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.5;
      background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.12) 2px,
        transparent 2px,
        transparent 10px
      );
      pointer-events: none;
    }

    .final-cta-content {
      position: relative;
      z-index: 1;
    }

    /* FOOTER */

    footer {
      margin-top: 56px;
      background: #0052ff;
      color: #e5edff;
      padding: 24px 0 28px;
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .footer-nav {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 18px;
    }

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

    /* RESPONSIVE */

    @media (min-width: 768px) {
      .hero-grid {
        gap: 32px;
      }

      .hero-text h1 {
        font-size: 40px;
      }

      .steps-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .story-card {
        grid-template-columns: 1.2fr 1.4fr;
        padding: 26px 26px 28px;
      }

      .story-image {
        height: 220px;
      }

      .pricing-inner {
        grid-template-columns: 1.1fr 1.1fr;
        padding: 30px 26px 32px;
      }

      .final-cta {
        text-align: left;
        padding: 32px 32px;
      }

      .final-cta-content {
        max-width: 520px;
      }

      .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
      }
    }

    @media (min-width: 960px) {
      .nav-shell {
        margin: 12px 0 18px;
        padding: 8px 20px;
      }

      .nav-desktop {
        display: flex;
      }

      .header-actions {
        display: flex;
      }

      .nav-toggle,
      .nav-mobile {
        display: none;
      }

      .hero {
        padding: 18px 0 72px;
      }

      .hero-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(0, 0.9fr);
        grid-template-areas: "text phone form";
        align-items: center;
        gap: 40px;
      }

      .hero-text h1 {
        font-size: 52px;
      }

      .hero-badges {
        display: flex;
        flex-direction: row;
      }

      .hero-badge-card {
        flex: 1;
      }

      .hero-form-card {
        margin: 0;
      }

      .section {
        padding: 72px 0;
      }

      .story-section {
        padding: 72px 0 46px;
      }

      .pricing-wrapper {
        padding: 72px 0;
      }
    }

    .spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .btn.is-loading {
  opacity: 0.7;
  cursor: default;
}

@keyframes formBreathe {
  0%   { box-shadow: 0 0 0 rgba(37, 99, 235, 0); }
  50%  { box-shadow: 0 0 18px rgba(37, 99, 235, 0.25); }
  100% { box-shadow: 0 0 0 rgba(37, 99, 235, 0); }
}

.hero-form-fields.pulse {
  animation: formBreathe 1.8s ease-in-out;
  border-radius: 16px; /* ensures the glow looks smooth */
}

.password-wrapper {
  position: relative;
  width: 100%;
}

.toggle-password-icon {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  cursor: pointer;

  /* Default "eye" icon */
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 12s4-7 11-7 11 7 11 7-4 7-11 7S1 12 1 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.toggle-password-icon:hover {
  opacity: 1;
}

.toggle-password-icon.visible {
  /* Eye with slash */
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.94 17.94C16.23 19.24 14.21 20 12 20 5 20 1 12 1 12a20.3 20.3 0 0 1 5.06-6.06M9.9 4.24A10.7 10.7 0 0 1 12 4c7 0 11 8 11 8a20.3 20.3 0 0 1-2.16 3.19M3 3l18 18'/%3E%3C/svg%3E");
}

