
    :root{
      --bg-dark:#FFffff;
      --dark:#000000;
      --accent:#0fb39d;
      --accent-2:#07a98d;
      --mint:#dff7f2;
      --muted-white: rgba(255,255,255,0.85);
      --glass: rgba(255,255,255,0.03);
      --card-shadow: 0 12px 36px rgba(2,16,16,0.45);
      --radius-lg: 16px;
      --radius-sm: 10px;
    }

    /* RESET & BASE */
    *{box-sizing:border-box;font-family:'Poppins',system-ui,Segoe UI,Roboto,'Helvetica Neue',Arial;}
    html, body {
      height: 100%;
      /* respect iOS safe-area insets so content does not get clipped at edges */
      padding-left: env(safe-area-inset-left);
      padding-right: env(safe-area-inset-right);
      box-sizing: border-box;
    }
    body {
      margin: 0;
      background: radial-gradient(circle at 10% 10%, rgba(15,179,157,0.06), transparent 30%), var(--bg-dark);
      color: var(--muted-white);
      -webkit-font-smoothing: antialiased;
      min-height: 100vh;
      /* ensure no accidental horizontal scroll from children */
      overflow-x: hidden;
    }


    .wrap{max-width:1100px;margin:1px auto;padding:1px;}

    /* HEADER */
    .header{
      display:flex;align-items:center;justify-content:space-between;gap:12px;padding:8px 4px;
    }
    .logo{display:flex;align-items:center;gap:12px;}
