*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: #FAFAF8;
      color: #1C1C1A;
      line-height: 1.6;
      overflow-x: hidden;
    }

    :root {
      --sand:       #FAFAF8;
      --sand-mid:   #F3F0EA;
      --sand-deep:  #E8E2D8;
      --teal:       #1B6E6E;
      --teal-soft:  #D4E8E8;
      --teal-pale:  #EDF5F5;
      --teal-deep:  #124E4E;
      --warm:       #E8970B;
      --warm-pale:  #FDF0D0;
      --terra:      #C05A35;
      --terra-pale: #F7E0D6;
      --ink:        #1C1C1A;
      --muted:      #7A746C;
      --light-muted:#A89E94;
      --white:      #FFFFFF;
    }

    /* ── Nav ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 6%;
      display: flex; align-items: center; justify-content: space-between;
      height: 66px;
      background: rgba(250,250,248,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--sand-deep);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 16px rgba(28,28,26,0.06); }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-leaf {
      width: 36px; height: 36px; border-radius: 10px;
      background: var(--teal);
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; flex-shrink: 0;
    }
    .logo-name { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 600; color: var(--ink); }
    .logo-city { font-size: 0.6rem; color: var(--teal); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-top: 1px; }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--teal); }
    .nav-wa {
      display: inline-flex; align-items: center; gap-7px;
      gap: 7px;
      background: var(--teal); color: white !important;
      padding: 8px 18px; border-radius: 7px; font-weight: 600 !important;
      font-size: 0.82rem !important; transition: background 0.2s !important;
      white-space: nowrap;
    }
    .nav-wa:hover { background: var(--teal-deep) !important; color: white !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

    /* ── Hero ── */
    .hero {
      min-height: 100vh;
      background: var(--sand);
      display: grid; grid-template-columns: 1.1fr 0.9fr;
      align-items: center; gap: 60px;
      padding: 100px 6% 80px;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 42%; background: var(--teal-pale);
      clip-path: ellipse(100% 80% at 100% 50%);
      pointer-events: none; z-index: 0;
    }
    .hero-bg-image {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-image: url('../images/hero-hands.png');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      opacity: 0.15;
      z-index: 0;
      pointer-events: none;
      mix-blend-mode: multiply;
    }
    .hero-left { position: relative; z-index: 1; }
    .hero-kicker {
      display: inline-flex; align-items: center; gap: 7px;
      background: var(--teal-pale); border: 1px solid var(--teal-soft);
      color: var(--teal); font-size: 0.7rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 6px 13px; border-radius: 5px; margin-bottom: 22px;
      animation: fup 0.5s ease both;
    }
    .hero-mana {
      font-family: 'Lora', serif; font-style: italic;
      font-size: 0.9rem; color: var(--light-muted);
      display: block; margin-bottom: 10px;
      animation: fup 0.5s 0.05s ease both;
    }
    .hero h1 {
      font-family: 'Lora', serif;
      font-size: clamp(2.4rem, 4.5vw, 4rem);
      font-weight: 600; line-height: 1.12; color: var(--ink);
      margin-bottom: 20px;
      animation: fup 0.5s 0.1s ease both;
    }
    .hero h1 em { font-style: italic; color: var(--teal); }
    .hero-desc {
      font-size: 1.05rem; color: var(--muted); font-weight: 300;
      line-height: 1.82; max-width: 460px; margin-bottom: 16px;
      animation: fup 0.5s 0.18s ease both;
    }
    .hero-hyd {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 0.82rem; color: var(--teal); font-weight: 500;
      margin-bottom: 32px; animation: fup 0.5s 0.22s ease both;
    }
    .hero-actions {
      display: flex; gap: 12px; flex-wrap: wrap;
      animation: fup 0.5s 0.28s ease both;
    }
    .btn-wa {
      display: inline-flex; align-items: center; gap: 8px;
      background: #25D366; color: white; font-weight: 600; font-size: 0.95rem;
      padding: 13px 24px; border-radius: 8px; text-decoration: none;
      box-shadow: 0 4px 16px rgba(37,211,102,0.3);
      transition: background 0.2s, transform 0.15s;
    }
    .btn-wa:hover { background: #1da851; transform: translateY(-1px); }
    .btn-call {
      display: inline-flex; align-items: center; gap: 8px;
      background: white; color: var(--ink); font-weight: 600; font-size: 0.95rem;
      padding: 13px 24px; border-radius: 8px; text-decoration: none;
      border: 1.5px solid var(--sand-deep);
      transition: all 0.2s;
    }
    .btn-call:hover { border-color: var(--teal); color: var(--teal); }

    /* Hero right: warm scene card */
    .hero-right {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: center;
    }
    .scene-card {
      background: white; border-radius: 20px;
      width: 300px;
      box-shadow: 0 20px 60px rgba(28,28,26,0.11);
      overflow: hidden;
    }
    .scene-top {
      background: var(--teal); padding: 22px 22px 18px;
    }
    .scene-avatar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
    .scene-av {
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(255,255,255,0.18);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; flex-shrink: 0;
    }
    .scene-av-name { color: white; font-weight: 600; font-size: 0.95rem; }
    .scene-av-rel  { color: rgba(255,255,255,0.65); font-size: 0.72rem; }
    .scene-status  {
      background: rgba(255,255,255,0.12); border-radius: 8px;
      padding: 10px 12px; display: flex; align-items: center; gap: 8px;
    }
    .sdot { width: 7px; height: 7px; background: #7FFFD4; border-radius: 50%; animation: blink 2s ease-in-out infinite; flex-shrink: 0; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
    .stext { font-size: 0.78rem; color: rgba(255,255,255,0.9); font-weight: 500; }
    .stime { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-left: auto; }
    .scene-body { padding: 18px 22px; }
    .scene-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--sand-mid); font-size: 0.78rem; }
    .scene-row:last-child { border: none; }
    .scene-icon { font-size: 1rem; flex-shrink: 0; }
    .scene-label { color: var(--muted); }
    .scene-val   { color: var(--ink); font-weight: 600; margin-left: auto; }
    .scene-proof {
      margin: 14px 22px 18px;
      background: var(--warm-pale); border-radius: 8px;
      padding: 10px 14px; display: flex; align-items: center; gap: 8px;
      font-size: 0.75rem; color: var(--terra); font-weight: 600;
    }
    /* Float badges */
    .fbadge {
      position: absolute; background: white; border-radius: 100px;
      padding: 7px 14px; font-size: 0.73rem; font-weight: 600; color: var(--ink);
      display: flex; align-items: center; gap: 6px;
      box-shadow: 0 6px 20px rgba(28,28,26,0.1);
      animation: bob 3s ease-in-out infinite;
      white-space: nowrap;
    }
    .fb1 { top: -16px; right: 0;  }
    .fb2 { bottom: 60px; left: -24px; animation-delay: 1.2s; }
    @keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

    /* ── Warm bar ── */
    .warm-bar {
      background: var(--teal); padding: 13px 6%;
      display: flex; align-items: center; justify-content: center;
      gap: 40px; flex-wrap: wrap;
    }
    .wb-item { display: flex; align-items: center; gap: 7px; font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.85); }

    /* ── Sections ── */
    section { padding: 88px 6%; }
    .ey {
      display: inline-block; font-size: 0.68rem; font-weight: 600;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--teal); margin-bottom: 10px;
    }
    h2.sh {
      font-family: 'Lora', serif;
      font-size: clamp(1.9rem, 3.6vw, 2.9rem);
      font-weight: 600; color: var(--ink); line-height: 1.18; margin-bottom: 14px;
    }
    .sb {
      font-size: 1rem; color: var(--muted); font-weight: 300;
      line-height: 1.82; max-width: 520px; margin-bottom: 40px;
    }
    .c { text-align: center; }
    .c .sb { margin-left: auto; margin-right: auto; }

    /* ── Services ── */
    .svc-sec { background: white; }
    .svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .svc-card {
      background: var(--sand); border-radius: 16px; padding: 30px;
      border: 1.5px solid var(--sand-deep);
      transition: all 0.3s; position: relative; overflow: hidden;
    }
    .svc-card:hover:not(.coming) {
      border-color: var(--teal-soft); background: white;
      transform: translateY(-4px); box-shadow: 0 16px 48px rgba(27,110,110,0.09);
    }
    .svc-card.coming {
      opacity: 0.55; cursor: default;
    }
    .svc-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
    .svc-card h3 { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .svc-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.78; font-weight: 300; }
    .svc-tag {
      position: absolute; top: 14px; right: 14px;
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      padding: 3px 9px; border-radius: 4px;
    }
    .tag-teal  { background: var(--teal-pale); color: var(--teal); }
    .tag-soon  { background: var(--sand-deep); color: var(--muted); }
    .tag-terra { background: var(--terra-pale); color: var(--terra); }
    .svc-list {
      margin-top: 12px; display: flex; flex-direction: column; gap: 6px;
      list-style: none;
    }
    .svc-list li {
      font-size: 0.82rem; color: var(--muted); font-weight: 400;
      display: flex; align-items: baseline; gap: 7px;
    }
    .svc-list li::before { content: '→'; color: var(--teal); font-size: 0.75rem; flex-shrink: 0; }

    /* ── How it works ── */
    .how-sec { background: var(--sand-mid); }
    .how-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px; margin-top: 48px;
    }
    .how-card {
      background: white; border-radius: 16px; padding: 28px;
      border: 1.5px solid var(--sand-deep); position: relative;
      transition: all 0.25s;
    }
    .how-card:hover { border-color: var(--teal-soft); box-shadow: 0 12px 36px rgba(27,110,110,0.08); }
    .how-num {
      font-family: 'Lora', serif; font-size: 2.8rem; font-weight: 700;
      color: var(--teal); opacity: 0.18; line-height: 1; margin-bottom: 14px;
    }
    .how-card h3 { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
    .how-card p  { font-size: 0.84rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
    .how-connector {
      display: flex; align-items: center; justify-content: center;
      background: var(--teal); color: white; border-radius: 8px;
      padding: 14px 20px; margin-top: 48px; gap: 10px;
      font-size: 0.9rem; font-weight: 600;
    }
    .how-connector a { color: white; text-decoration: none; }
    .how-connector .sep { opacity: 0.4; }

    /* ── Why us ── */
    .why-sec { background: white; }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .why-visual {
      background: linear-gradient(160deg, var(--teal) 0%, var(--teal-deep) 100%);
      border-radius: 20px; min-height: 400px;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
    }
    .wr {
      position: absolute; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.1);
      top: 50%; left: 50%; transform: translate(-50%,-50%);
      animation: rglow 4s ease-in-out infinite;
    }
    .wr:nth-child(1) { width: 100px; height: 100px; border-color: rgba(255,255,255,0.3); }
    .wr:nth-child(2) { width: 180px; height: 180px; animation-delay: 0.8s; }
    .wr:nth-child(3) { width: 280px; height: 280px; animation-delay: 1.6s; }
    .wr:nth-child(4) { width: 400px; height: 400px; animation-delay: 2.4s; }
    @keyframes rglow { 0%,100%{opacity:0.4} 50%{opacity:0.9} }
    .why-inner { text-align: center; position: relative; z-index: 1; padding: 20px; }
    .wi-sym { font-size: 3.5rem; display: block; margin-bottom: 14px; }
    .wi-label { font-family: 'Lora', serif; font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.6; }
    .wi-sub { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 8px; letter-spacing: 0.1em; text-transform: uppercase; display: block; }
    .why-points { list-style: none; display: flex; flex-direction: column; gap: 22px; }
    .wpt { display: flex; gap: 16px; align-items: flex-start; }
    .wpt-ic {
      width: 42px; height: 42px; border-radius: 10px;
      background: var(--teal-pale); flex-shrink: 0; margin-top: 2px;
      display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
    }
    .wpt-t h4 { font-family: 'Lora', serif; font-size: 1rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
    .wpt-t p  { font-size: 0.84rem; color: var(--muted); line-height: 1.72; font-weight: 300; }

    /* ── Coverage ── */
    .cov-sec { background: var(--teal-pale); text-align: center; }
    .cov-sec h2.sh { color: var(--teal-deep); }
    .cities { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 28px; }
    .city {
      padding: 8px 20px; border-radius: 6px; font-size: 0.85rem;
      font-weight: 500; border: 1.5px solid; transition: all 0.2s;
    }
    .city.live { background: var(--teal); color: white; border-color: var(--teal); }
    .city.soon { background: white; color: var(--light-muted); border-color: var(--sand-deep); }
    .city.soon:hover { border-color: var(--teal); color: var(--teal); }
    .cov-note { margin-top: 18px; color: var(--muted); font-size: 0.82rem; }
    .cov-note a { color: var(--teal); text-decoration: none; font-weight: 500; }

    /* ── CTA ── */
    .cta-sec {
      background: var(--teal-deep); text-align: center; padding: 96px 6%;
      position: relative; overflow: hidden;
    }
    .cta-sec::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 80% at 50% 110%, rgba(232,151,11,0.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-sec h2 {
      font-family: 'Lora', serif; font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 600; color: white; margin-bottom: 14px; position: relative; z-index: 1;
    }
    .cta-sec h2 em { font-style: italic; color: #7FFFD4; }
    .cta-sec p {
      color: rgba(255,255,255,0.5); font-size: 1rem; font-weight: 300;
      margin-bottom: 32px; max-width: 420px; margin-left: auto; margin-right: auto;
      position: relative; z-index: 1;
    }
    .cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-cta-wa {
      display: inline-flex; align-items: center; gap: 8px;
      background: #25D366; color: white; font-weight: 700; font-size: 0.95rem;
      padding: 14px 28px; border-radius: 8px; text-decoration: none;
      box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: all 0.2s;
    }
    .btn-cta-wa:hover { background: #1da851; transform: translateY(-2px); }
    .btn-cta-call {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.08); color: white;
      border: 1.5px solid rgba(255,255,255,0.2);
      font-weight: 600; font-size: 0.95rem;
      padding: 14px 28px; border-radius: 8px; text-decoration: none;
      transition: all 0.2s;
    }
    .btn-cta-call:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
    .cta-note { margin-top: 20px; color: rgba(255,255,255,0.3); font-size: 0.78rem; position: relative; z-index: 1; }

    /* ── Footer ── */
    footer { background: var(--ink); padding: 60px 6% 28px; color: rgba(255,255,255,0.4); }
    .ft {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
      padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 24px;
    }
    .fb p { font-size: 0.84rem; line-height: 1.75; margin-top: 14px; max-width: 240px; font-weight: 300; }
    .fc h4 {
      font-size: 0.67rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
      color: #7FFFD4; margin-bottom: 14px;
    }
    .fc ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .fc a { color: rgba(255,255,255,0.38); text-decoration: none; font-size: 0.84rem; font-weight: 300; transition: color 0.2s; }
    .fc a:hover { color: rgba(255,255,255,0.7); }
    .fbot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.77rem; }
    .fbot a { color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
    .fbot a:hover { color: rgba(255,255,255,0.5); }

    /* ── Mobile menu ── */
    .mob-menu {
      display: none; position: fixed; top: 66px; left: 0; right: 0;
      background: var(--sand); padding: 12px 6%;
      border-bottom: 1px solid var(--sand-deep);
      z-index: 99; flex-direction: column; gap: 2px;
      box-shadow: 0 8px 20px rgba(28,28,26,0.07);
    }
    .mob-menu.open { display: flex; }
    .mob-menu a {
      color: var(--muted); text-decoration: none; font-size: 0.95rem;
      font-weight: 500; padding: 11px 0; border-bottom: 1px solid var(--sand-deep); transition: color 0.2s;
    }
    .mob-menu a:last-child { border: none; }
    .mob-menu a:hover { color: var(--teal); }

    /* ── Animations ── */
    @keyframes fup { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }
    .rev { opacity:0; transform:translateY(20px); transition:opacity 0.6s ease, transform 0.6s ease; }
    .rev.in { opacity:1; transform:translateY(0); }
    .d1 { transition-delay: 0.1s; }
    .d2 { transition-delay: 0.2s; }
    .d3 { transition-delay: 0.3s; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .hero { grid-template-columns: 1fr; text-align: center; padding: 100px 5% 72px; }
      .hero-desc { margin: 0 auto 14px; }
      .hero-hyd { justify-content: center; }
      .hero-actions { justify-content: center; }
      .hero-right { display: none; }
      .why-grid { grid-template-columns: 1fr; gap: 48px; }
      .why-visual { min-height: 220px; }
      .ft { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 640px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 68px 5%; }
      .ft { grid-template-columns: 1fr; }
      .fbot { flex-direction: column; text-align: center; }
      .warm-bar { gap: 16px; }
      .how-connector { flex-direction: column; gap: 8px; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }