/* =========================================================
   BOJO MAGNET — Premium Minimal Stylesheet
   Font: Kanit | Tone: Blue & Yellow, bright & cute on white
   ========================================================= */

/* ----------  Design Tokens  ---------- */
:root {
  /* Brand colors (matched to logo) */
  --blue:         #1E50A0;   /* premium royal blue — primary */
  --blue-deep:    #163C7C;
  --blue-bright:  #2F9BE0;   /* sky-blue bubble letter */
  --yellow:       #FFC233;   /* warm yellow bubble letter */
  --yellow-soft:  #FFE08A;
  --pink:         #F49AC1;   /* soft pink accent (logo bg) */
  --green:        #8DC63F;   /* fresh green accent */

  /* Neutrals */
  --ink:          #16223C;   /* headings / dark navy */
  --body:         #404a5c;   /* body text */
  --muted:        #7a8499;   /* secondary text */
  --line:         #e8edf5;   /* hairlines / borders */
  --bg:           #ffffff;
  --bg-soft:      #f5f8fd;   /* gentle blue-tinted section */
  --bg-cream:     #fffaf0;   /* warm tint */

  /* Effects */
  --shadow-sm:  0 2px 10px rgba(22, 34, 60, .06);
  --shadow-md:  0 12px 30px rgba(22, 34, 60, .09);
  --shadow-lg:  0 24px 60px rgba(22, 34, 60, .14);
  --shadow-blue:0 18px 40px rgba(30, 80, 160, .22);

  /* Geometry */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 30px;
  --radius-xl: 40px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.22, 1, .36, 1);
  --t: .45s var(--ease);

  --font: 'Kanit', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ----------  Reset  ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-weight: 300;
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 { color: var(--ink); font-weight: 600; line-height: 1.22; letter-spacing: -.01em; }

/* ----------  Layout helpers  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 120px); }
.section--soft  { background: var(--bg-soft); }
.section--cream { background: var(--bg-cream); }

.center { text-align: center; }

/* Section header */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: linear-gradient(180deg, #eef4ff, #e3edff);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
}

.section-title {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  font-weight: 600;
}
.section-title .hl { color: var(--blue); }

.section-lead {
  color: var(--muted);
  max-width: 620px;
  margin-top: 16px;
  font-weight: 300;
}
.center .section-lead { margin-inline: auto; }

.section-head { margin-bottom: clamp(36px, 5vw, 60px); }

/* ----------  Buttons  ---------- */
.btn {
  --bg-btn: var(--blue);
  --fg-btn: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  font-size: .98rem;
  color: var(--fg-btn);
  background: var(--bg-btn);
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), background var(--t);
  box-shadow: var(--shadow-blue);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 22px 44px rgba(30,80,160,.3); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }

