    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: hsl(150, 20%, 98%);
      --fg: hsl(170, 30%, 12%);
      --card: hsl(0, 0%, 100%);
      --primary: hsl(168, 55%, 32%);
      --primary-fg: hsl(0, 0%, 100%);
      --secondary: hsl(160, 30%, 94%);
      --muted: hsl(150, 15%, 95%);
      --muted-fg: hsl(170, 10%, 45%);
      --accent: hsl(28, 90%, 55%);
      --accent-fg: hsl(0, 0%, 100%);
      --border: hsl(160, 15%, 90%);
      --input: hsl(160, 15%, 88%);
      --mint: hsl(155, 35%, 96%);
      --radius: 0.75rem;
      --shadow-card: 0 2px 16px -2px hsl(170 30% 12% / 0.06);
      --shadow-elevated: 0 8px 40px -8px hsl(168 55% 32% / 0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    img { max-width: 100%; display: block; }

    a { text-decoration: none; color: inherit; }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-color: var(--border);
      box-shadow: 0 1px 16px rgba(0,0,0,0.06);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      /* height: 60px; */
    }
    .nav-logo svg { height: 48px; width: auto; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    .nav-links a {
      font-size: 0.875rem;
      font-weight: 500;
      transition: color 0.2s;
      color: rgba(255,255,255,0.7);
    }
    nav.scrolled .nav-links a.btn-cta,
    .nav-links a.btn-cta{
      color: rgba(255,255,255,1);
    }
    nav.scrolled .nav-links a { color: var(--muted-fg); }
    .nav-links a:hover { color: #fff; }
    nav.scrolled .nav-links a:hover { color: var(--primary); }
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.5rem 1.25rem;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      background: var(--accent);
      color: var(--accent-fg);
      border: none;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.2s;
    }
    .btn-cta:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.75rem 1.5rem;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
      border: none;
    }
    .btn-accent { background: var(--accent); color: var(--accent-fg); }
    .btn-accent:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn-ghost {
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.15);
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.2); }
    .btn-outline {
      background: transparent;
      color: var(--fg);
      border: 1px solid var(--border);
    }
    .btn-outline:hover { background: var(--muted); }
    .btn-primary-solid {
      background: var(--primary);
      color: var(--primary-fg);
    }
    .btn-primary-solid:hover { opacity: 0.9; }
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      color: #fff;
      padding: 0.25rem;
    }
    nav.scrolled .hamburger { color: var(--fg); }
    .mobile-menu {
      display: none;
      background: var(--card);
      border-bottom: 1px solid var(--border);
      padding: 1rem 1.25rem 1.25rem;
    }
    .mobile-menu.open { display: block; }
    .mobile-menu a {
      display: block;
      padding: 0.625rem 0;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--muted-fg);
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .mobile-menu a:last-of-type { border-bottom: none; }
    .mobile-menu a:hover { color: var(--primary); }
    .mobile-menu .btn-cta { margin-top: 0.75rem; width: 100%; justify-content: center; border-radius: 0.75rem; }

    /* ── HERO ── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--fg);
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, hsl(168,60%,18%) 0%, hsl(170,40%,10%) 50%, hsl(28,60%,20%) 100%);
    }
    .hero-pattern {
      position: absolute;
      inset: 0;
      opacity: 0.04;
      background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.8) 1px, transparent 0);
      background-size: 36px 36px;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      /* background: linear-gradient(to right, rgba(15,30,25,0.65) 0%, rgba(15,30,25,0.4) 60%, rgba(15,30,25,0.2) 100%); */
      background: linear-gradient(
        to right,
        rgba(15, 30, 25, 0.9) 0%,
        rgba(15, 30, 25, 0.75) 50%,
        rgba(15, 30, 25, 0.6) 100%
        );
    }
    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding-top: 6rem;
      padding-bottom: 4rem;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 3rem;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.35rem 0.875rem;
      border-radius: 999px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.85);
      border: 1px solid rgba(255,255,255,0.2);
      margin-bottom: 1.25rem;
    }
    .hero-badge .star { color: var(--accent); font-size: 0.75rem; }
    .hero-title {
      font-size: clamp(2.5rem, 5vw, 3.75rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.1;
      letter-spacing: -0.02em;
    }
    .hero-title .gradient-text {
      background: linear-gradient(90deg, hsl(168,65%,55%), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-desc {
      margin-top: 1.25rem;
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      max-width: 28rem;
      line-height: 1.7;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.75rem;
    }
    /* Phone mockup */
    .phone-wrapper {
      display: flex;
      justify-content: flex-end;
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    .phone-frame {
      width: 220px;
      border-radius: 2.4rem;
      background: linear-gradient(to bottom, rgba(255,255,255,0.2), rgba(255,255,255,0.06));
      padding: 3px;
      box-shadow: 0 30px 60px rgba(0,0,0,0.4);
      position: relative;
    }
    .phone-inner {
      border-radius: 2.2rem;
      overflow: hidden;
      background: #0a0a0a;
      position: relative;
    }
    .phone-notch {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 70px;
      height: 18px;
      background: #0a0a0a;
      border-radius: 0 0 1rem 1rem;
      z-index: 5;
    }
    .phone-screen {
      width: 100%;
      height: auto;
      display: block;
      background: linear-gradient(160deg, hsl(168,55%,20%) 0%, hsl(168,40%,15%) 40%, hsl(170,30%,10%) 100%);
      aspect-ratio: 9/19;
      position: relative;
      overflow: hidden;
    }
    .phone-screen-content {
      padding: 2.5rem 0.875rem 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      height: 100%;
    }
    .app-topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.75rem;
    }
    .app-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
    }
    .app-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--accent);
    }
    .app-greeting {
      font-size: 0.6rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.125rem;
    }
    .app-heading {
      font-size: 0.8rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
    }
    .app-search {
      background: rgba(255,255,255,0.1);
      border-radius: 0.5rem;
      padding: 0.4rem 0.625rem;
      font-size: 0.55rem;
      color: rgba(255,255,255,0.4);
      margin-bottom: 0.875rem;
    }
    .app-section-label {
      font-size: 0.55rem;
      font-weight: 600;
      color: rgba(255,255,255,0.7);
      margin-bottom: 0.375rem;
    }
    .app-chips {
      display: flex;
      gap: 0.375rem;
      flex-wrap: wrap;
      margin-bottom: 0.75rem;
    }
    .app-chip {
      font-size: 0.5rem;
      padding: 0.2rem 0.5rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.1);
      color: rgba(255,255,255,0.75);
    }
    .app-chip.active { background: var(--accent); color: #fff; }
    .app-cards { display: flex; flex-direction: column; gap: 0.4rem; }
    .app-card {
      background: rgba(255,255,255,0.08);
      border-radius: 0.5rem;
      padding: 0.5rem 0.625rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .app-card-icon {
      width: 24px;
      height: 24px;
      border-radius: 0.375rem;
      background: rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      flex-shrink: 0;
    }
    .app-card-info { flex: 1; min-width: 0; }
    .app-card-title { font-size: 0.55rem; font-weight: 600; color: #fff; }
    .app-card-sub { font-size: 0.48rem; color: rgba(255,255,255,0.45); }
    .app-card-badge {
      font-size: 0.45rem;
      padding: 0.125rem 0.375rem;
      border-radius: 999px;
      background: hsl(168,55%,32%);
      color: #fff;
    }
    .phone-glow {
      position: absolute;
      inset: -40px;
      background: radial-gradient(circle, hsl(168,55%,32%,0.15) 0%, transparent 70%);
      z-index: -1;
    }
    /* floating chips */
    .chip-float {
      position: absolute;
      padding: 0.35rem 0.7rem;
      border-radius: 0.5rem;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(0,0,0,0.06);
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--fg);
      box-shadow: 0 4px 12px rgba(0,0,0,0.12);
      display: flex;
      align-items: center;
      gap: 0.35rem;
    }
    .chip-float .dot { width: 6px; height: 6px; border-radius: 50%; }
    .chip-float.chip-1 { top: 22%; left: -90px; animation: floatChip1 4s ease-in-out infinite; }
    .chip-float.chip-2 { top: 44%; right: -85px; animation: floatChip2 4.5s ease-in-out infinite 1.5s; }
    .chip-float.chip-3 { bottom: 26%; left: -75px; animation: floatChip3 5s ease-in-out infinite 2s; }
    @keyframes floatChip1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
    @keyframes floatChip2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
    @keyframes floatChip3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
    .scroll-indicator {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      animation: bounce 2s ease-in-out infinite;
      color: rgba(255,255,255,0.25);
      font-size: 1.25rem;
    }
    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

    /* ── SECTION BASE ── */
    section { padding: 5rem 0; }
    .section-title {
      font-size: clamp(1.875rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: var(--fg);
      text-align: center;
      margin-bottom: 0.5rem;
    }
    .section-title .hl { color: var(--primary); }
    .section-sub {
      text-align: center;
      color: var(--muted-fg);
      max-width: 36rem;
      margin: 0.75rem auto 0;
      font-size: 1rem;
      line-height: 1.7;
    }

    /* ── ABOUT ── */
    #about { background: var(--bg); }
    .about-inner {
      max-width: 42rem;
      margin: 0 auto;
      text-align: center;
    }
    .about-inner p {
      margin-top: 1.5rem;
      font-size: 1.125rem;
      color: var(--muted-fg);
      line-height: 1.8;
    }
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
      padding-top: 2.5rem;
      border-top: 1px solid var(--border);
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
    }
    .stat-label { font-size: 0.8rem; color: var(--muted-fg); margin-top: 0.25rem; }

    /* ── HOW IT WORKS ── */
    #how-it-works { background: var(--mint); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2.5rem;
      margin-top: 3.5rem;
    }
    .step-item { text-align: center; }
    .step-icon-wrap {
      width: 64px;
      height: 64px;
      border-radius: 1rem;
      background: hsl(168,55%,32%,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.25rem;
      transition: background 0.3s, transform 0.3s;
    }
    .step-item:hover .step-icon-wrap { background: hsl(168,55%,32%,0.2); transform: translateY(-3px); }
    .step-icon-wrap svg { width: 28px; height: 28px; color: var(--primary); }
    .step-num {
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 0.25rem;
    }
    .step-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--fg); }
    .step-desc { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.5rem; line-height: 1.6; }

    /* connector line */
    .steps-grid .step-item:not(:last-child) { position: relative; }
    .step-connector {
      display: none;
    }

    /* ── SERVICES ── */
    #services { background: var(--bg); }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.25rem;
      margin-top: 3.5rem;
    }
    .service-card {
      background: var(--card);
      border-radius: 1.25rem;
      padding: 1.5rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.3s, transform 0.3s;
      cursor: default;
    }
    .service-card:hover {
      box-shadow: var(--shadow-elevated);
      transform: translateY(-3px);
    }
    .service-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 0.875rem;
      background: hsl(168,55%,32%,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      transition: background 0.3s;
    }
    .service-card:hover .service-icon-wrap { background: hsl(168,55%,32%,0.2); }
    .service-icon-wrap svg { width: 22px; height: 22px; color: var(--primary); }
    .service-name { font-size: 0.875rem; font-weight: 600; color: var(--fg); font-family: 'DM Sans', sans-serif; }

    /* ── WHY CHOOSE ── */
    #why-us { background: var(--mint); }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 56rem;
      margin: 3.5rem auto 0;
    }
    .why-card {
      background: var(--card);
      border-radius: 1.25rem;
      padding: 1.75rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-card);
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .why-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-3px); }
    .why-card svg { width: 32px; height: 32px; color: var(--primary); margin-bottom: 1rem; }
    .why-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--fg); margin-bottom: 0.5rem; }
    .why-card p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }

    /* ── PROVIDER FORM ── */
    #join { background: var(--bg); }
    .form-intro {
      text-align: center;
      margin-bottom: 3rem;
    }
    .form-intro p {
      max-width: 36rem;
      margin: 1rem auto 0;
      color: var(--muted-fg);
      line-height: 1.7;
    }
    /* Step indicator */
    .step-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      margin-bottom: 2rem;
    }
    .si-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.375rem;
      position: relative;
    }
    .si-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--muted);
      color: var(--muted-fg);
      cursor: pointer;
      transition: all 0.3s;
      border: 2px solid var(--border);
    }
    .si-circle.active, .si-circle.done {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }
    .si-circle svg { width: 16px; height: 16px; }
    .si-label { font-size: 0.65rem; font-weight: 600; color: var(--muted-fg); }
    .si-label.active { color: var(--primary); }
    .si-line {
      width: 60px;
      height: 2px;
      background: var(--border);
      margin: 0 4px;
      margin-bottom: 1.5rem;
      transition: background 0.3s;
    }
    .si-line.done { background: var(--primary); }
    .form-card {
      max-width: 48rem;
      margin: 0 auto;
      background: var(--card);
      border-radius: 1.5rem;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-elevated);
      padding: 2.5rem;
    }
    .form-step { display: none; }
    .form-step.active { display: block; }
    .form-step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--fg);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .form-step-title svg { width: 20px; height: 20px; color: var(--primary); }
    .form-grid-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
    }
    .form-group { margin-bottom: 1.25rem; }
    .form-group label {
      display: block;
      font-size: 0.8125rem;
      font-weight: 600;
      color: var(--fg);
      margin-bottom: 0.4rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 0.6rem 0.875rem;
      border: 1px solid var(--input);
      border-radius: var(--radius);
      background: var(--bg);
      color: var(--fg);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.875rem;
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
      appearance: none;
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 0.75rem center;
      padding-right: 2.25rem;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px hsl(168,55%,32%,0.12);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-confirm-box {
      background: var(--secondary);
      border-radius: 0.875rem;
      padding: 1.25rem;
      border: 1px solid var(--border);
      margin-bottom: 1.5rem;
    }
    .form-confirm-box p { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
    .check-group {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
    }
    .check-group input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 2px;
      accent-color: var(--primary);
      flex-shrink: 0;
      cursor: pointer;
    }
    .check-group label { font-size: 0.875rem; color: var(--muted-fg); cursor: pointer; line-height: 1.5; }
    .form-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid var(--border);
    }
    .btn-back {
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.375rem;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--muted-fg);
      padding: 0.5rem 0.75rem;
      border-radius: var(--radius);
      transition: background 0.2s, color 0.2s;
    }
    .btn-back:hover { background: var(--muted); color: var(--fg); }
    .btn-next {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.6rem 1.5rem;
      border-radius: var(--radius);
      font-size: 0.875rem;
      font-weight: 600;
      background: var(--primary);
      color: #fff;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .btn-next:hover { opacity: 0.88; }
    .btn-submit {
      display: flex;
      align-items: center;
      gap: 0.375rem;
      padding: 0.75rem 2rem;
      border-radius: var(--radius);
      font-size: 1rem;
      font-weight: 600;
      background: var(--accent);
      color: #fff;
      border: none;
      cursor: pointer;
      transition: opacity 0.2s;
    }
    .btn-submit:hover { opacity: 0.88; }
    .btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }
    .toast {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      padding: 0.875rem 1.25rem;
      border-radius: var(--radius);
      font-size: 0.875rem;
      font-weight: 500;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      z-index: 9999;
      transition: opacity 0.3s, transform 0.3s;
      opacity: 0;
      transform: translateY(8px);
      max-width: 320px;
    }
    .toast.show { opacity: 1; transform: translateY(0); }
    .toast-success { background: #22c55e; color: #fff; }
    .toast-error { background: #ef4444; color: #fff; }
    .toast-warning { background: #f59e0b; color: #fff; }

    /* ── CONTACT ── */
    #contact { background: var(--bg); }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      max-width: 56rem;
      margin: 3.5rem auto 0;
      align-items: start;
    }
    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.75rem;
    }
    .contact-info-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      margin-top: 2px;
      flex-shrink: 0;
    }
    .contact-info-item h4 { font-size: 0.875rem; font-weight: 700; color: var(--fg); font-family: 'DM Sans', sans-serif; }
    .contact-info-item p { font-size: 0.875rem; color: var(--muted-fg); }

    /* ── FOOTER ── */
    footer {
      background: var(--fg);
      padding: 3.5rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 2.5rem;
    }
    .footer-brand p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.7;
      margin-top: 0.75rem;
      max-width: 20rem;
    }
    .footer-logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
    }
    .footer-col h4 { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 0.875rem; font-family: 'DM Sans', sans-serif; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
    .footer-col ul li a:hover { color: #fff; }
    .footer-socials { display: flex; gap: 0.625rem; }
    .social-icon {
      width: 36px; height: 36px;
      border-radius: 0.625rem;
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s;
    }
    .social-icon:hover { background: rgba(255,255,255,0.2); }
    .social-icon svg { width: 16px; height: 16px; color: rgba(255,255,255,0.65); }
    .footer-bottom {
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.3);
    }

    /* ── ANIMATIONS ── */
    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible { opacity: 1; transform: translateY(0); }
    .fade-in-delay-1 { transition-delay: 0.1s; }
    .fade-in-delay-2 { transition-delay: 0.2s; }
    .fade-in-delay-3 { transition-delay: 0.3s; }
    .fade-in-delay-4 { transition-delay: 0.4s; }

    .nav-inner .nav-logo img,
    .nav-inner .nav-logo img{
        max-width: 140px;
    }
    .scrolled .nav-inner .nav-logo .logo-white,
    .nav-inner .nav-logo .logo-color{
      display: none;
    }
    .scrolled .nav-inner .nav-logo .logo-color,
    .nav-inner .nav-logo .logo-white{
        display: block;
    }

    .footer-logo-text img{
      max-width: 120px;
    }


    /* Privacy Hero */
    .privacy-hero {
      background: linear-gradient(135deg, #144e48 0%, #1e6b5e 100%);
      padding: 5rem 0 4rem;
      color: white;
      margin-top: -1px;
      padding-top: 135px;
    }

    .privacy-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.2rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      margin-bottom: 1rem;
    }

    .privacy-hero p {
      font-size: 1.1rem;
      max-width: 700px;
      opacity: 0.9;
    }

    /* Main content */
    .privacy-main {
      padding: 4rem 0 6rem;
    }

    .privacy-card {
      background: var(--card-bg);
      border-radius: 1.8rem;
      box-shadow: var(--shadow-sm);
      padding: 2.8rem;
      border: 1px solid var(--border);
    }

    .privacy-section {
      margin-bottom: 2.8rem;
    }

    .privacy-section h2 {
      font-size: 1.7rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--brand-teal);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--mint);
      display: inline-block;
    }

    .privacy-section h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 1.5rem 0 0.8rem 0;
      color: var(--deep-teal);
    }

    .privacy-section p, .privacy-section li {
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    .privacy-section ul, .privacy-section ol {
      margin-left: 1.8rem;
      margin-bottom: 1.2rem;
    }

    .privacy-section li {
      margin-bottom: 0.5rem;
    }

    .highlight-badge {
      background: var(--mint);
      padding: 0.2rem 0.8rem;
      border-radius: 2rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--brand-teal);
      display: inline-block;
      margin-bottom: 1rem;
    }

    /* Main content */
    .terms-main {
      padding: 4rem 0 6rem;
    }

    .terms-card {
      background: var(--card-bg);
      border-radius: 1.8rem;
      box-shadow: var(--shadow-sm);
      padding: 2.8rem;
      border: 1px solid var(--border);
    }

    .terms-section {
      margin-bottom: 2.5rem;
    }

    .terms-section h2 {
      font-size: 1.7rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--brand-teal);
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid var(--mint);
      display: inline-block;
    }

    .terms-section h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin: 1.5rem 0 0.8rem 0;
      color: var(--deep-teal);
    }

    .terms-section p, .terms-section li {
      color: var(--text-muted);
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    .terms-section ul, .terms-section ol {
      margin-left: 1.8rem;
      margin-bottom: 1.2rem;
    }

    .terms-section li {
      margin-bottom: 0.5rem;
    }


    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr 0.7fr; gap: 2rem; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(3, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 768px) {
      .nav-links, .nav-links .btn-cta { display: none; }
      .hamburger { display: block; }
      .hero-grid { grid-template-columns: 1fr; }
      .phone-wrapper { display: none; }
      section { padding: 3.5rem 0; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; }
      .form-grid-2 { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-card { padding: 1.5rem; }
      .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .mobile-menu .btn-cta{text-align: center;border-radius: 38px;color: #fff;}
      .nav-inner .nav-logo img, .nav-inner .nav-logo img {
        max-width: 94px;
      }
      .privacy-hero {
          padding-top: 90px;
      }
    }
    @media (max-width: 480px) {
      .hero-title { font-size: 2.25rem; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .steps-grid { grid-template-columns: 1fr 1fr; }
      .about-stats { grid-template-columns: 1fr; gap: 1rem; }
      .footer-grid { grid-template-columns: 1fr; }
      .si-label { display: none; }
    }
    
    input[type=number]::-webkit-inner-spin-button, 
    input[type=number]::-webkit-outer-spin-button { 
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        margin: 0; 
    }