.logo img {
  height:55px;
  width:auto;
  padding:0.1px;
  background: transparent;
  border-radius: 8px;
  border: 0.1px solid var(--accent);
}
    .brand-title{font-weight:700;font-size:18px;color:var(--mint);letter-spacing:0.2px;}
    .early-pill{font-size:12px;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,0.04);color:var(--muted-white);border:1px solid rgba(255,255,255,0.03);}

    /* HERO */
    .hero{
      display:grid;
      grid-template-columns: 1fr;   /* ← single column */
      gap:10px;
      align-items:stretch;
      margin-top:5px;
      /*background and overlay / tint management*/
      background:
        linear-gradient(180deg, rgba(5,44,43,0.05), rgba(7,59,59,0.05)),
        url('assets/images/hero-bg.jpg') center/cover no-repeat;
      border-radius: 18px;
    }


    /* left column */
    .hero-left{display:flex;flex-direction:column;gap:14px;padding:0px;}
    .kicker{display:inline-block;background:rgba(255,255,255,0.04);padding:6px 10px;border-radius:999px;font-size:12px;color:var(--mint);width:max-content}
    h1{font-size:32px;margin:0;line-height:1.02;color:#eafffb;}
    p.lead{margin:0;color:rgba(255,255,255,0.88);font-size:15px;}
    .value-badges{display:flex;gap:8px;margin-top:6px;flex-wrap:wrap;}
    .badge{background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:8px 10px;border-radius:10px;font-size:13px;border:1px solid rgba(255,255,255,0.03);color:var(--muted-white);display:flex;gap:8px;align-items:center;}
    .badge .dot{height:8px;width:8px;border-radius:999px;background:var(--accent);}



    /* FORM */
    .form-card{
      margin-top:6px;
      background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius:14px;
      padding:18px;
      box-shadow: 0 8px 30px rgba(2,16,16,0.35);
      border:1px solid rgba(255,255,255,0.03);
    }
    .form-row{display:flex;gap:10px;align-items:center;}
    label{display:block;font-size:13px;margin:8px 0 6px;color:#e7fff7;}
    input[type="text"], input[type="email"], input[type="tel"]{
      width:100%;padding:12px 14px;border-radius:10px;border:1px solid rgba(255,255,255,0.06);background:transparent;color:var(--muted-white);font-size:15px;
      outline:none;transition:box-shadow .18s, border-color .18s;
    }
    input[type="text"]::placeholder, input[type="email"]::placeholder, input[type="tel"]::placeholder{color:rgba(255,255,255,0.55);}
    input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus{
      box-shadow: 0 8px 30px rgba(15,179,157,0.12);
      border-color: rgba(15,179,157,0.18);
    }

    .actions{display:flex;gap:10px;align-items:center;margin-top:12px;}
    .btn{display:inline-block;padding:12px 18px;border-radius:999px;background:var(--accent);color:var(--dark);font-weight:600;border:none;cursor:pointer;margin-top:0;box-shadow: 0 10px 34px rgba(11,179,157,0.12);font-size:15px;}
    .btn.secondary{background:transparent;color:var(--muted-white);border:1px solid rgba(255,255,255,0.06);box-shadow:none;}
    .muted{font-size:13px;color:rgba(255,255,255,0.75);margin-top:8px;}
    .error{color:#ff4d4d;font-size:13px;margin-top:8px;}

    /* features row */
    .cards{display:flex;gap:12px;margin-top:18px;}
    .card{flex:1;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));padding:14px;border-radius:12px;border:1px solid rgba(255,255,255,0.03);}
    .card strong{display:block;margin-bottom:6px;}

    /* trust bar */
    .trustbar{margin-top:0px;padding:12px 14px;border-radius:12px;background:rgba(255,255,255,0.02);display:flex;align-items:center;gap:12px;overflow:hidden;}
    .trustbar img{height:28px;opacity:0.92;}

    /* footer */
    .footer{margin-top:22px;font-size:13px;color:rgba(255,255,255,0.7);display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;}

/* ===== OTP modal — improved contrast + accessibility ===== */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}
.modal.open { display: flex; }
.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal .box {
  position: relative;
  z-index: 100000;
  width: 420px;
  max-width: 94%;
  background: var(--white, #ffffff);
  color: var(--dark, #032a2a);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(2,6,23,0.32);
  outline: none;
}
.modal .box h3,
.modal .box p,
.modal .box .small { color: #032a2a; }

/* OTP input */
.otp-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(15,20,25,0.08);
  font-size: 18px;
  letter-spacing: 6px;
  text-align: center;
  background: #fff;
  color: #032a2a;
  box-sizing: border-box;
}

/* mode buttons */
.mode-btn { 
  padding: 8px 10px; 
  border-radius: 10px; 
  cursor: pointer; 
  font-weight:600;
  border:1px solid rgba(3,40,40,0.06);
  background: transparent;
  color: var(--dark);
}
.mode-btn.mode-active {
  background: linear-gradient(90deg,var(--accent,#0b8f8f),#006b6b);
  color: #fff;
  border-color: transparent;
  opacity: 1;
}

/* actions */
/* === Unified Primary Button Style (CTA + Modal Verify) === */
.btn-primary {
  background: linear-gradient(90deg, var(--accent, #0fb39d), var(--accent-2, #07a98d)) !important;
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  flex: 1;
  box-shadow: 0 8px 24px rgba(15,179,157,0.25);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15,179,157,0.35);
}

.btn-ghost {
  background: transparent;
  border: 1px solid rgba(3,40,40,0.08);
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
}

/* error & success */
.error { color: #b00020; font-size: 13px; display:none; }
/* Improve OTP success visibility */
.otp-success {
  color: #064e3b !important;                 /* darker teal/green for contrast */
  background: rgba(6,78,59,0.06);            /* subtle pale green background */
  padding: 8px 10px;
  border-radius: 8px;
  border-left: 4px solid #10b981;            /* accent stripe */
  display: block;                            /* ensure it shows as block */
  margin-top: 10px;
  font-weight: 600;
}

/* focus states */
.modal .box :focus { outline: 3px solid rgba(11,143,143,0.16); outline-offset:2px; }

/* mobile adjustments */
@media (max-width:880px) {
  .modal .box { width: 94%; padding:14px; }
  .otp-input { font-size:18px; letter-spacing:5px; }
}



    /* accessibility focus */
    button:focus, input:focus { outline: 3px solid rgba(15,179,157,0.08); outline-offset:2px; }

    /* city suggestions styling (overrides inline) */
    #city-suggestions { background: #fff; color: #0b2b2a; border-radius:10px; box-shadow: 0 8px 30px rgba(2,16,16,0.12); }
    #city-suggestions li { padding: 8px 12px; cursor: pointer; }
    #city-suggestions li:hover { background:#f0fdfa; }
    
    .highlight-accent {
  color: var(--accent);
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.lead-list {
  list-style: none;
  margin: 6px 0 12px;
  padding: 0;
}
.lead-list li {
  margin: 4px 0;
  position: relative;
  padding-left: 14px;
}
.lead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.lead-list li {
  opacity: 0;
  transform: translateY(6px);
  animation: fadeInUp 0.4s ease forwards;
}
.lead-list li:nth-child(1){ animation-delay: 0.8s; }
.lead-list li:nth-child(2){ animation-delay: 1.6s; }
.lead-list li:nth-child(3){ animation-delay: 2.0s; }
.lead-list li:nth-child(4){ animation-delay: 2.4s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.cta-wrap {
  text-align: center;
  margin: 40px 0 120px;
}

.cta-btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: var(--dark);
  font-weight: 700;
  font-size: 17px;
  padding: 16px 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.3s ease;
  line-height: 1.4;
  box-shadow: 0 12px 32px rgba(15,179,157,0.25);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(15,179,157,0.35);
}

.cta-btn span {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.cta-btn {
  background: rgba(15,179,157,0.15);
  backdrop-filter: blur(8px);
  color: var(--mint);
  border: 1px solid rgba(15,179,157,0.3);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: rgba(15,179,157,0.25);
  box-shadow: 0 0 20px rgba(15,179,157,0.3);
}

.cta-btn span {
  display: block;
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
  color: #fff;
}

/* Fix: ensure panel contains children and prevents visual bleed */
/* Fix: ensure panel contains children and prevents visual bleed */
background: transparent; /* hero/other sections will own their backgrounds */


/* give inner content breathing room 
.hero-left { padding-left: 18px; padding-right: 18px; }*/

/* ensure cards and form do not visually escape; allow inner shadows to show */
.cards, .form-card {
  border-radius: 12px;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
}



/* mobile safety: collapse grid and remove right illustration */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; gap: 12px; }
  /* slightly larger gutters on small phones so nothing touches the edges */
  .wrap { padding-left: max(14px, env(safe-area-inset-left)); padding-right: max(14px, env(safe-area-inset-right)); }
  .hero-left { padding-left: 14px; padding-right: 14px; }
  .form-card, .cards { padding-left: 12px; padding-right: 12px; }
}

@media (max-width: 480px) {
  .timeline-line { left: 8%; width: 84%; }
}

/* price */
.hero-text {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero-text h1 {
  font-size: clamp(1.2rem, 5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.price-line {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  color: #444;
  font-weight: 500;
  margin-top: 0;
}

.old-price {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 6px;
}

.new-price {
  color: #00e6a7;
  font-weight: 700;
}

/* timeline */

.unlock-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  color: #fff;
  margin: 2rem 0;
}
.unlock-timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #b9f3f0;
  opacity: 0.4;
}
.step {
  text-align: center;
  width: 22%;
  position: relative;
}
.step::before {
  content: "🔒";
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.step.active::before {
  content: "🔓";
}
.step h3 {
  margin: 0.3rem 0;
  font-weight: 700;
  font-size: 1rem;
}
.step p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/*  for waiting button*/
.btn.loading {
  transform: translateY(1px) scale(0.995);
  cursor: progress;
  position: relative;
}
.btn.loading::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.55);
  border-top-color: transparent;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* Toast & subtle success styling for OTP flow */
/* Improved toast: darker, higher-contrast and slightly wider */
#gp-toast {
  display: none;
  align-items: center;
  gap: 10px;
  position: fixed;
  right: 16px;
  bottom: 18px;
  min-width: 240px;
  max-width: 420px;
  padding: 12px 14px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(3,10,10,0.55);
  z-index: 99999;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(180deg, #064e3b, #083d33); /* dark teal gradient for contrast */
  pointer-events: auto;
}
#gp-toast.show { display: flex; animation: gp-toast-in .18s ease both; }
#gp-toast .icon { width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:14px; background: rgba(255,255,255,0.08); }
@keyframes gp-toast-in { from { transform: translateY(8px); opacity:0 } to { transform: translateY(0); opacity:1 } }

/* email capture in modal */
#emailCapture input { background: rgba(255,255,255,0.02); color: inherit; border: 1px solid rgba(255,255,255,0.06); }
#emailCapture .small { font-size:13px; }

/* Feature card styles (drop into your stylesheet or <style> block) */
.feature-cards { display:flex; gap:10px; flex-wrap:wrap; margin-top:12px; }
.feature-card {
  flex:1; min-width:160px;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.01));
  padding:12px; border-radius:12px; border:1px solid rgba(255,255,255,0.2);
  box-sizing:border-box;
  display:flex; flex-direction:column; gap:8px;
}
.feature-card .card-img-top {
  width:100%; height:96px; object-fit:cover; border-radius:8px;
  display:block;
}
.feature-card .card-row { display:flex; align-items:center; gap:10px; }

.feature-card strong { display:block; font-size:1rem; }
.feature-card .muted { font-size:0.85rem; color: rgba(255,255,255,0.88); opacity:0.9; }

/* Banner before lead form */
@media (max-width: 600px) {
  #early-access {
    padding: 0 12px;
  }
  #early-access h2 {
    font-size: 1.2rem;
    line-height: 1.4;
  }
  .early-access-banner img {
    margin-bottom: 16px;
    border-radius: 10px;
  }
  .form-card {
    padding: 16px;
  }
}


/* ====== MOBILE WIDTH UTILIZATION PATCH (safe, visual-only) ====== */

/* 1) Full-bleed hero on small screens: push hero to the viewport edges */
@media (max-width: 640px) {
  .hero{
    /* already single-column in your file; ensure no side waste */
    grid-template-columns: 1fr;
    gap: 14px;

    /* full-bleed trick: extend hero to viewport edges */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /* keep rounded feel but a bit tighter on phones */
    border-radius: 14px;

    /* inner padding so content doesn’t touch edges; honors iOS safe areas */
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
    padding-top: 14px;
    padding-bottom: 14px;
  }

  /* 2) Reduce wrapper gutters so content can breathe edge-to-edge */
  .wrap{
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  /* 3) Make primary CTA and buttons use full available width */
  .actions{
    flex-direction: column;
    align-items: stretch; /* buttons will span full width */
    gap: 10px;
  }
  .btn,
  .cta-btn{
    width: 100%;
    max-width: 100%;
  }

  /* 4) Inputs should be truly fluid */
  input[type="text"],
  input[type="email"],
  input[type="tel"]{
    width: 100%;
  }

  /* 5) Lead list & text: avoid forced narrow columns from <br> on tiny screens */
  .lead br{ display: none; }
  .hero-text h1{
    font-size: clamp(1.25rem, 6vw, 1.8rem);
    line-height: 1.25;
  }
  .price-line{
    font-size: clamp(1rem, 4.5vw, 1.15rem);
  }

  /* 6) Banner and feature images stretch properly */
  .early-access-banner img,
  .feature-card .card-img-top{
    width: 100%;
    height: auto;
    display: block;
  }

  /* 7) Form card: use width efficiently; no extra side padding */
  .form-card{
    margin-left: 0;
    margin-right: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  /* 8) City suggestions dropdown should match the input width perfectly */
  #city-suggestions{
    left: 0;
    right: 0; /* already set inline, but this ensures full width of parent */
  }
}

/* Optional: on ultra-small devices, trim gutters further without clipping */
@media (max-width: 360px){
  .wrap{
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }
  .hero{
    border-radius: 12px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}

/* Mobile: maximize width usage (non-breaking, visual-only overrides) */
@media (max-width: 880px) {
  /* 1) Single column is fine, but let the hero go edge-to-edge */
  .hero{
    grid-template-columns: 1fr; /* keep single column */
    gap: 12px;

    /* full-bleed: extend hero to viewport edges */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    /* comfortable inner padding that respects iOS safe areas */
    padding-left: max(14px, env(safe-area-inset-left));
    padding-right: max(14px, env(safe-area-inset-right));
    padding-top: 14px;
    padding-bottom: 14px;

    /* slightly tighter radius on phones */
    border-radius: 14px;
  }

  /* 2) Reduce wrapper gutters so content can breathe */
  .wrap{
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  /* 3) Avoid double padding on the left column */
  .hero-left{
    padding-left: 0;   /* hero already provides safe padding now */
    padding-right: 0;
  }

  /* 4) Form/cards: keep comfortable inner padding, but not extra */
  .form-card, .cards{
    padding-left: 14px;
    padding-right: 14px;
  }

  /* 5) Buttons & inputs should actually span the width */
  .actions{ flex-direction: column; align-items: stretch; gap: 10px; }
  .btn, .cta-btn{ width: 100%; max-width: 100%; }
  input[type="text"], input[type="email"], input[type="tel"]{ width: 100%; }

  /* 6) Let copy use width (avoid forced narrow columns from <br> on tiny screens) */
  .lead br{ display: none; }
}

/* Ultra-small phones: trim gutters just a bit more without clipping */
@media (max-width: 360px){
  .wrap{
    padding-left: max(10px, env(safe-area-inset-left));
    padding-right: max(10px, env(safe-area-inset-right));
  }
  .hero{
    border-radius: 12px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}

.hero-text {
  color: #888; /* dark grey for all text inside */
}
.hero-text h1,
.hero-text {
  color: #444; /* ensure all sub-elements match */
}

/* === LIGHT THEME FORM OVERRIDE — paste at end of <style> === */

.form-card{
  background: #ffffff !important;          /* solid white card */
  border: 1px solid #ddd !important;       /* visible light border */
  box-shadow: 0 8px 20px rgba(0,0,0,0.05) !important;
  border-radius: 14px !important;
  color: #222 !important;                  /* default text inside form */
}

/* labels & small notes */
.form-card label{
  color: #222 !important;                  /* dark label */
  font-weight: 600;
}
.form-card .muted{
  color: #555 !important;                  /* softer helper text */
}

/* inputs */
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"]{
  background: #f8f8f8 !important;          /* light input fill */
  color: #222 !important;                   /* dark input text */
  border: 1px solid #ccc !important;        /* visible input border */
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.form-card input::placeholder{
  color: #777 !important;
}
.form-card input:focus{
  border-color: #0fb39d !important;        /* mint accent focus */
  box-shadow: 0 0 0 3px rgba(15,179,157,0.15) !important;
  outline: none;
}

/* buttons within the form card */
.form-card .btn{
  background: linear-gradient(90deg, #0fb39d, #07a98d) !important;
  color: #fff !important;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: 0 6px 20px rgba(15,179,157,0.25);
}
.form-card .btn.secondary{
  background: transparent !important;
  color: #0fb39d !important;
  border: 1px solid #0fb39d !important;
}

/* error message in light mode */
.form-card .error{
  color: #c00 !important;                  /* readable red */
  font-size: 13px;
}

/* optional: make the page canvas slightly off-white so the white card is visible */
body{
  background-color: #f9fafb !important;
}

/* === LIGHT THEME PATCH — Explainer cards, How-it-works cards, Timeline === */
/* Paste at the very end of your existing <style> so it wins the cascade */

/* 1) "What we Provide" feature cards */
.feature-cards {
  gap: 12px;
}
.feature-card {
  background: #ffffff !important;                 /* solid white card */
  border: 1px solid #e5e7eb !important;           /* light grey border */
  box-shadow: 0 8px 16px rgba(0,0,0,0.06) !important;
  border-radius: 12px !important;
  color: #222 !important;                          /* default text */
}
.feature-card strong {
  color: #222 !important;                          /* title text */
  font-weight: 700;
}
.feature-card .muted {
  color: #555 !important;                          /* body text */
}
.feature-card .card-img-top {
  border-radius: 8px;
  display: block;
}

/* 2) "How it works" three inline cards (inline styles present → override with !important) */
div[style*="display:flex"][style*="flex-wrap:wrap"] > div {
  background: #ffffff !important;
  border: 1px solid #e5e7eb !important;
  color: #222 !important;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06) !important;
  border-radius: 12px !important;
}
div[style*="display:flex"][style*="flex-wrap:wrap"] > div .muted {
  color: #555 !important;
}

/* 3) Timeline on white */
.unlock-timeline {
  color: #222 !important;                           /* headings + general text */
}
.unlock-timeline::before {
  background: #e5e7eb !important;                   /* connector line visible on white */
  opacity: 1 !important;
}
.step h3 {
  color: #222 !important;
}
.step p {
  color: #555 !important;
}

/* 4) Section headings in these blocks (if any are still white) */
.highlight-accent {                                  /* keep accent but ensure readable fallback */
  -webkit-text-fill-color: initial;                  /* allow color to show if gradient unsupported */
  color: #0fb39d;
}

/* 5) Safety: generic muted text on white pages */
.muted { color: #555 !important; }

/* ===== First section hero: own background image & overlay ===== */
#hero.hero{
  /* full-bleed edge-to-edge on mobile while keeping safe padding */
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  /* hero’s own background (image + tint) */
  background:
    linear-gradient(180deg, rgba(5,44,43,0.01), rgba(7,59,59,0.01)),  /* adjust 0.35 → darker/lighter */
    url('/assets/images/hero-bg.jpg') center/cover no-repeat;

  border-radius: 18px;              /* keep your rounded look */
  padding: 20px;                    /* content breathing room */
}

/* make sure inner column doesn’t double-pad on small screens */
@media (max-width: 880px){
  #hero.hero { border-radius: 14px; padding: 14px; }
  #hero .hero-left { padding-left: 0; padding-right: 0; }
}

/* text colors for hero on image background (readable on darkened photo) */
#hero .lead,
#hero h1,
#hero h2,
#hero .hero-text,
#hero .price-line {
  color: #444;                   /* dark grey */
}
#hero .muted { color: rgba(255,255,255,0.85); }
#hero .trustbar small { color: rgba(255,255,255,0.75) !important; }

/* if you want the headline’s accent to stay mint over the image */
#hero .highlight-accent {
  color: #0fb39d;
  -webkit-text-fill-color: #0fb39d;
  background: none;
}

/* === Refined: only top hero texts stay white === */

/* 1️⃣ Main hero heading — the top big one with id="hero-heading" */
#hero #hero-heading {
  color: #ffffff !important; /* white for contrast on background image */
}

/* 2️⃣ "GharPey helps provide:" line */
#hero p.lead[style*="font-weight:600"] {
  color: #ffffff !important;
}

/* 3️⃣ "All accessible to your house help" line */
#hero p.lead[style*="white-space"] {
  color: #ffffff !important;
}

/* 4️⃣ Accent highlight remains mint */
#hero .highlight-accent {
  color: #00e6a7 !important;
  -webkit-text-fill-color: #00e6a7 !important;
  background: none !important;
}

/* === OTP Modal Buttons — Uniform Size & Alignment === */
.modal .box .btn-primary,
.modal .box .btn-ghost {
  flex: 1;                       /* equal width inside flex parent */
  min-width: 120px;              /* ensure decent size */
  padding: 12px 18px !important; /* same vertical & horizontal padding */
  border-radius: 999px !important; /* same pill shape */
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  box-sizing: border-box;
}

/* make ghost button border and text match brand tone */
.modal .box .btn-ghost {
  border: 1px solid var(--accent, #0fb39d) !important;
  color: var(--accent, #0fb39d) !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* hover effects consistent */
.modal .box .btn-ghost:hover {
  background: rgba(15,179,157,0.08);
}


.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.nav-link {
  color: #0fb39d; /* mint accent */
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: #07a98d;
}


  