.btn--yellow {
  --bg-btn: linear-gradient(135deg, #FFD15C, #FFB400);
  --fg-btn: #5a3d00;
  box-shadow: 0 16px 34px rgba(255, 180, 0, .35);
}
.btn--yellow:hover { box-shadow: 0 22px 44px rgba(255, 180, 0, .45); }

.btn--ghost {
  --bg-btn: #fff;
  --fg-btn: var(--blue);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--ghost:hover { box-shadow: var(--shadow-md); border-color: #cfe0ff; }

.btn--line {
  --bg-btn: transparent;
  --fg-btn: var(--ink);
  box-shadow: none;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--lg { padding: 16px 34px; font-size: 1.04rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}
.brand img { border-radius: 50%; box-shadow: var(--shadow-sm); }
.nav .brand img { width: 60px; height: 60px; }
.footer-brand .brand img { width: 80px; height: 80px; }
.brand__name { font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.brand__name b { color: var(--blue); font-weight: 600; }
.brand__name span { display: block; font-size: .64rem; font-weight: 400; letter-spacing: .22em; color: var(--muted); text-transform: uppercase; margin-top: 3px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  position: relative;
  font-weight: 400;
  font-size: .97rem;
  color: var(--body);
  padding: 9px 16px;
  border-radius: 999px;
  transition: color .3s, background .3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 4px;
  width: 0; height: 2px;
  background: var(--yellow);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a.active { color: var(--blue); font-weight: 500; }
.nav-links a.active::after { width: 22px; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: .35s var(--ease);
}
.nav-toggle span::before { transform: translate(-50%, -8px); }
.nav-toggle span::after  { transform: translate(-50%, 6px); }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle.is-open span::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(56px, 8vw, 96px);
  background:
    radial-gradient(60% 60% at 85% 12%, rgba(255,194,51,.16), transparent 70%),
    radial-gradient(55% 55% at 8% 90%, rgba(47,155,224,.14), transparent 70%),
    var(--bg);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .85rem;
  font-weight: 400;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero__badge i {
  width: 24px; height: 24px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--yellow), #ffb400);
  border-radius: 50%;
  font-style: normal;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.2vw, 3.7rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.hero h1 .grad {
  background: linear-gradient(120deg, var(--blue) 30%, var(--blue-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .mark {
  position: relative;
  color: var(--ink);
  white-space: nowrap;
}
.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px; bottom: .08em;
  height: .32em;
  background: var(--yellow-soft);
  border-radius: 4px;
  z-index: -1;
}
.hero__lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 520px;
  margin-top: 22px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__stats {
  display: flex;
  gap: clamp(16px, 3vw, 24px);
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero__stats .stat {
  border: 1px solid rgba(22, 34, 60, 0.15);
  padding: 14px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.hero__stats .stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
}
.hero__stats .stat span { display: block; font-size: .85rem; color: var(--muted); margin-bottom: 2px; }
.hero__stats .stat strong .u { color: var(--blue); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(120% 120% at 30% 20%, #fff, #eef4ff 60%, #e3edff);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 40% at 78% 78%, rgba(255,194,51,.30), transparent 70%),
    radial-gradient(45% 45% at 18% 22%, rgba(47,155,224,.22), transparent 70%);
  z-index: -1;
}
.hero__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%     { transform: translateY(-16px) rotate(1.5deg); }
}

/* Floating chips around hero */
.chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  padding: 11px 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  font-size: .86rem;
  font-weight: 400;
  color: var(--ink);
  animation: float 5s ease-in-out infinite;
}
.chip i {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 10px;
  font-style: normal;
  font-size: 1rem;
}
.chip--1 { top: 8%; left: -6%; animation-delay: .4s; }
.chip--1 i { background: #eafaf0; }
.chip--2 { bottom: 14%; right: -8%; animation-delay: 1.1s; }
.chip--2 i { background: #fff3d6; }
.chip--3 { bottom: -3%; left: 12%; animation-delay: 1.7s; }
.chip--3 i { background: #e6f2ff; }

/* trust bar */
.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 36px;
  padding-block: 26px;
}
.trustbar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--body);
}
.trustbar__item svg { width: 26px; height: 26px; color: var(--blue); flex: none; }
.trustbar__item b { color: var(--ink); font-weight: 600; }

.mobile-only { display: none; }
@media (max-width: 768px) {
  .desktop-only { display: none !important; }
  .mobile-only { display: block; }
}

.trust-mobile {
  text-align: center;
  padding-block: 40px;
  background: #fff;
  max-width: 800px;
  margin-inline: auto;
}
.trust-mobile .tm-title {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.trust-mobile .tm-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: #0ea5e9;
  line-height: 1.6;
  margin-bottom: 24px;
}
.trust-mobile .tm-body {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700;
  color: #000;
  line-height: 1.8;
  margin-bottom: 24px;
}
.trust-mobile .tm-body p {
  margin-bottom: 16px;
}
.trust-mobile .tm-highlight {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 800;
  color: #f028e9;
  margin-bottom: 24px;
}
.trust-mobile .tm-btn {
  display: inline-block;
  background: #eb5991;
  color: #000;
  font-weight: 800;
  font-size: 1.15rem;
  padding: 12px 32px;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(249, 104, 158, 0.3);
  transition: transform 0.2s;
}
.trust-mobile .tm-btn:hover {
  transform: scale(1.05);
}
.trust-mobile .tm-contact {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
}
.trust-mobile .tm-contact a {
  color: #000;
}

/* =========================================================
   WHY CHOOSE US STATS
   ========================================================= */
.why-choose-us {
  padding-block: 24px;
}
.wcu-title {
  color: #f672a7;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.wcu-subtitle {
  color: #005a6e;
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 4px;
}
.wcu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.wcu-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.wcu-stat-label {
  color: #005a6e;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 800;
}
.wcu-stat-value {
  color: #f672a7;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 800;
}

@media (max-width: 768px) {
  .wcu-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
}

/* =========================================================
   FEATURE CARDS  /  WHY US
   ========================================================= */
.grid {
  display: grid;
  gap: 24px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #d8e6ff;
}
.card__icon {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  margin: 0 auto 20px auto;
  background: linear-gradient(135deg, #eaf2ff, #dbe9ff);
  color: var(--blue);
}
.card__icon svg { width: 28px; height: 28px; }
.card--y .card__icon { background: linear-gradient(135deg, #fff1cc, #ffe49e); color: #b67d00; }
.card--g .card__icon { background: linear-gradient(135deg, #e9f8d9, #d8f0bf); color: #5c9d1f; }
.card--p .card__icon { background: linear-gradient(135deg, #ffe7f1, #ffd6e7); color: #d65a8e; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { font-size: .95rem; color: var(--muted); }

/* =========================================================
   PRODUCT / SERVICE CARDS
   ========================================================= */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: flex;
  flex-direction: column;
}
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product__media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.05));
}
.product__emoji {
  font-size: 4.2rem;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.12));
  transition: transform var(--t);
  z-index: 1;
}
.product:hover .product__emoji { transform: scale(1.12) rotate(-4deg); }
.product__tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-size: .72rem;
  font-weight: 500;
  color: #fff;
  background: rgba(22,34,60,.55);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 999px;
}
.product__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product__body h3 { font-size: 1.16rem; margin-bottom: 8px; }
.product__body p { font-size: .92rem; color: var(--muted); flex: 1; }
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product__price { font-weight: 600; color: var(--ink); }
.product__price small { display: block; font-size: .72rem; font-weight: 300; color: var(--muted); }
.product__price b { color: var(--blue); font-size: 1.15rem; }
.product__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .88rem; font-weight: 500; color: var(--blue);
  transition: gap .3s;
}
.product__link:hover { gap: 11px; }

/* media backgrounds */
.bg-blue  { background: linear-gradient(135deg, #e7f1ff, #cfe2ff); }
.bg-yellow{ background: linear-gradient(135deg, #fff4d4, #ffe6a3); }
.bg-pink  { background: linear-gradient(135deg, #ffe7f0, #ffd2e3); }
.bg-green { background: linear-gradient(135deg, #ecf9dd, #d6efbd); }
.bg-sky   { background: linear-gradient(135deg, #e3f6ff, #c5ecff); }
.bg-cream { background: linear-gradient(135deg, #fff6e9, #ffe9cc); }

/* =========================================================
   PROCESS / STEPS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 26px 28px;
  transition: transform var(--t), box-shadow var(--t);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step__num {
  counter-increment: step;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px #cfdcf2;
  margin-bottom: 14px;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: .9rem; color: var(--muted); }
.step::after {
  content: "→";
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  color: #cfdcf2;
  font-size: 1.4rem;
  z-index: 2;
}
.step:last-child::after { display: none; }

/* =========================================================
   REVIEWS / TESTIMONIALS
   ========================================================= */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t), box-shadow var(--t);
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stars { color: #ffb400; letter-spacing: 2px; font-size: 1rem; }
.review p { font-size: .96rem; color: var(--body); flex: 1; }
.review__who { display: flex; align-items: center; gap: 13px; margin-top: 4px; }
.review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 600; color: #fff;
  flex: none;
}
.review__who b { display: block; color: var(--ink); font-weight: 500; font-size: .96rem; }
.review__who span { font-size: .82rem; color: var(--muted); }

.av-1 { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); }
.av-2 { background: linear-gradient(135deg, #ffb400, #ff8a00); }
.av-3 { background: linear-gradient(135deg, var(--green), #57a800); }
.av-4 { background: linear-gradient(135deg, var(--pink), #e05a8e); }
.av-5 { background: linear-gradient(135deg, var(--blue-bright), #1573c4); }
.av-6 { background: linear-gradient(135deg, #ff8a00, #ff5e62); }

/* Portfolio gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery__item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: grid; place-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.gallery__item:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gallery__item .emoji { font-size: 3.6rem; filter: drop-shadow(0 8px 12px rgba(0,0,0,.12)); transition: transform var(--t); }
.gallery__item:hover .emoji { transform: scale(1.15); }
.gallery__cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 16px 14px;
  background: linear-gradient(0deg, rgba(22,34,60,.7), transparent);
  color: #fff;
  font-size: .88rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(8px);
  transition: .35s var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }

/* =========================================================
   STATS BAND
   ========================================================= */
.statband__grid { 
  display: grid; 
  grid-template-columns: repeat(4, 1fr); 
  gap: 24px; 
  text-align: center; 
}
.stat-card {
  background:
    radial-gradient(100% 100% at 90% 0%, rgba(255,194,51,.12), transparent 50%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  border-radius: var(--radius);
  padding: 36px 20px;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform var(--t), box-shadow var(--t);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.stat-card strong { display: flex; align-items: baseline; justify-content: center; gap: 2px; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1; }
.stat-card strong .u { color: var(--yellow); display: inline !important; }
.stat-card span { font-size: 20px; opacity: .85; margin-top: 8px; display: block; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow var(--t), border-color var(--t);
}
.faq__item.is-open { box-shadow: var(--shadow-md); border-color: #d8e6ff; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
}
.faq__q i {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: #eef4ff;
  color: var(--blue);
  font-style: normal;
  font-size: 1.2rem;
  transition: transform .35s var(--ease), background .35s;
}
.faq__item.is-open .faq__q i { transform: rotate(45deg); background: var(--blue); color: #fff; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); font-size: .96rem; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(44px, 7vw, 76px);
  text-align: center;
  background:
    radial-gradient(60% 100% at 15% 10%, rgba(255,194,51,.22), transparent 55%),
    radial-gradient(70% 120% at 95% 100%, rgba(47,155,224,.28), transparent 55%),
    linear-gradient(135deg, var(--blue-deep), var(--blue));
  color: #fff;
}
.cta h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 16px auto 30px; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }

/* ---- Phone picker dropdown ---- */
.phone-picker { position: relative; }
.phone-picker__btn { cursor: pointer; border: none; font-family: inherit; font-size: 1rem; }
.phone-picker__menu {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(14,34,82,.18);
  overflow: hidden;
  min-width: 180px;
  z-index: 100;
  animation: fadeUp .18s ease;
}
.phone-picker.open .phone-picker__menu { display: block; }
.phone-picker__menu a {
  display: block;
  padding: 14px 20px;
  color: var(--ink);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background .15s;
}
.phone-picker__menu a:hover { background: #f0f5ff; color: var(--blue); }
.phone-picker__menu a + a { border-top: 1px solid #eef0f5; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cta .btn--ghost { --fg-btn: var(--blue-deep); border-color: transparent; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }

.contact-info { display: grid; gap: 16px; }
.cinfo {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: transform var(--t), box-shadow var(--t);
}
.cinfo:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cinfo__icon {
  flex: none;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf2ff, #dbe9ff);
  color: var(--blue);
}
.cinfo__icon svg { width: 24px; height: 24px; }
.cinfo h4 { font-size: 1.02rem; margin-bottom: 3px; }
.cinfo p, .cinfo a { font-size: .94rem; color: var(--muted); }
.cinfo a:hover { color: var(--blue); }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .9rem; font-weight: 400; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: #e05a8e; }
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fbfcfe;
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.field input::placeholder,
.field textarea::placeholder { color: #aeb6c6; font-weight: 300; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-bright);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(47,155,224,.14);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 6px; text-align: center; }

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  background: #ecf9ee;
  border: 1px solid #b9e6c1;
  color: #1f7a37;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: .94rem;
  margin-bottom: 18px;
}
.form-success.show { display: flex; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 22px;
}
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.1) contrast(1.02); }

/* =========================================================
   PAGE HERO (sub pages)
   ========================================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(54px, 8vw, 92px);
  text-align: center;
  background:
    radial-gradient(50% 80% at 80% 0%, rgba(255,194,51,.16), transparent 60%),
    radial-gradient(55% 80% at 10% 100%, rgba(47,155,224,.16), transparent 60%),
    var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 600; }
.page-hero h1 .hl { color: var(--blue); }
.page-hero p { color: var(--muted); max-width: 600px; margin: 16px auto 0; }
.crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 18px;
}
.crumb a:hover { color: var(--blue); }
.crumb span { color: #c3ccdb; }
.crumb b { color: var(--blue); font-weight: 500; }

/* Filter tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.tab {
  font-size: .92rem;
  font-weight: 400;
  color: var(--body);
  background: #fff;
  border: 1.5px solid var(--line);
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: .3s var(--ease);
}
.tab:hover { border-color: #cfe0ff; color: var(--blue); }
.tab.active { background: var(--blue); border-color: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #0f1830;
  color: #b9c2d6;
  padding-top: clamp(56px, 7vw, 84px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__name b { color: var(--yellow); }
.footer-brand p { font-size: .92rem; color: #8b95ad; margin-top: 16px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,.06);
  color: #cdd5e6;
  transition: .3s var(--ease);
}
.footer-social a:hover { background-color: var(--blue); color: #fff; transform: translateY(-3px); }

/* Footer social icons — CSS data-URI (no inline SVG = no live-server breakage) */
.fsi {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,.06);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 19px 19px;
  transition: .3s var(--ease);
}
.fsi:hover { background-color: var(--blue); transform: translateY(-3px); }
.fsi--fb   { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23cdd5e6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 12a10 10 0 1 0-11.6 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.2c-1.2 0-1.6.8-1.6 1.6V12h2.7l-.4 2.9h-2.3v7A10 10 0 0 0 22 12z'/%3E%3C/svg%3E"); }
.fsi--line { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23cdd5e6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.5 2 2 5.7 2 10.2c0 4 3.5 7.4 8.3 8.1.3.07.7.2.8.5.07.3 0 .7 0 1l-.13.8c0 .2-.2.9.8.5s5.4-3.2 7.4-5.5c1.3-1.5 2-3 2-5.4C21 5.7 16.5 2 12 2z'/%3E%3C/svg%3E"); }
.fsi--ig   { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23cdd5e6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.2c3.2 0 3.6 0 4.9.07 1.2.05 1.8.25 2.2.4.6.2 1 .5 1.4 1 .5.4.8.8 1 1.4.15.4.35 1 .4 2.2.06 1.3.07 1.7.07 4.9s0 3.6-.07 4.9c-.05 1.2-.25 1.8-.4 2.2-.2.6-.5 1-1 1.4-.4.5-.8.8-1.4 1-.4.15-1 .35-2.2.4-1.3.06-1.7.07-4.9.07s-3.6 0-4.9-.07c-1.2-.05-1.8-.25-2.2-.4-.6-.2-1-.5-1.4-1-.5-.4-.8-.8-1-1.4-.15-.4-.35-1-.4-2.2C2.2 15.6 2.2 15.2 2.2 12s0-3.6.07-4.9c.05-1.2.25-1.8.4-2.2.2-.6.5-1 1-1.4.4-.5.8-.8 1.4-1 .4-.15 1-.35 2.2-.4C8.4 2.2 8.8 2.2 12 2.2zm0 3.8a6 6 0 1 0 0 12 6 6 0 0 0 0-12zm0 9.9a3.9 3.9 0 1 1 0-7.8 3.9 3.9 0 0 1 0 7.8zm6.4-10.2a1.4 1.4 0 1 1-2.8 0 1.4 1.4 0 0 1 2.8 0z'/%3E%3C/svg%3E"); }
.fsi--tt   { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23cdd5e6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.6 5.8a4.3 4.3 0 0 1-1-2.8h-3v11.6a2.5 2.5 0 1 1-2.4-3.1c.26 0 .5.04.74.1V8.5a5.6 5.6 0 0 0-.74-.05A5.5 5.5 0 1 0 15.7 14V8.6a7.2 7.2 0 0 0 4.2 1.35V6.9a4.3 4.3 0 0 1-3.3-1.1z'/%3E%3C/svg%3E"); }

.footer-col h5 { color: #fff; font-size: 1rem; font-weight: 500; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .92rem; color: #97a1ba; transition: color .3s, padding .3s; }
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }

.footer-contact li { display: flex; gap: 11px; font-size: .92rem; color: #97a1ba; margin-bottom: 13px; align-items: flex-start; }

/* Footer contact icons — CSS data-URI */
.fci {
  flex: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.fci--phone { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffc233' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E"); }
.fci--line  { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23ffc233' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C6.5 2 2 5.7 2 10.2c0 4 3.5 7.4 8.3 8.1.3.07.7.2.8.5.07.3 0 .7 0 1l-.13.8c0 .2-.2.9.8.5s5.4-3.2 7.4-5.5c1.3-1.5 2-3 2-5.4C21 5.7 16.5 2 12 2z'/%3E%3C/svg%3E"); }
.fci--mail  { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23ffc233' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpath d='m22 6-10 7L2 6'/%3E%3C/svg%3E"); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: .85rem;
  color: #828ca5;
}
.footer-bottom a:hover { color: var(--yellow); }

/* =========================================================
   FLOATING CONTACT BUTTONS
   ========================================================= */
.floats {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  display: grid;
  gap: 12px;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s;
  position: relative;
}
.float-btn:hover { transform: translateY(-4px) scale(1.05); }
.float-btn svg { width: 26px; height: 26px; }
.float-btn--line { background: #06c755; }
.float-btn--facebook { background: #1877F2; }
.float-btn--instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.float-btn--tiktok { background: #000000; }
.float-btn--phone { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); }
.float-btn--top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff; color: var(--blue);
  border: 1px solid var(--line);
  width: 48px; height: 48px;
  opacity: 0; pointer-events: none;
  transition: .35s var(--ease);
  z-index: 90;
  box-shadow: var(--shadow-md);
}
.float-btn--top.show { opacity: 1; pointer-events: auto; }

/* Pulse ring — continuous "hey, tap me!" effect */
.float-btn:not(.float-btn--top)::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: floatPulse 2.4s ease-out infinite;
}
@keyframes floatPulse {
  0%   { transform: scale(.85); opacity: .55; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
/* Stagger the pulse per button so they don't all beat at once */
.float-btn--facebook::before  { animation-delay: 0s; }
.float-btn--instagram::before { animation-delay: .4s; }
.float-btn--tiktok::before    { animation-delay: .8s; }
.float-btn--line::before      { animation-delay: 1.2s; }
.float-btn--phone::before     { animation-delay: 1.6s; }

/* Tooltip label — slides in from the right on hover */
.float-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: #1a2340;
  color: #fff;
  font-size: .82rem;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s, transform .25s var(--ease);
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
.float-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #1a2340;
}
.float-btn:hover .float-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Ripple wave on click */
.float-ripple {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  animation: floatRipple .6s ease-out forwards;
  pointer-events: none;
}
@keyframes floatRipple {
  0%   { transform: scale(0); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ---- Toggle button (show/hide social icons) ---- */
.float-btn--toggle {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  cursor: pointer;
  border: none;
  z-index: 2;
  box-shadow: 0 6px 24px rgba(30, 80, 160, .4);
  overflow: visible;
  animation: toggleBounce 2.5s ease-in-out infinite;
}
/* Gentle bounce to draw attention */
@keyframes toggleBounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.float-btn--toggle:hover {
  box-shadow: 0 10px 32px rgba(30, 80, 160, .55);
  animation: none;
  transform: translateY(-4px) scale(1.08);
}
/* Stop bounce when menu is open */
.floats.is-open .float-btn--toggle {
  animation: none;
}

/* Double-ring pulse wave */
.float-btn--toggle::before,
.float-btn--toggle::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2.5px solid rgba(47, 155, 224, .5);
  opacity: 0;
  animation: toggleWave 2.8s ease-out infinite;
  pointer-events: none;
}
.float-btn--toggle::after {
  animation-delay: 1s;
}
@keyframes toggleWave {
  0%   { transform: scale(.8); opacity: .6; }
  50%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* Hide waves when menu is open */
.floats.is-open .float-btn--toggle::before,
.floats.is-open .float-btn--toggle::after {
  animation: none;
  opacity: 0;
}

/* Icon swap: show + by default, × when open */
.toggle-icon { width: 26px; height: 26px; transition: transform .35s var(--ease), opacity .25s; }
.toggle-icon--close { position: absolute; opacity: 0; transform: rotate(-90deg); }
.floats.is-open .toggle-icon--open  { opacity: 0; transform: rotate(90deg); }
.floats.is-open .toggle-icon--close { opacity: 1; transform: rotate(0); }

/* ---- Hide social buttons by default ---- */
.float-btn--facebook,
.float-btn--instagram,
.float-btn--tiktok,
.float-btn--line,
.float-btn--phone {
  opacity: 0;
  transform: scale(.4) translateY(20px);
  pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

/* ---- Reveal when .is-open ---- */
.floats.is-open .float-btn--facebook,
.floats.is-open .float-btn--instagram,
.floats.is-open .float-btn--tiktok,
.floats.is-open .float-btn--line,
.floats.is-open .float-btn--phone {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
/* Stagger each button */
.floats.is-open .float-btn--facebook  { transition-delay: .04s; }
.floats.is-open .float-btn--instagram { transition-delay: .08s; }
.floats.is-open .float-btn--tiktok    { transition-delay: .12s; }
.floats.is-open .float-btn--line      { transition-delay: .16s; }
.floats.is-open .float-btn--phone     { transition-delay: .20s; }


/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #fff;
    padding: 16px var(--gutter) 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .4s var(--ease);
    z-index: -1;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { display: flex; justify-content: center; padding: 14px 16px; border-radius: 14px; font-size: 1.05rem; }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }

  .grid--3, .grid--4, .grid--2,
  .products-grid, .reviews-grid, .gallery,
  .steps, .statband__grid { grid-template-columns: 1fr; }
  .statband__grid { gap: 22px; }
  .statband .div { display: none; }
  .step::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }

  /* ---- Hide ghost button on mobile ---- */
  .hero__actions .btn--ghost.btn--lg { display: none; }

  /* ---- iOS 26 Frosted Glass — trustbar ---- */
  .trustbar {
    background: transparent;
    border: none;
    padding-inline: var(--gutter);
    padding-block: 8px;
  }
  .trustbar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0;
    background: none;
  }
  .trustbar__item {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 18px;
    padding: 14px 16px;
    font-size: .82rem;
    gap: 10px;
    box-shadow:
      0 2px 12px rgba(0, 0, 0, .05),
      inset 0 1px 0 rgba(255, 255, 255, .8);
  }
  .trustbar__item svg { width: 22px; height: 22px; }

  /* ---- iOS 26 Frosted Glass — hero stats ---- */
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    margin-left: -12px;
    margin-right: -12px;
    box-shadow: none;
  }
  .hero__stats .stat {
    background: rgba(255, 255, 255, .55);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 16px;
    padding: 14px 4px;
    text-align: center;
    box-shadow:
      0 2px 12px rgba(0, 0, 0, .05),
      inset 0 1px 0 rgba(255, 255, 255, .8);
  }
  .hero__stats .stat strong {
    font-size: 1.4rem;
  }
  .hero__stats .stat span {
    font-size: .75rem;
  }
  .gallery__cap {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(0deg, rgba(22,34,60,.85), transparent);
  }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
}

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
  display: block;
  max-width: 95%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.lightbox-close:hover,
.lightbox-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
