/* ===========================================================
   Yoga Neram — Design tokens & base styles
   Warm, rounded, high-contrast, mobile-first (35+ friendly)
   =========================================================== */

:root{
  /* Brand */
  --blue:        #0159E3;   /* logo primary */
  --blue-600:    #0b4fc4;
  --blue-700:    #0a3f9e;
  --navy:        #0a2540;   /* dark sections / headings */
  --navy-soft:   #12345c;
  --pink:        #FF5F7E;   /* logo secondary */
  --pink-600:    #f0476a;

  /* Tints */
  --blue-tint:   #eaf1fe;
  --blue-tint-2: #f3f7ff;
  --pink-tint:   #fff0f3;
  --pink-tint-2: #fff6f8;
  --mint-tint:   #eafaf2;
  --amber-tint:  #fff6e6;
  --violet-tint: #f1edff;

  /* Neutrals */
  --bg:          #ffffff;
  --bg-soft:     #f7f9fc;
  --ink:         #0c2238;   /* body text — very high contrast */
  --ink-2:       #466079;   /* muted */
  --line:        #e6ecf3;

  /* Type */
  --display: "Anek Tamil", "Baloo Thambi 2", "Mukta Malar", system-ui, sans-serif;
  --display-hero: "Anek Tamil", "Baloo Thambi 2", "Mukta Malar", system-ui, sans-serif;
  --body:    "Catamaran", "Mukta Malar", system-ui, sans-serif;

  /* Radii / shadow */
  --r-sm: 14px;
  --r:    20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --shadow:    0 10px 30px -12px rgba(10,37,64,.18);
  --shadow-lg: 0 24px 60px -20px rgba(10,37,64,.28);
  --shadow-pink: 0 14px 30px -10px rgba(255,95,126,.45);
  --shadow-blue: 0 14px 30px -10px rgba(1,89,227,.40);

  /* Layout */
  --maxw: 460px;          /* mobile-first content column */
  --pad: 22px;
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  font-family:var(--body);
  background:var(--bg);
  color:var(--ink);
  font-size:18px;
  line-height:1.6;
  font-weight:500;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
a{ color:inherit; text-decoration:none; }

/* App shell — centered mobile column on large screens */
#root{ width:100%; }
.app{
  width:100%;
  max-width:520px;
  margin:0 auto;
  background:var(--bg);
  position:relative;
  min-height:100vh;
  box-shadow:0 0 80px -30px rgba(10,37,64,.25);
}
.wrap{ padding-left:var(--pad); padding-right:var(--pad); }

/* Typography helpers */
.eyebrow{
  font-family:var(--display);
  font-weight:700;
  font-size:15px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:var(--pink-600);
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.h-display{
  font-family:var(--display-hero);
  font-weight:800;
  line-height:1.08;
  color:var(--navy);
  letter-spacing:-.01em;
  text-wrap:balance;
}
.section-title{
  font-family:var(--display-hero);
  font-weight:800;
  font-size:30px;
  line-height:1.12;
  color:var(--navy);
  text-wrap:balance;
}
.lead{
  font-size:18.5px;
  color:var(--ink-2);
  line-height:1.62;
  font-weight:500;
}
.tamil .lead, .tamil .section-title, .tamil .h-display{ line-height:1.32; }
.tamil body, body.tamil{ }

/* Buttons — large touch targets (>=56px) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:60px;
  padding:0 30px;
  border-radius:999px;
  font-family:var(--display);
  font-weight:700;
  font-size:20px;
  line-height:1;
  transition:transform .15s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color:transparent;
}
.btn:active{ transform:translateY(1px) scale(.99); }
.btn-primary{
  background:linear-gradient(120deg,var(--blue) 0%, #2f7bff 55%, var(--pink) 165%);
  color:#fff;
  box-shadow:var(--shadow-blue);
}
.btn-primary:hover{ box-shadow:0 18px 38px -10px rgba(1,89,227,.55); }
.btn-pink{
  background:linear-gradient(120deg,var(--pink) 0%, #ff7d96 100%);
  color:#fff;
  box-shadow:var(--shadow-pink);
}
.btn-white{ background:#fff; color:var(--blue); box-shadow:var(--shadow); }
.btn-block{ width:100%; }
.btn .arrow{ transition:transform .2s ease; }
.btn:hover .arrow{ transform:translateX(4px); }

/* Section rhythm */
section{ position:relative; }
.sec-pad{ padding-top:54px; padding-bottom:54px; }

/* Pills / chips */
.chip{
  display:inline-flex; align-items:center; gap:7px;
  background:var(--blue-tint); color:var(--blue-700);
  font-weight:700; font-size:14px;
  padding:8px 14px; border-radius:999px;
  font-family:var(--display);
}

/* Cards */
.card{ background:#fff; border:1.5px solid var(--line); border-radius:var(--r); }

/* Reveal on scroll */
.reveal{ opacity:0; transform:translateY(22px); transition:opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
}

/* Placeholder imagery (striped) */
.ph{
  position:relative;
  background:
    repeating-linear-gradient(135deg, rgba(1,89,227,.08) 0 12px, rgba(1,89,227,.04) 12px 24px),
    var(--blue-tint-2);
  border:1.5px dashed rgba(1,89,227,.28);
  border-radius:var(--r);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.ph.pink{
  background:
    repeating-linear-gradient(135deg, rgba(255,95,126,.10) 0 12px, rgba(255,95,126,.05) 12px 24px),
    var(--pink-tint-2);
  border-color:rgba(255,95,126,.32);
}
.ph .ph-label{
  font-family:ui-monospace, "SF Mono", Menlo, monospace;
  font-size:12px; letter-spacing:.02em;
  color:var(--ink-2); text-align:center; padding:10px 14px;
  background:rgba(255,255,255,.7); border-radius:10px;
  backdrop-filter:blur(2px);
}

/* Star rating */
.stars{ display:inline-flex; gap:2px; color:#ffb400; }
.stars svg{ width:18px; height:18px; }

/* Utility */
.center{ text-align:center; }
.muted{ color:var(--ink-2); }
.nowrap{ white-space:nowrap; }
hr.soft{ border:none; border-top:1.5px solid var(--line); }

/* keep Tamil/Latin numerals tidy */
.tnum{ font-variant-numeric:tabular-nums; }

/* ---- Lite YouTube facade ---- */
.lyt{
  position:relative; width:100%; height:0;
  border-radius:var(--r); overflow:hidden;
  background:var(--navy);
  box-shadow:var(--shadow);
}
.lyt-frame, .lyt-btn{
  position:absolute; inset:0; width:100%; height:100%;
  border:none; display:block;
}
.lyt-btn{ cursor:pointer; padding:0; background:none; }
.lyt-thumb{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.lyt-shade{ position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,37,64,.05), rgba(10,37,64,.35)); }
.lyt-play{
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  width:72px; height:72px; border-radius:50%;
  background:rgba(255,255,255,.94); color:var(--pink-600);
  display:flex; align-items:center; justify-content:center;
  padding-left:5px;
  box-shadow:0 10px 28px -8px rgba(10,37,64,.55);
  transition:transform .18s ease, background .18s ease;
}
.lyt-btn:hover .lyt-play{ transform:translate(-50%,-50%) scale(1.08); background:#fff; }
.lyt-dur{
  position:absolute; right:10px; bottom:10px;
  background:rgba(10,37,64,.85); color:#fff;
  font-family:var(--display); font-weight:700; font-size:13px;
  padding:4px 10px; border-radius:8px;
}
.lyt-badge{
  position:absolute; left:10px; top:10px;
  background:var(--pink); color:#fff;
  font-family:var(--display); font-weight:700; font-size:13px;
  padding:5px 12px; border-radius:999px;
  box-shadow:var(--shadow-pink);
}

/* tint fills for placeholders / icon tiles */
.ph-fill.blue{   background:linear-gradient(135deg,#dceafe,#bcd6fb); }
.ph-fill.pink{   background:linear-gradient(135deg,#ffe1e8,#ffc6d3); }
.ph-fill.mint{   background:linear-gradient(135deg,#d7f5e6,#b6ecd0); }
.ph-fill.violet{ background:linear-gradient(135deg,#e7e0ff,#d2c6ff); }
.ph-fill.amber{  background:linear-gradient(135deg,#ffeecb,#ffe0a3); }

.tile{ display:flex; align-items:center; justify-content:center; border-radius:16px; flex:0 0 auto; }
.tile.blue{   background:var(--blue-tint);   color:var(--blue); }
.tile.pink{   background:var(--pink-tint);   color:var(--pink-600); }
.tile.mint{   background:var(--mint-tint);   color:#1f8a5b; }
.tile.violet{ background:var(--violet-tint); color:#6a4cff; }
.tile.amber{  background:var(--amber-tint);  color:#cc8400; }

/* ============================ HEADER ============================ */
.hdr{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1.5px solid var(--line);
}
.hdr-row{ height:66px; display:flex; align-items:center; justify-content:space-between; }
.hdr-logo img{ height:34px; width:auto; }
.hdr-right{ display:flex; align-items:center; gap:12px; }
.langseg{
  display:flex; background:var(--blue-tint); border-radius:999px; padding:4px;
  font-family:var(--display); font-weight:700;
}
.langseg button{
  border-radius:999px; padding:8px 14px; font-size:15px; line-height:1;
  color:var(--blue-700); min-height:38px; transition:all .18s ease;
}
.langseg button.on{ background:var(--blue); color:#fff; box-shadow:0 4px 10px -3px rgba(1,89,227,.5); }
.hamb{ width:46px; height:46px; display:flex; flex-direction:column; gap:5px; align-items:center; justify-content:center; border-radius:12px; background:var(--bg-soft); }
.hamb span{ width:22px; height:2.5px; background:var(--navy); border-radius:2px; transition:transform .25s ease, opacity .2s ease; }
.hamb span.x:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.hamb span.x:nth-child(2){ opacity:0; }
.hamb span.x:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
.hdr-menu{ overflow:hidden; max-height:0; transition:max-height .3s ease; background:#fff; }
.hdr-menu.open{ max-height:420px; border-bottom:1.5px solid var(--line); }
.hdr-menu nav{ display:flex; flex-direction:column; padding:8px var(--pad) 0; }
.hdr-menu nav a{ font-family:var(--display); font-weight:700; font-size:19px; color:var(--navy); padding:15px 0; border-bottom:1.5px solid var(--line); }
.hdr-menu .btn{ margin:18px var(--pad) 22px; width:calc(100% - var(--pad)*2); }

/* ============================ HERO ============================ */
.hero{ position:relative; padding-top:40px; overflow:hidden; background:linear-gradient(180deg,#fbfdff 0%, #fff 60%); }
.hero-inner{ position:relative; z-index:2; }
.blob{ position:absolute; border-radius:50%; filter:blur(8px); z-index:1; opacity:.5; }
.b1{ width:240px; height:240px; background:radial-gradient(circle,#cfe0ff,transparent 70%); top:-60px; right:-70px; }
.b2{ width:200px; height:200px; background:radial-gradient(circle,#ffd2dc,transparent 70%); top:120px; left:-90px; }
.hero-eyebrow{ margin-bottom:14px; }
.dot-pin{ width:9px; height:9px; border-radius:50%; background:var(--pink); box-shadow:0 0 0 4px var(--pink-tint); }
.hero-title{ font-size:42px; margin-bottom:16px; }
.hero-sub{ margin-bottom:26px; max-width:38ch; }
.hero-cta{ font-size:21px; }
.hero-note{ text-align:center; font-size:14.5px; margin-top:12px; }
.trust{ display:flex; align-items:center; gap:14px; margin-top:26px; }
.trust-avs{ display:flex; }
.trust-av{ margin-left:-12px; }
.trust-av:first-child{ margin-left:0; }
.trust-txt{ font-family:var(--display); font-size:16px; font-weight:700; color:var(--ink); line-height:1.32; }
.tamil .trust-txt{ line-height:1.4; }

.hero-photo-wrap{ position:relative; margin-top:10px; }
.hero-photo{ aspect-ratio:4/4.2; border-radius:var(--r-lg); position:relative; z-index:2; }
.lotus{ position:absolute; left:50%; bottom:0; transform:translateX(-50%); width:130%; height:90%; z-index:1; }
.lotus .petal{
  position:absolute; left:50%; bottom:6%;
  width:54px; height:150px; margin-left:-27px;
  background:linear-gradient(180deg,#bcd6fb,#dcebff 90%);
  border-radius:50% 50% 50% 50% / 64% 64% 36% 36%;
  transform-origin:bottom center; opacity:.85;
}

/* hero photo stage — real trainer cutout blooming from a brand lotus */
.hero-stage{
  position:relative; margin-top:0;
  aspect-ratio:1 / 0.96;
  border-radius:34px;
  overflow:hidden;
  background:radial-gradient(circle at 50% 40%, #e7f1ff 0%, #f3f8ff 44%, #ffffff 78%);
}
.hero-disc{
  position:absolute; left:50%; top:7%; transform:translateX(-50%);
  width:76%; aspect-ratio:1/1; border-radius:50%; z-index:1;
  background:radial-gradient(circle, rgba(255,255,255,.92) 0%, rgba(188,214,251,.45) 52%, rgba(188,214,251,0) 73%);
  filter:blur(2px);
}
.hero-lotus{
  position:absolute; left:50%; bottom:9%; transform:translateX(-50%);
  width:122%; height:86%; z-index:1;
}
.hero-lotus .petal{
  position:absolute; left:50%; bottom:0; transform-origin:bottom center;
  border-radius:50% 50% 50% 50% / 60% 60% 40% 40%;
}
.hero-lotus .petal.back{
  width:78px; height:158px; margin-left:-39px;
  background:linear-gradient(180deg,#d8eafc,#eef5ff 92%); opacity:.72;
}
.hero-lotus .petal.front{
  width:62px; height:204px; margin-left:-31px;
  background:linear-gradient(180deg,#a9cdf7,#d0e3fb 94%); opacity:.95;
}
.hero-shadow{
  position:absolute; left:50%; bottom:4%; transform:translateX(-50%);
  width:66%; height:38px; border-radius:50%; z-index:2;
  background:radial-gradient(circle, rgba(10,37,64,.20), rgba(10,37,64,0) 70%);
  filter:blur(7px);
}
.hero-photo-img{
  position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:99%; height:auto; z-index:3;
  filter:drop-shadow(0 18px 24px rgba(10,37,64,.18));
}

/* ============================ STATS ============================ */
.stat-big{
  background:linear-gradient(135deg,var(--blue),#2f7bff); color:#fff;
  border-radius:var(--r-lg); padding:30px 24px; text-align:center;
  box-shadow:var(--shadow-blue); margin-bottom:14px;
}
.stat-num{ font-family:var(--display); font-weight:800; font-size:46px; line-height:1; }
.stat-num.sm{ font-size:34px; color:var(--navy); }
.stat-lab{ font-family:var(--display); font-weight:700; font-size:16px; margin-top:8px; opacity:.95; }
.stat-big .stat-lab{ opacity:.92; }
.stat-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.stat-sm{ border-radius:var(--r); padding:24px 16px; text-align:center; position:relative; }
.stat-sm .stat-lab{ color:var(--ink-2); }
.tint-blue{ background:var(--blue-tint); }
.tint-pink{ background:var(--pink-tint); }
.g-badge{ position:absolute; top:12px; right:12px; width:26px; height:26px; border-radius:7px; background:#fff; color:#4285F4; font-family:var(--display); font-weight:800; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow); }

/* ============================ BENEFITS ============================ */
.ben-stack{ display:flex; flex-direction:column; gap:16px; }
.ben-card{ border-radius:var(--r-lg); padding:24px 22px; }
.ben-card.t-pink{ background:var(--pink-tint); }
.ben-card.t-blue{ background:var(--blue-tint); }
.ben-card.t-mint{ background:var(--mint-tint); }
.ben-head{ display:flex; align-items:center; gap:14px; margin-bottom:16px; }
.ben-title{ font-family:var(--display); font-weight:800; font-size:23px; color:var(--navy); line-height:1.15; }
.ben-list{ list-style:none; display:flex; flex-direction:column; gap:12px; }
.ben-list li{ display:flex; align-items:flex-start; gap:11px; font-size:17.5px; font-weight:600; color:var(--ink); }
.chk{ flex:0 0 auto; width:24px; height:24px; border-radius:50%; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.chk.pink{ background:var(--pink); color:#fff; }
.chk.blue{ background:var(--blue); color:#fff; }
.chk.mint{ background:#1f8a5b; color:#fff; }

/* ============================ VIDEOS ============================ */
.vid-grid{ display:flex; flex-direction:column; gap:22px; }
.vid-card{ }
.vid-meta{ padding:14px 4px 0; }
.vid-name{ font-family:var(--display); font-weight:800; font-size:21px; color:var(--navy); }
.vid-desc{ font-size:16px; margin-top:4px; }
.watch-more{ margin-top:28px; border:2px solid var(--blue); color:var(--blue); }

/* ============================ FEATURES ============================ */
.feat-list{ display:flex; flex-direction:column; gap:14px; }
.feat-row{ display:flex; gap:16px; align-items:flex-start; background:#fff; border:1.5px solid var(--line); border-radius:var(--r); padding:18px; }
.feat-title{ font-family:var(--display); font-weight:800; font-size:20px; color:var(--navy); }
.feat-desc{ font-size:16px; margin-top:4px; }

/* ============================ TRAINER ============================ */
.trainer-pre{ font-family:var(--display); font-weight:700; font-size:18px; color:var(--ink-2); }
.trainer-name{ font-size:34px; color:var(--blue); margin-top:2px; }
.trainer-photo-wrap{ position:relative; }
.b3{ width:260px; height:260px; background:radial-gradient(circle,#ffd2dc,transparent 70%); top:-10px; left:50%; transform:translateX(-50%); opacity:.6; }
.trainer-photo{ aspect-ratio:1/1; border-radius:var(--r-lg); position:relative; z-index:2; }
/* trainer photo stage — real cutout on a soft branded backdrop */
.trainer-stage{
  position:relative; z-index:2;
  aspect-ratio:1/1; border-radius:var(--r-lg); overflow:hidden;
  background:radial-gradient(circle at 50% 40%, #fff1f5 0%, #f3f8ff 54%, #ffffff 84%);
}
.trainer-glow{
  position:absolute; left:50%; top:8%; transform:translateX(-50%);
  width:78%; aspect-ratio:1/1; border-radius:50%; z-index:1;
  background:radial-gradient(circle, rgba(255,255,255,.9) 0%, rgba(255,200,214,.4) 52%, rgba(255,200,214,0) 73%);
  filter:blur(2px);
}
.trainer-shadow{
  position:absolute; left:50%; bottom:4%; transform:translateX(-50%);
  width:66%; height:34px; border-radius:50%; z-index:1;
  background:radial-gradient(circle, rgba(10,37,64,.18), rgba(10,37,64,0) 70%);
  filter:blur(7px);
}
.trainer-photo-img{
  position:absolute; left:50%; bottom:0; transform:translateX(-50%);
  width:94%; height:auto; z-index:2;
  filter:drop-shadow(0 14px 20px rgba(10,37,64,.15));
}
.cred-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:22px; }
.cred{ display:flex; align-items:center; gap:10px; font-weight:600; font-size:15.5px; color:var(--ink); background:var(--bg-soft); border-radius:14px; padding:14px; }
.trainer-quote{ margin-top:22px; font-family:var(--display); font-weight:600; font-size:21px; line-height:1.4; color:var(--navy); padding-left:18px; border-left:5px solid var(--pink); }
.tamil .trainer-quote{ line-height:1.5; }

/* ============================ VIDEO TESTIMONIALS ============================ */
.vt-grid{ display:flex; gap:16px; overflow-x:auto; padding:4px 4px 16px; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; }
.vt-grid::-webkit-scrollbar{ height:6px; }
.vt-grid::-webkit-scrollbar-thumb{ background:var(--line); border-radius:99px; }
.vt-card{ flex:0 0 78%; max-width:300px; scroll-snap-align:center; }
.vt-meta{ display:flex; align-items:center; gap:12px; padding:14px 4px 0; }
.vt-name{ font-family:var(--display); font-weight:700; font-size:17px; color:var(--navy); }
.vt-city{ font-size:14px; }

/* ============================ PHOTO TESTIMONIALS ============================ */
.pt-stack{ display:flex; flex-direction:column; gap:16px; }
.pt-card{ background:#fff; border:1.5px solid var(--line); border-radius:var(--r-lg); padding:22px; box-shadow:var(--shadow); }
.pt-top{ display:flex; align-items:center; gap:16px; }
.pt-photo{ width:76px; height:76px; border-radius:18px; flex:0 0 auto; }
.pt-photo .ph-label{ font-size:9px; padding:4px 6px; }
.pt-name{ font-family:var(--display); font-weight:800; font-size:19px; color:var(--navy); margin-top:6px; }
.pt-city{ font-size:14.5px; }
.pt-ach{ display:inline-block; margin:16px 0 12px; background:var(--mint-tint); color:#1f8a5b; font-family:var(--display); font-weight:700; font-size:14.5px; padding:7px 14px; border-radius:999px; }
.pt-quote{ font-size:17.5px; line-height:1.55; color:var(--ink); }
.tamil .pt-quote{ line-height:1.62; }

/* ============================ GOOGLE REVIEWS ============================ */
.g-summary{ display:flex; flex-direction:column; align-items:center; gap:8px; background:var(--bg-soft); border-radius:var(--r-lg); padding:24px; margin-bottom:18px; }
.g-rate{ display:flex; align-items:center; gap:12px; }
.g-rate b{ font-family:var(--display); font-weight:800; font-size:40px; color:var(--navy); }
.g-count{ font-weight:600; font-size:15px; }
.rev-stack{ display:flex; flex-direction:column; gap:14px; }
.rev-card{ background:#fff; border:1.5px solid var(--line); border-radius:var(--r); padding:20px; }
.rev-head{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.rev-id{ flex:1; }
.rev-name{ font-family:var(--display); font-weight:700; font-size:17px; color:var(--navy); }
.rev-when{ font-size:13.5px; }
.rev-text{ font-size:16.5px; line-height:1.55; color:var(--ink); margin-top:8px; }
.tamil .rev-text{ line-height:1.6; }

/* ============================ CTA ============================ */
.cta-dark{ background:var(--navy); position:relative; overflow:hidden; padding:56px 0; margin-top:10px; }
.b4{ width:280px; height:280px; background:radial-gradient(circle,rgba(255,95,126,.4),transparent 70%); top:-80px; right:-80px; opacity:.7; filter:blur(10px); }
.cta-inner{ position:relative; z-index:2; }
.cta-eyebrow{ color:#7fb0ff; }
.cta-title{ color:#fff; font-size:34px; margin:12px 0 28px; white-space:pre-line; }
.cta-btn{ font-size:21px; }
.cta-note{ text-align:center; color:#acc4e6; font-family:var(--display); font-weight:600; font-size:15.5px; margin-top:16px; }

/* ============================ FOOTER ============================ */
.ftr{ background:#0a2138; color:#cfe0f2; padding:42px 0 0; }
.ftr-logo{ height:36px; margin-bottom:14px; }
.ftr-tag{ font-size:16px; line-height:1.5; color:#9fb6d0; max-width:34ch; margin-bottom:30px; }
.ftr-cols{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:28px; }
.ftr h4{ font-family:var(--display); font-weight:700; font-size:18px; color:#fff; margin-bottom:14px; }
.ftr ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.ftr ul a{ font-size:16px; color:#bcd0e6; }
.ftr ul a:hover{ color:#fff; }
.ftr-cities{ margin-bottom:28px; }
.city-grid{ display:flex; flex-wrap:wrap; gap:8px; }
.city-grid span{ background:rgba(255,255,255,.08); border-radius:999px; padding:8px 14px; font-size:14.5px; }
.ftr-contact{ display:flex; flex-direction:column; gap:14px; margin-bottom:24px; }
.ftr-contact p{ display:flex; gap:12px; font-family:var(--display); font-weight:600; font-size:15.5px; line-height:1.5; align-items:flex-start; }
.ftr-contact b{ color:#fff; }
.ci{ flex:0 0 auto; color:var(--pink); margin-top:2px; }
.ftr-social{ display:flex; gap:12px; margin-bottom:30px; }
.soc{ width:46px; height:46px; border-radius:50%; background:rgba(255,255,255,.1); display:flex; align-items:center; justify-content:center; color:#fff; font-family:var(--display); font-weight:700; }
.soc.wa{ background:#25D366; }
.soc:hover{ background:rgba(255,255,255,.2); }
.ftr-bottom{ border-top:1.5px solid rgba(255,255,255,.12); padding:20px var(--pad); text-align:center; }
.ftr-bottom p{ font-size:14px; color:#8ea6c2; }
.ftr-legal{ margin-top:10px; display:flex; gap:8px; justify-content:center; flex-wrap:wrap; }
.ftr-legal a{ color:#bcd0e6; }
.ftr-legal a:not(:last-child)::after{ content:"·"; margin-left:8px; color:#5e7a99; }

/* ============================ STICKY CTA ============================ */
.sticky-cta{
  position:fixed; left:50%; bottom:14px; transform:translate(-50%,140%);
  width:min(492px, calc(100% - 28px)); z-index:60;
  transition:transform .35s cubic-bezier(.2,.8,.2,1);
  filter:drop-shadow(0 12px 24px rgba(10,37,64,.3));
}
.sticky-cta.show{ transform:translate(-50%,0); }
.sticky-cta .btn{ font-size:20px; }

/* ============================ MODAL ============================ */
.modal-backdrop{ position:fixed; inset:0; z-index:100; background:rgba(10,33,56,.55); backdrop-filter:blur(3px); display:flex; align-items:flex-end; justify-content:center; padding:0; animation:fade .2s ease; }
@keyframes fade{ from{ opacity:0; } }
.modal{ background:#fff; width:100%; max-width:520px; border-radius:26px 26px 0 0; padding:30px 24px 32px; position:relative; animation:slideup .3s cubic-bezier(.2,.8,.2,1); }
@keyframes slideup{ from{ transform:translateY(40px); opacity:.6; } }
.modal-x{ position:absolute; top:16px; right:18px; width:40px; height:40px; border-radius:50%; background:var(--bg-soft); font-size:24px; color:var(--ink-2); line-height:1; }
.modal-title{ font-family:var(--display); font-weight:800; font-size:25px; color:var(--navy); line-height:1.2; padding-right:30px; }
.modal-sub{ font-size:16px; margin:8px 0 20px; }
.fld{ display:block; margin-bottom:16px; }
.fld>span{ display:block; font-family:var(--display); font-weight:700; font-size:15px; color:var(--navy); margin-bottom:7px; }
.fld input[type=text], .fld input[type=tel]{ width:100%; height:56px; border:2px solid var(--line); border-radius:14px; padding:0 16px; font-family:var(--body); font-size:18px; font-weight:600; color:var(--ink); }
.fld input:focus{ outline:none; border-color:var(--blue); }
.phone-row{ display:flex; gap:10px; }
.fld .phone-row input[type=tel]{ flex:1; min-width:0; font-family:var(--display); font-variant-numeric:lining-nums tabular-nums; letter-spacing:.03em; }
.cc-select{ flex:0 0 auto; width:120px; height:56px; border:2px solid var(--line); border-radius:14px; padding:0 10px; font-family:var(--body); font-size:16px; font-weight:600; color:var(--ink); background:#fff; cursor:pointer; }
.cc-select:focus{ outline:none; border-color:var(--blue); }
.batch{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.batch label{ display:flex; align-items:center; justify-content:center; gap:8px; height:56px; border:2px solid var(--line); border-radius:14px; font-family:var(--display); font-weight:700; font-size:16px; color:var(--navy); cursor:pointer; }
.batch input{ accent-color:var(--blue); width:18px; height:18px; }
.batch label:has(input:checked){ border-color:var(--blue); background:var(--blue-tint); }
.modal form .btn{ margin-top:8px; }
.ok-circle{ width:84px; height:84px; border-radius:50%; background:var(--mint-tint); color:#1f8a5b; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.modal .center .btn{ margin-top:20px; }

/* ============================ RESPONSIVE ============================ */
@media (min-width:560px){
  :root{ --pad:30px; }
  .hero-title{ font-size:48px; }
}
