*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

    :root{
      --primary:   #F5A58C;
      --primary-d: #E07A5F;
      --primary-l: #FDE8E0;
      --primary-m: #F8C4B4;
      --secondary: #6B3FBF;
      --sec-d:     #4E2D9A;
      --sec-l:     #FDE8E0;
      --sec-m:     #8B5FD8;
      --white:     #FFFFFF;
      --off-white: #FFF9F7;
      --dark:      #2D1020;
      --mid:       #7A4A5A;
      --light-txt: #B08898;
      --radius:    16px;
    }

    html{scroll-behavior:smooth}
    body{font-family:'Nunito',sans-serif;background:var(--off-white);color:var(--dark);overflow-x:hidden}

    /* ─── LANGUAGE SWITCHER ─────────────────────────── */
    .lang-switcher{
      display:flex;align-items:center;gap:6px;
      background:rgba(245,165,140,0.12);border:1.5px solid rgba(245,165,140,0.3);
      border-radius:50px;padding:4px 6px;
    }
    .lang-btn{
      border:none;background:transparent;cursor:pointer;
      padding:5px 11px;border-radius:50px;
      font-family:'Nunito',sans-serif;font-size:0.8rem;font-weight:700;
      color:var(--mid);transition:all .2s;
    }
    .lang-btn.active{background:var(--primary);color:#fff}
    .lang-btn:hover:not(.active){background:var(--primary-l);color:var(--primary-d)}

    /* i18n — hide non-active language strings */
    [data-en],[data-si],[data-ta]{display:none}
    [data-lang="en"] [data-en]{display:inherit}
    [data-lang="si"] [data-si]{display:inherit}
    [data-lang="ta"] [data-ta]{display:inherit}
    /* inline spans */
    span[data-en],span[data-si],span[data-ta]{display:none}
    [data-lang="en"] span[data-en]{display:inline}
    [data-lang="si"] span[data-si]{display:inline}
    [data-lang="ta"] span[data-ta]{display:inline}

    /* ─── NAV ───────────────────────────────────────── */
    nav{
      position:fixed;top:0;left:0;right:0;z-index:100;
      background:rgba(255,255,255,0.94);backdrop-filter:blur(14px);
      border-bottom:1.5px solid var(--primary-l);
      display:flex;align-items:center;justify-content:space-between;
      padding:10px 5%;
    }
    .nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
    .nav-logo img{height:35px;width:auto}
    .nav-links{display:flex;gap:26px}
    .nav-links a{color:var(--mid);text-decoration:none;font-weight:700;font-size:0.88rem;transition:color .2s}
    .nav-links a:hover{color:var(--primary)}
    .nav-right{display:flex;align-items:center;gap:14px}
    .nav-cta{
      background:var(--primary);color:#fff;border:none;border-radius:50px;
      padding:9px 22px;font-family:'Nunito',sans-serif;font-weight:700;font-size:0.88rem;
      cursor:pointer;text-decoration:none;transition:background .2s,transform .15s;white-space:nowrap;
    }
    .nav-cta:hover{background:var(--primary-d);transform:translateY(-1px)}

    /* ─── HERO ──────────────────────────────────────── */
    .hero{
      display:flex;align-items:center;
      padding:65px 5% 10px;
      background:linear-gradient(150deg,#fff5f0 0%,#fff9f7 45%,#fff0ea 100%);
      position:relative;overflow:hidden;
    }
    .hero::before{
      content:'';position:absolute;top:-100px;right:-100px;
      width:480px;height:480px;border-radius:50%;
      background:radial-gradient(circle,rgba(245,165,140,0.25) 0%,transparent 70%);
      pointer-events:none;
    }
    .hero::after{
      content:'';position:absolute;bottom:-60px;left:-60px;
      width:320px;height:320px;border-radius:50%;
      background:radial-gradient(circle,rgba(107,63,191,0.12) 0%,transparent 70%);
      pointer-events:none;
    }

    /* floating dots */
    .fdot{position:absolute;border-radius:50%;animation:fdot 7s ease-in-out infinite;pointer-events:none}
    .fdot:nth-child(1){width:14px;height:14px;background:rgba(107,63,191,0.18);top:18%;left:7%;animation-delay:0s}
    .fdot:nth-child(2){width:9px;height:9px;background:rgba(245,165,140,0.4);top:32%;left:86%;animation-delay:1.8s}
    .fdot:nth-child(3){width:18px;height:18px;background:rgba(107,63,191,0.1);top:68%;left:6%;animation-delay:3.2s}
    .fdot:nth-child(4){width:11px;height:11px;background:rgba(245,165,140,0.3);top:78%;left:78%;animation-delay:2.1s}
    .fdot:nth-child(5){width:7px;height:7px;background:rgba(107,63,191,0.25);top:22%;left:54%;animation-delay:4s}
    @keyframes fdot{0%,100%{transform:translateY(0) scale(1)}50%{transform:translateY(-16px) scale(1.1)}}

    .hero-inner{
      display:grid;grid-template-columns:1fr 1fr;
      align-items:center;gap:40px;max-width:1200px;margin:0 auto;width:100%;
      position:relative;z-index:1;
    }

    .hero-tag{
      display:inline-flex;align-items:center;gap:7px;
      background:rgba(107,63,191,0.1);border:1px solid rgba(107,63,191,0.2);
      color:var(--primary);border-radius:50px;padding:6px 14px;
      font-size:0.8rem;font-weight:700;letter-spacing:0.5px;
      text-transform:uppercase;margin-bottom:14px;
    }
    h1.hero-headline{
      font-size:clamp(2.2rem,4.5vw,3.1rem);
      line-height:1.1;color:var(--dark);margin-bottom:10px;font-weight:800;
    }
    h1.hero-headline em{color:var(--primary);font-style:normal}
    .hero-sub{
      font-size:1rem;line-height:1.6;color:var(--mid);
      max-width:440px;margin-bottom:14px;
    }

    .store-buttons{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:14px}
    .store-btn{
      display:flex;align-items:center;gap:12px;
      background:var(--dark);color:#fff;text-decoration:none;
      border-radius:14px;padding:12px 20px;
      transition:transform .2s,box-shadow .2s;
    }
    .store-btn:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(30,16,53,0.25)}
    .store-btn.google-btn{background:linear-gradient(135deg,var(--primary),var(--primary-d))}
    .store-btn.apple-btn{background:var(--dark)}
    .store-btn svg,.store-btn img{flex-shrink:0}
    .store-btn-label small{font-size:0.68rem;opacity:0.75;display:block;line-height:1}
    .store-btn-label strong{font-size:0.95rem;line-height:1.3}

    /* ─── BRAND LOGOS ───────────────────────────────── */
    /* fixed height + auto width preserves each logo's real aspect ratio
       instead of forcing every icon into the same square box */
    .store-icon{height:26px;width:auto;object-fit:contain;flex-shrink:0}
    .badge-icon{height:18px;width:auto;object-fit:contain;flex-shrink:0}
    /* the Apple mark ships as a white glyph on a black square; screen-blending
       it onto the already-dark pill/badge behind it makes the black square
       disappear, leaving just the white glyph */
    .apple-icon{mix-blend-mode:screen}

    .hero-trust{display:flex;align-items:center;gap:12px;font-size:0.82rem;color:var(--light-txt);font-weight:600}
    .trust-faces{display:flex}
    .tf{
      width:30px;height:30px;border-radius:50%;border:2px solid #fff;
      display:flex;align-items:center;justify-content:center;font-size:14px;
    }
    .tf:not(:first-child){margin-left:-6px}
    .tf1{background:#E8D8FF}.tf2{background:#FFD8C8}.tf3{background:#D8E8FF}

    /* ─── HERO QR BLOCK ──────────────────────────────── */
    .hero-qr-block{margin-bottom:10px}
    .hero-qr-card{
      display:inline-flex;align-items:center;gap:0;
      background:#fff;border-radius:12px;
      border:1.5px solid var(--primary-l);
      box-shadow:0 6px 24px rgba(245,165,140,0.15);
      padding:8px;
    }
    .hero-qr-col{display:flex;flex-direction:column;align-items:center;gap:8px}
    .hero-qr-wrap{
      border-radius:8px;overflow:hidden;
      border:1.5px solid var(--primary-l);
      line-height:0;
    }
    .hero-qr-wrap img{display:block}
    .hero-qr-store-name{
      display:flex;align-items:center;gap:4px;
      font-size:0.72rem;font-weight:800;color:var(--dark);
    }
    .hero-qr-divider{
      width:1px;height:100px;
      background:linear-gradient(to bottom,transparent,var(--primary-l),transparent);
      flex-shrink:0;
    }
    .hero-qr-label{
      font-size:0.8rem;font-weight:700;color:var(--mid);
      margin-top:10px;letter-spacing:0.1px;
    }
    /* Only show on desktop — hide on mobile/touch */
    @media(max-width:900px){.hero-qr-block{display:none}}
    @media(hover:none) and (pointer:coarse){.hero-qr-block{display:none}}

    /* ─── PHONE MOCKUPS ─────────────────────────────── */
    .hero-visual{display:flex;justify-content:center;align-items:center;position:relative}
    .phones-wrap{position:relative;display:flex;align-items:flex-end;gap:-20px}

    .phone-device{
      border-radius:40px;
      background:linear-gradient(145deg,#2a1a4e,#1a0e35);
      padding:9px;
      box-shadow:0 36px 72px rgba(30,16,53,0.35),0 0 0 1px rgba(255,255,255,0.07);
    }
    .phone-device.phone-back{
      width:210px;transform:rotate(-6deg) translateX(30px) translateY(10px);
      opacity:0.88;
      animation:bob2 6s ease-in-out infinite;
    }
    .phone-device.phone-front{
      width:230px;transform:rotate(3deg);
      animation:bob1 5s ease-in-out infinite;
      z-index:2;position:relative;
    }
    @keyframes bob1{0%,100%{transform:rotate(3deg) translateY(0)}50%{transform:rotate(3deg) translateY(-14px)}}
    @keyframes bob2{0%,100%{transform:rotate(-6deg) translateX(30px) translateY(10px)}50%{transform:rotate(-6deg) translateX(30px) translateY(-4px)}}

    .phone-screen{
      border-radius:32px;overflow:hidden;
      background:#fff;
      position:relative; /* anchors the camera-cutout pseudo-elements below */
      aspect-ratio:9/19.5; /* fixes the frame's shape so it no longer resizes
        to match whatever screenshot is dropped in — any image now gets
        cropped to fill it instead */
    }
    .phone-screen img{width:100%;height:100%;object-fit:cover;display:block}

    /* ─── DEVICE MOCKUP STYLING (CSS-only, no product photos) ──────
       Each frame is styled with its device's signature camera detail
       instead of a real product photo, since Apple/Samsung marketing
       images are copyrighted and can't be redistributed here. */

    /* iPhone 17 — black frame + centered Dynamic Island */
    .phone-device.phone-iphone{
      background:linear-gradient(145deg,#3a3a3c,#0a0a0a);
      border-radius:54px;
      padding: 5px;
    }
    .phone-device.phone-iphone .phone-screen{border-radius:50px}
    .phone-device.phone-iphone .phone-screen::before{
      content:'';position:absolute;
      top:12px;left:50%;transform:translateX(-50%);
      width:25%;height:13px;background:#0a0a0a;
      border-radius:20px;z-index:5;
    }

    /* Samsung Galaxy S24 — graphite frame, tighter corners + punch-hole camera */
    .phone-device.phone-samsung{
      background:linear-gradient(145deg,#3d3d40,#1b1b1d);
      border-radius:32px;
      padding: 5px;
    }
    .phone-device.phone-samsung .phone-screen{border-radius:25px}
    .phone-device.phone-samsung .phone-screen::before{
      content:'';position:absolute;
      top:11px;left:50%;transform:translateX(-50%);
      width:10px;height:10px;background:#0a0a0a;
      border:1.5px solid rgba(255,255,255,0.08);
      border-radius:50%;z-index:5;
    }

    .float-badge{
      position:absolute;background:#fff;border-radius:14px;
      box-shadow:0 8px 24px rgba(107,63,191,0.15);
      padding:10px 14px;display:flex;align-items:center;gap:9px;
      font-size:0.75rem;font-weight:700;color:var(--dark);white-space:nowrap;
      /* keep the badge above the phone mockups (z-index:2) — without this,
         the Sinhala/Tamil labels (wider than the English text) get partly
         tucked behind the phone image */
      z-index:4;
    }
    .fb-left{left:-70px;top:28%;animation:bob1 5s ease-in-out infinite 0.8s}
    /* was right:-70px, which pushed this badge past the viewport edge (and got
       clipped by body{overflow-x:hidden}) on common laptop widths like
       1280–1440px — pulled it back in so "Next vaccine" stays fully visible */
    .fb-right{right:-16px;bottom:22%;animation:bob2 6s ease-in-out infinite 2s}
    .fb-icon{
      width:30px;height:30px;border-radius:8px;
      display:flex;align-items:center;justify-content:center;font-size:16px;
    }
    .fbi-p{background:var(--primary-l)}
    .fbi-o{background:var(--sec-l)}

    /* ─── SECTION SHARED ────────────────────────────── */
    .section-label{
      text-align:center;font-size:0.78rem;font-weight:700;letter-spacing:1px;
      text-transform:uppercase;color:var(--primary);margin-bottom:10px;
    }
    .section-title{
      font-size:clamp(1.8rem,3vw,2.5rem);font-weight:800;
      text-align:center;color:var(--dark);margin-bottom:14px;line-height:1.2;
    }
    .section-sub{
      text-align:center;color:var(--mid);font-size:1rem;max-width:520px;
      margin:0 auto 32px;line-height:1.6;
    }

    /* ─── FEATURES ──────────────────────────────────── */
    .features{padding:20px 5% 10px;background:#fff}
    .features-grid{
      display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
      gap:18px;max-width:1100px;margin:0 auto;
    }
    .feature-card{
      background:var(--off-white);border:1.5px solid var(--primary-l);
      border-radius:var(--radius);padding:22px 20px;
      transition:transform .25s,box-shadow .25s,border-color .25s;
    }
    .feature-card:hover{
      transform:translateY(-5px);
      box-shadow:0 16px 40px rgba(245,165,140,0.2);border-color:var(--primary);
    }
    .feature-icon{
      width:52px;height:52px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      font-size:24px;margin-bottom:14px;
    }
    .fi-p{background:var(--primary-l)}
    .fi-o{background:var(--sec-l)}
    .fi-g{background:rgba(100,200,140,0.15)}
    .fi-b{background:rgba(100,160,240,0.12)}
    .feature-title{font-size:1rem;font-weight:800;color:var(--dark);margin-bottom:7px}
    .feature-desc{font-size:0.87rem;color:var(--mid);line-height:1.62}


    /* ─── TOOLS ─────────────────────────────────────── */
    .tools-section{padding:90px 5%;background:#fff}
    .tools-inner{max-width:1100px;margin:0 auto}
    .tools-grid{
      display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
      gap:18px;margin-top:0;
    }
    .tool-card{
      background:var(--off-white);border:1.5px solid var(--primary-l);
      border-radius:var(--radius);padding:22px 20px;
      display:flex;flex-direction:column;gap:10px;
      transition:transform .22s,box-shadow .22s,border-color .22s;
      position:relative;
    }
    .tool-card:hover{
      transform:translateY(-5px);
      box-shadow:0 14px 36px rgba(245,165,140,0.22);
      border-color:var(--primary);
    }
    .tool-icon{
      width:50px;height:50px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;font-size:24px;
    }
    .ti-1{background:linear-gradient(135deg,#FDE8E0,#FBC4B0)}
    .ti-2{background:linear-gradient(135deg,#FDE8E0,#FBC4B0)}
    .ti-3{background:linear-gradient(135deg,#FDE8E0,#FBC4B0)}
    .ti-4{background:linear-gradient(135deg,var(--sec-l),#D8CCFF)}
    .ti-5{background:linear-gradient(135deg,#FDE8E0,#FBC4B0)}
    .ti-6{background:linear-gradient(135deg,#FDE8E0,#FBC4B0)}
    .ti-7{background:linear-gradient(135deg,var(--sec-l),#D8CCFF)}
    .ti-8{background:linear-gradient(135deg,#FDE8E0,#FBC4B0)}
    .tool-body{flex:1}
    .tool-title{font-size:0.98rem;font-weight:800;color:var(--dark);margin-bottom:6px}
    .tool-desc{font-size:0.85rem;color:var(--mid);line-height:1.6}
    .tool-tag{
      display:inline-flex;align-self:flex-start;
      padding:3px 10px;border-radius:50px;
      font-size:0.72rem;font-weight:700;letter-spacing:0.3px;
    }
    .pregnancy-tag{background:rgba(245,165,140,0.18);color:var(--primary-d)}
    .baby-tag{background:var(--sec-l);color:var(--secondary)}
    .planning-tag{background:rgba(100,200,140,0.15);color:#2E8A5A}

    /* ─── REVIEWS ───────────────────────────────────── */
    .reviews{padding:10px 5%;background:var(--primary-l)}
    .reviews-inner{max-width:1100px;margin:0 auto}
    .reviews-columns{display:grid;grid-template-columns:1fr 1fr;gap:28px;margin-top:28px}
    .reviews-store-header{display:flex;align-items:center;gap:12px;margin-bottom:18px}
    .store-badge{
      display:flex;align-items:center;gap:9px;
      border-radius:12px;padding:9px 16px;
      font-size:0.82rem;font-weight:700;color:#fff;
    }
    .sb-google{background:#1a73e8}
    .sb-apple{background:#1c1c1e}
    .rating-wrap{display:flex;align-items:baseline;gap:5px}
    .rating-num{font-size:1.55rem;font-weight:800;color:var(--dark)}
    .rating-stars{font-size:0.9rem;color:#F5A200;letter-spacing:1px}
    .rating-count{font-size:0.74rem;color:var(--light-txt)}

    .review-card{
      background:#fff;border:1.5px solid var(--primary-l);
      border-radius:var(--radius);padding:18px 20px;
      margin-bottom:10px;transition:box-shadow .2s;
    }
    .review-card:hover{box-shadow:0 8px 24px rgba(245,165,140,0.18)}
    .review-top{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:10px}
    .review-author{display:flex;align-items:center;gap:10px}
    .r-avatar{
      width:36px;height:36px;border-radius:50%;
      display:flex;align-items:center;justify-content:center;
      font-size:15px;font-weight:800;color:#fff;flex-shrink:0;
    }
    .ra1{background:linear-gradient(135deg,var(--secondary),var(--primary-m))}
    .ra2{background:linear-gradient(135deg,#7CB9E8,#4C88C5)}
    .ra3{background:linear-gradient(135deg,#88D8A0,#3BAA69)}
    .ra4{background:linear-gradient(135deg,var(--primary),var(--primary-d))}
    .ra5{background:linear-gradient(135deg,#C4A0E8,#7055C5)}
    .ra6{background:linear-gradient(135deg,#F9C85D,#E07B20)}
    .r-name{font-weight:800;font-size:0.88rem;color:var(--dark)}
    .r-date{font-size:0.71rem;color:var(--light-txt);margin-top:1px}
    .r-stars{font-size:0.82rem;color:#F5A200;letter-spacing:1px;flex-shrink:0}
    .r-title{font-weight:800;font-size:0.9rem;color:var(--dark);margin-bottom:5px}
    .r-body{font-size:0.85rem;color:var(--mid);line-height:1.62}
    .reviews-note{
      text-align:center;margin-top:18px;font-size:0.8rem;color:var(--light-txt);
      background:rgba(245,165,140,0.06);border:1px dashed rgba(245,165,140,0.3);
      border-radius:10px;padding:10px 16px;
    }

    /* ─── DOWNLOAD ──────────────────────────────────── */
    .download{
      padding:20px 5% 10px;
      background:linear-gradient(135deg,#fff0ea 0%,#ffeee8 100%);
      position:relative;overflow:hidden;text-align:center;
    }
    .download::before{
      content:'';position:absolute;right:-80px;top:50%;transform:translateY(-50%);
      width:340px;height:340px;border-radius:50%;
      background:radial-gradient(circle,rgba(107,63,191,0.08) 0%,transparent 70%);
      pointer-events:none;
    }
    .download-inner{max-width:680px;margin:0 auto;position:relative;z-index:1}
    .download-title{
      font-size:clamp(2rem,4vw,3rem);font-weight:800;
      color:var(--dark);margin-bottom:12px;line-height:1.2;
    }
    .download-title em{color:var(--primary);font-style:normal}
    .download-sub{color:var(--mid);font-size:1rem;line-height:1.6;margin-bottom:24px}
    .download-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;margin-bottom:16px;position:relative;z-index:10}
    .dl-btn{
      display:flex;align-items:center;gap:14px;
      color:#fff;text-decoration:none;
      border-radius:16px;padding:16px 26px;
      transition:transform .2s,box-shadow .2s;
    }
    .dl-btn:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(30,16,53,0.25)}
    .dl-btn.db-google{background:linear-gradient(135deg,var(--primary),var(--primary-d))}
    .dl-btn.db-apple{background:var(--dark)}
    .dl-btn svg{flex-shrink:0;width:28px;height:28px}
    .dl-btn-text small{font-size:0.72rem;opacity:0.8;display:block}
    .dl-btn-text strong{font-size:1rem}
    .dl-note{font-size:0.82rem;color:var(--light-txt)}

    /* ─── QR POPUPS ──────────────────────────────────── */
    .dl-btn-wrap{position:relative;display:inline-flex;flex-direction:column;align-items:center}
    .qr-hint{display:flex;align-items:center;margin-left:6px;opacity:0.7;transition:opacity .2s;flex-shrink:0}
    .dl-btn-wrap:hover .qr-hint{opacity:1}
    .qr-popup{
      position:absolute;bottom:calc(100% + 14px);left:50%;transform:translateX(-50%) translateY(6px);
      background:#fff;border-radius:18px;
      box-shadow:0 20px 50px rgba(45,16,32,0.18),0 0 0 1.5px rgba(245,165,140,0.25);
      padding:18px;display:flex;flex-direction:column;align-items:center;gap:10px;
      opacity:0;pointer-events:none;
      transition:opacity .22s ease,transform .22s ease;
      z-index:200;width:184px;
    }
    .qr-popup::after{
      content:'';position:absolute;top:100%;left:50%;transform:translateX(-50%);
      border:8px solid transparent;border-top-color:#fff;
      filter:drop-shadow(0 2px 2px rgba(45,16,32,0.06));
    }
    .dl-btn-wrap:hover .qr-popup{opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0)}
    .qr-popup-label{font-size:0.72rem;font-weight:700;color:var(--mid);text-transform:uppercase;letter-spacing:0.5px;text-align:center}
    .qr-box{border-radius:10px;overflow:hidden;border:2px solid var(--primary-l);line-height:0}
    .qr-box img{display:block}
    .qr-store-label{display:flex;align-items:center;gap:5px;font-size:0.75rem;font-weight:700;color:var(--dark)}
    .qr-desktop-hint{display:none;font-style:italic}
    @media(hover:hover) and (pointer:fine){.qr-desktop-hint{display:inline}}
    @media(hover:none){.qr-popup{display:none}.qr-hint{display:none}}

    /* ─── FOOTER ────────────────────────────────────── */
    footer{
      background:var(--dark);color:rgba(255,255,255,0.65);
      padding:36px 5% 20px;
    }
    .footer-inner{
      max-width:1100px;margin:0 auto;
      display:grid;grid-template-columns:2fr 1fr 1fr;gap:30px;
      padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,0.08);
    }
    .footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:10px}
    .footer-logo img{height:30px;width:auto}
    .footer-desc{font-size:0.87rem;line-height:1.6;max-width:280px}
    .footer-col-title{color:#fff;font-weight:800;margin-bottom:10px;font-size:0.9rem}
    .footer-col ul{list-style:none;display:flex;flex-direction:column;gap:8px}
    .footer-col ul a{color:rgba(255,255,255,0.6);text-decoration:none;font-size:0.86rem;transition:color .2s}
    .footer-col ul a:hover{color:var(--primary-l)}
    .footer-bottom{
      max-width:1100px;margin:14px auto 0;
      display:flex;justify-content:space-between;align-items:center;
      flex-wrap:wrap;gap:10px;font-size:0.79rem;color:rgba(255,255,255,0.35);
    }
    .footer-bottom a{color:rgba(255,255,255,0.45);text-decoration:none}
    .footer-bottom a:hover{color:var(--primary-l)}

    /* ─── RESPONSIVE ────────────────────────────────── */
    @media(max-width:900px){
      .hero-inner{grid-template-columns:1fr;text-align:center;gap:28px}
      .hero-sub{max-width:100%}
      .store-buttons{justify-content:center}
      .hero-trust{justify-content:center}
      .fb-left,.fb-right{display:none}

      /* ── Mobile hero order ──────────────────────────
         Title/subtext first, then the phone mockups, then the download
         buttons and trust line below the mockups. `hero-content` is just
         a grouping wrapper around those pieces — display:contents removes
         its box so its children become direct, independently-orderable
         items of hero-inner's grid, alongside hero-visual (the mockups). */
      .hero-content{display:contents}
      h1.hero-headline{order:1}
      .hero-sub{order:2}
      .hero-visual{order:3}
      .store-buttons{order:4}
      .hero-qr-block{order:5}
      .hero-trust{order:6}
      .footer-inner{grid-template-columns:1fr}
      .reviews-columns{grid-template-columns:1fr}

      /* ── Mobile header ──────────────────────────────
         Logo + nav links + language switcher + the download button don't
         fit on one row on a phone. Instead of hiding any of it, wrap the
         header onto three rows: [logo | language switcher] on top, the
         page links centered underneath, and the download button centered
         on its own row below that. `nav-right` is just a grouping wrapper
         around the language switcher + button — display:contents removes
         its box so both become direct, independently-orderable children
         of nav's flex layout. */
      nav{flex-wrap:wrap;row-gap:10px;padding:10px 4%}
      .nav-right{display:contents}
      .nav-logo{order:1}
      .lang-switcher{order:2}
      .nav-links{
        order:3;flex-basis:100%;
        justify-content:center;gap:20px;
      }
      .nav-cta{
        order:4;
        /* fixed box so the button is the same size in every language,
           instead of stretching to fit each translation's text length */
        width:210px;flex:0 0 auto;margin:0 auto;
        min-height:38px;box-sizing:border-box;
        display:flex;align-items:center;justify-content:center;
        text-align:center;white-space:normal;line-height:1.15;
        padding:8px 14px;font-size:0.78rem;
      }
      /* nav is now taller (3 rows) than the single-row height the hero's
         fixed padding-top was written for — grow it to match so the hero
         heading isn't tucked under the fixed header. */
      .hero{padding-top:150px}
    }
    /* Below ~380px, tighten spacing further so nothing feels cramped. */
    @media(max-width:380px){
      nav{padding:10px 3%}
      .nav-logo img{height:28px}
      .lang-switcher{gap:3px;padding:3px 4px}
      .lang-btn{padding:5px 8px;font-size:0.74rem}
      .nav-links{gap:14px}
      .nav-links a{font-size:0.8rem}
      .nav-cta{width:190px;font-size:0.72rem}
      .hero{padding-top:160px}
    }
    @media(max-width:500px){
      .phone-device.phone-back{width:160px}
      .phone-device.phone-front{width:180px}
    }

    /* Sinhala / Tamil font overrides */
    [data-lang="si"] body,[data-lang="si"] .hero-sub,[data-lang="si"] .feature-desc,
    [data-lang="si"] .section-sub,[data-lang="si"] .r-body,[data-lang="si"] .download-sub{
      font-family:'Noto Sans Sinhala','Nunito',sans-serif;
      line-height:1.85;
    }
    [data-lang="ta"] body,[data-lang="ta"] .hero-sub,[data-lang="ta"] .feature-desc,
    [data-lang="ta"] .section-sub,[data-lang="ta"] .r-body,[data-lang="ta"] .download-sub{
      font-family:'Noto Sans Tamil','Nunito',sans-serif;
      line-height:1.85;
    }
    /* Sinhala/Tamil vowel signs & conjuncts sit taller than Latin glyphs and
       get clipped by the tight 1.1–1.2 line-heights used on headings — loosen
       those specifically for these two languages */
    [data-lang="si"] h1,[data-lang="si"] h2,[data-lang="si"] .feature-title,
    [data-lang="si"] .tool-title,[data-lang="si"] .r-title,
    [data-lang="ta"] h1,[data-lang="ta"] h2,[data-lang="ta"] .feature-title,
    [data-lang="ta"] .tool-title,[data-lang="ta"] .r-title{
      line-height:1.5;
    }
    /* Sinhala and Tamil script render noticeably wider/heavier than Latin at
       the same font-size, which was pushing the hero title too big and out
       of proportion with the rest of the section on mobile — scale both
       down the same way (Tamil was missing this and stayed at the larger
       Latin/English size, which is what threw off the alignment of the
       hero section in Tamil specifically). */
    [data-lang="si"] h1.hero-headline,
    [data-lang="ta"] h1.hero-headline{
      font-size:clamp(1.7rem,3.6vw,2.4rem);
    }

    /* sinhala */
@font-face {
  font-family: 'Noto Sans Sinhala';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanssinhala/v36/yMJ7MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-t19Pqq4-E.woff2) format('woff2');
  unicode-range: U+0964-0965, U+0D81-0DF4, U+1CF2, U+200C-200D, U+25CC, U+111E1-111F4;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans Sinhala';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanssinhala/v36/yMJ7MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-t15_qq4-E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans Sinhala';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanssinhala/v36/yMJ7MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-t16fqq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* sinhala */
@font-face {
  font-family: 'Noto Sans Sinhala';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanssinhala/v36/yMJ7MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-t19Pqq4-E.woff2) format('woff2');
  unicode-range: U+0964-0965, U+0D81-0DF4, U+1CF2, U+200C-200D, U+25CC, U+111E1-111F4;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans Sinhala';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanssinhala/v36/yMJ7MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-t15_qq4-E.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans Sinhala';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanssinhala/v36/yMJ7MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-t16fqq.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* tamil */
@font-face {
  font-family: 'Noto Sans Tamil';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanstamil/v31/ieVp2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-048cFpwEFI.woff2) format('woff2');
  unicode-range: U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans Tamil';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanstamil/v31/ieVp2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-048dlpwEFI.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans Tamil';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanstamil/v31/ieVp2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-048ddpwA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* tamil */
@font-face {
  font-family: 'Noto Sans Tamil';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanstamil/v31/ieVp2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-048cFpwEFI.woff2) format('woff2');
  unicode-range: U+0964-0965, U+0B82-0BFA, U+200C-200D, U+20B9, U+25CC;
}
/* latin-ext */
@font-face {
  font-family: 'Noto Sans Tamil';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanstamil/v31/ieVp2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-048dlpwEFI.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Noto Sans Tamil';
  font-style: normal;
  font-weight: 700;
  font-stretch: 100%;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/notosanstamil/v31/ieVp2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-048ddpwA.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOOaBXso.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIMeaBXso.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIOuaBXso.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofIO-aBXso.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/nunito/v32/XRXV3I6Li01BKofINeaB.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}