/* ============================================================
   BRAINY BRICKS — custom design system
   Palette derived from brand logo: brick-blue + mortar-green
   ============================================================ */

:root {
  --blue-900: #0f1e3d;
  --blue-800: #16294f;
  --blue-700: #1f3a75;
  --blue-600: #2b61bb;
  --blue-500: #3f74d0;
  --blue-100: #e8f0fd;

  --green-600: #3f9a3a;
  --green-500: #55b84d;
  --green-400: #7ecf72;
  --green-100: #e7f8e4;

  --ink: #16213a;
  --ink-soft: #566085;
  --bg: #fbfbfe;
  --bg-soft: #f2f4fb;
  --card: #ffffff;
  --line: #e3e7f3;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 20px 45px -20px rgba(22, 33, 58, 0.22);
  --shadow-pop: 0 30px 60px -25px rgba(31, 58, 117, 0.35);

  --font-head: "Space Grotesk", "Manrope", sans-serif;
  --font-body: "Manrope", sans-serif;

  --ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--blue-800);
  line-height: 1.15;
  margin: 0 0 .5em;
}

p { color: var(--ink-soft); line-height: 1.65; margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
svg { width: 22px; height: 22px; }

.wrap {
  width: 100%;
  padding-left: 7%;
  padding-right: 7%;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: .4em 1em;
  border-radius: 99px;
  margin-bottom: 1em;
}
.eyebrow--dark { color: var(--green-400); background: rgba(85,184,77,.12); }

.section-head { max-width: 640px; margin: 0 0 3.5rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.section-head--dark h2, .section-head--dark p { color: #fff; }
.section-head--dark p { color: rgba(255,255,255,.68); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  padding: .85em 1.6em;
  border-radius: 99px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn--primary { background: var(--blue-600); color: #fff; box-shadow: 0 12px 24px -10px rgba(43,97,187,.55); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -12px rgba(43,97,187,.6); background: var(--blue-700); }
.btn--ghost { background: transparent; color: var(--blue-700); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue-600); transform: translateY(-3px); }
.btn--outline { background: transparent; color: var(--blue-600); border-color: var(--blue-600); }
.btn--outline:hover { background: var(--blue-600); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-light:hover { background: #fff; color: var(--blue-700); }
.btn--dark { background: var(--blue-900); color: #fff; }
.btn--dark:hover { transform: translateY(-3px); background: var(--blue-800); }
.btn--sm { font-size: .82rem; padding: .65em 1.3em; }
.btn--lg { font-size: 1.02rem; padding: 1em 2em; }
.wa-ic { width: 18px; height: 18px; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1.5px solid var(--line); color: var(--blue-700);
  transition: all .3s var(--ease);
}
.icon-btn:hover { background: var(--blue-600); color: #fff; border-color: var(--blue-600); }
.icon-btn svg { width: 18px; height: 18px; }

.pill { display: inline-flex; align-items: center; padding: .5em 1.1em; border-radius: 99px; font-size: .82rem; font-weight: 600; }
.pill--outline { border: 1.5px solid rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); }

/* ---------- top marquee strip ---------- */
.topstrip { background: var(--blue-900); color: #cdddff; overflow: hidden; padding: .5em 0; }
.topstrip__track {
  display: flex; gap: 2em; white-space: nowrap; width: max-content;
  font-family: var(--font-head); font-size: .78rem; letter-spacing: .06em; font-weight: 500;
  animation: marquee 32s linear infinite;
}
.topstrip__track span:nth-child(2n) { color: var(--green-400); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,254,.75);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, padding .3s;
}
.site-header.scrolled { box-shadow: 0 8px 30px -18px rgba(22,33,58,.35); border-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .9rem 7%; }
.brand__logo { height: 46px; width: auto; transition: height .3s; }
.site-header.scrolled .brand__logo { height: 38px; }

.nav { display: flex; gap: .35rem; align-items: center; }
.nav__link {
  position: relative; font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--ink);
  padding: .55em 1.15em; border-radius: 99px;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__link:hover { background: var(--blue-100); color: var(--blue-700); }
.nav__link.is-active {
  color: #fff;
  background: linear-gradient(120deg, var(--blue-600), var(--green-500));
  box-shadow: 0 10px 20px -10px rgba(43,97,187,.6);
}
.nav__link.is-active:hover { background: linear-gradient(120deg, var(--blue-600), var(--green-500)); }

.mobile-nav a.is-active {
  color: var(--blue-700); background: var(--blue-100);
  box-shadow: inset 3px 0 0 var(--blue-600);
}

.header__cta { display: flex; align-items: center; gap: .7rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.hamburger span { width: 24px; height: 2.5px; background: var(--blue-800); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none; flex-direction: column; gap: 0; background: var(--bg); border-bottom: 1px solid var(--line);
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
}
.mobile-nav.open { max-height: 420px; }
.mobile-nav a { padding: 1rem 7%; border-top: 1px solid var(--line); font-family: var(--font-head); font-weight: 500; }
.mobile-nav .btn { margin: 1rem 7%; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, #16294f 0%, var(--blue-900) 55%, #0a1730 100%);
  padding: 5.5rem 0 8rem;
  overflow: hidden;
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 75%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; animation: float-slow 9s ease-in-out infinite; }
.hero__glow--blue { width: 420px; height: 420px; background: var(--blue-600); top: -120px; left: -100px; }
.hero__glow--green { width: 360px; height: 360px; background: var(--green-500); bottom: -140px; right: -80px; animation-delay: -4s; }
@keyframes float-slow { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-25px); } }

.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.hero__title { font-size: clamp(2.3rem, 4.4vw, 3.6rem); color: #fff; letter-spacing: -.01em; }
.hl { color: var(--blue-500); position: relative; }
.hl--green { color: var(--green-400); }
.hero__sub { color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 540px; margin-top: 1.2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.hero .btn--ghost:hover { border-color: var(--green-400); color: var(--green-400); }

.hero__stats { display: flex; gap: 2.4rem; margin-top: 3rem; flex-wrap: wrap; }
.stat__num { display: block; font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: #fff; }
.stat__label { font-size: .78rem; color: rgba(255,255,255,.55); line-height: 1.3; }

.hero__art { position: relative; height: 420px; display: flex; align-items: center; justify-content: center; }
.hero-illustration { position: relative; width: 100%; height: 100%; animation: float-slow 8s ease-in-out infinite; }
.hero-illustration svg { width: 100%; height: 100%; }
@keyframes float-brick { 0%,100% { margin-top: 0; } 50% { margin-top: -10px; } }

.float-card {
  position: absolute; display: flex; align-items: center; gap: .6em;
  background: #fff; padding: .7em 1.1em; border-radius: 14px; box-shadow: var(--shadow-pop);
  font-family: var(--font-head); font-weight: 600; font-size: .82rem; color: var(--blue-800);
  animation: float-slow 7s ease-in-out infinite;
}
.float-card svg { width: 20px; height: 20px; flex-shrink: 0; }
.float-card--ticket { top: 60px; left: -10px; animation-delay: -2s; }
.float-card--check { bottom: 30px; right: -20px; animation-delay: -5s; }

.hero__divider { position: absolute; left: 0; bottom: -1px; width: 100%; height: 90px; display: block; }

/* ---------- compact page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  background: radial-gradient(circle at 15% 20%, #16294f 0%, var(--blue-900) 55%, #0a1730 100%);
  padding: 4rem 0 5.5rem;
  overflow: hidden;
}
.page-hero__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse at center, black 10%, transparent 75%);
}
.page-hero__glow { position: absolute; width: 380px; height: 380px; border-radius: 50%; filter: blur(100px); opacity: .5; background: var(--green-500); top: -100px; right: -60px; }
.page-hero__inner { position: relative; max-width: 720px; }
.page-hero .crumb { color: rgba(255,255,255,.55); font-family: var(--font-head); font-size: .85rem; margin-bottom: 1rem; display: flex; gap: .5em; align-items: center; }
.page-hero .crumb a { color: rgba(255,255,255,.8); }
.page-hero .crumb a:hover { color: var(--green-400); }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 560px; }
.page-hero__divider { position: absolute; left: 0; bottom: -1px; width: 100%; height: 70px; display: block; }

/* ---------- legal / prose pages ---------- */
.legal { padding: 4.5rem 0 6rem; }
.legal__layout { display: grid; grid-template-columns: 240px 1fr; gap: 3.5rem; align-items: start; }
.legal__toc { position: sticky; top: 110px; display: flex; flex-direction: column; gap: .2rem; }
.legal__toc-label { font-family: var(--font-head); font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .6rem; }
.legal__toc a { display: block; padding: .5rem 0; font-size: .88rem; color: var(--ink-soft); border-left: 2px solid var(--line); padding-left: .9rem; transition: color .25s, border-color .25s; }
.legal__toc a:hover { color: var(--blue-700); border-color: var(--blue-500); }
.legal__content { max-width: 720px; }
.legal__content h2 { font-size: 1.35rem; margin-top: 2.4rem; scroll-margin-top: 110px; }
.legal__content h2:first-child { margin-top: 0; }
.legal__content p, .legal__content li { color: var(--ink-soft); font-size: .98rem; }
.legal__content ul { padding-left: 1.2rem; margin-bottom: 1em; }
.legal__content li { margin-bottom: .4em; }
.legal__updated { display: inline-block; background: var(--blue-100); color: var(--blue-600); font-family: var(--font-head); font-weight: 600; font-size: .8rem; padding: .4em 1em; border-radius: 99px; margin-bottom: 1.5rem; }
@media (max-width: 860px) { .legal__layout { grid-template-columns: 1fr; } .legal__toc { position: static; flex-direction: row; flex-wrap: wrap; gap: .8rem; } .legal__toc a { border-left: none; border-bottom: 2px solid var(--line); padding-left: 0; padding-bottom: .3rem; } }

/* ---------- contact page ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 1.4rem; margin-bottom: 3.5rem; }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.8rem; text-align: left; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.contact-card__icon {
  width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--blue-600), var(--green-500)); color: #fff; margin-bottom: 1rem;
}
.contact-card h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.contact-card p, .contact-card a { font-size: .92rem; color: var(--ink-soft); }
.contact-card a:hover { color: var(--blue-600); }

.contact-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: stretch; }
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.4rem; box-shadow: var(--shadow-soft); }
.contact-form h3 { font-size: 1.3rem; }
.field { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: .4rem; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--blue-800); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .95rem; padding: .8em 1em; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--bg-soft); color: var(--ink); transition: border-color .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; }
.field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: .5rem; }
.contact-map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--line); min-height: 320px; }
.contact-map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
@media (max-width: 900px) { .contact-panel { grid-template-columns: 1fr; } }

/* ---------- chip band ---------- */
.chipband { padding: 3.5rem 0 2.5rem; text-align: center; }
.chipband__label { font-family: var(--font-head); color: var(--ink-soft); font-weight: 500; margin-bottom: 1.6rem; }
.chipband__track {
  display: flex; gap: 1rem; width: max-content; padding: 0 7%;
  animation: marquee 26s linear infinite;
}
.chip {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; white-space: nowrap;
  padding: .8em 1.4em; border-radius: 99px; border: 1.5px solid var(--line); background: var(--card);
  color: var(--blue-700);
}
.chip--logo {
  display: flex; align-items: center; justify-content: center;
  padding: 1em 2rem; min-width: 170px; box-shadow: var(--shadow-soft);
}
.chip--logo img { height: 30px; width: auto; max-width: 150px; object-fit: contain; }

/* ---------- voucher explainer banner ---------- */
.voucher-explainer { padding: 3rem 0 4rem; }
.voucher-explainer__frame {
  background: linear-gradient(120deg, var(--blue-100), var(--green-100));
  border-radius: var(--radius-lg);
  padding: 12px;
}
.voucher-explainer__card {
  background: var(--card); border-radius: calc(var(--radius-lg) - 6px);
  display: grid; grid-template-columns: 38% 62%; align-items: center;
  overflow: hidden; box-shadow: var(--shadow-soft); min-height: 260px;
}
.voucher-explainer__art {
  height: 100%; display: flex; align-items: center; justify-content: center;
  padding: 2rem; background: var(--bg-soft);
}
.voucher-explainer__art svg { width: 100%; max-width: 300px; height: auto; }
.voucher-explainer__content { padding: 2.4rem 3rem; }
.voucher-explainer__content h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.05rem); text-transform: uppercase; letter-spacing: -.01em;
  margin-bottom: .35rem;
}
.voucher-explainer__sub {
  font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; color: var(--green-600);
  margin-bottom: 1.1rem;
}
.voucher-explainer__content p { font-size: .96rem; margin-bottom: 1.4rem; }
@media (max-width: 800px) {
  .voucher-explainer__card { grid-template-columns: 1fr; }
  .voucher-explainer__art { padding: 2rem 2rem 0; }
  .voucher-explainer__content { padding: 1.8rem 2rem 2.2rem; }
}

/* ---------- about teaser (homepage) ---------- */
.about-teaser { padding: 6rem 0 3rem; }
.about-teaser__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.about-teaser h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); }
.about-teaser__grid > .reveal > p { font-size: 1.05rem; }
.about-teaser__points { display: flex; flex-direction: column; gap: 1.3rem; margin: 1.8rem 0; }
.about-point { display: flex; gap: 1.1rem; align-items: flex-start; }
.about-point .feature__icon { margin-bottom: 0; flex-shrink: 0; }
.about-point h4 { font-size: 1rem; margin-bottom: .25rem; }
.about-point p { font-size: .88rem; margin-bottom: 0; }
.about-teaser__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-pop); aspect-ratio: 1/1; }
.about-teaser__media img { width: 100%; height: 100%; object-fit: cover; }
.about-teaser__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(43,97,187,.3), rgba(85,184,77,.15)); }
.about-teaser__badge {
  position: absolute; bottom: 1.1rem; left: 1.1rem; right: 1.1rem; z-index: 1;
  background: #fff; border-radius: 14px; padding: .9rem 1.1rem; box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: .8rem;
}
.about-teaser__badge strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--blue-800); }
.about-teaser__badge span { font-size: .78rem; color: var(--ink-soft); }
@media (max-width: 900px) { .about-teaser__grid { grid-template-columns: 1fr; } .about-teaser__media { aspect-ratio: 4/3.4; } }

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 3rem 0 6rem; }
.process--dark { position: relative; background: var(--blue-900); overflow: hidden; padding: 5rem 0 6rem; }
.process__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 70% 20%, black, transparent 70%);
}
.process--dark .wrap { position: relative; }
.process--dark .brickstep__body h3 { color: #fff; }
.process--dark .brickstep__body p { color: rgba(255,255,255,.68); }
.process__layout { display: grid; grid-template-columns: 1fr 360px; gap: 3rem; align-items: center; }
.process__layout--reverse { grid-template-columns: 1fr 1fr 1fr; }
.process__visual { position: sticky; top: 120px; }
.process__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-pop); aspect-ratio: 4/5; }
.process__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 980px) { .process__layout--reverse { grid-template-columns: 1fr; } .process__media { position: static; margin-bottom: 2.5rem; max-width: 440px; aspect-ratio: 16/10; } }

.chatcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-pop);
}
.chatcard__header {
  display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 700;
  font-size: .88rem; color: var(--blue-800); margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line);
}
.chatcard__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 3px var(--green-100); flex-shrink: 0; }
.chatcard__thread { display: flex; flex-direction: column; gap: .75rem; }
.chatcard__bubble { width: fit-content; max-width: 85%; padding: .7em 1em; border-radius: 14px; font-size: .85rem; line-height: 1.45; }
.chatcard__bubble--in { align-self: flex-start; background: var(--bg-soft); color: var(--ink); border-bottom-left-radius: 4px; }
.chatcard__bubble--out { align-self: flex-end; background: linear-gradient(120deg, var(--blue-600), var(--green-500)); color: #fff; border-bottom-right-radius: 4px; }
.chatcard__status { display: flex; align-items: center; gap: .35rem; justify-content: flex-end; font-size: .74rem; color: var(--green-600); font-weight: 600; margin-top: .2rem; }
.chatcard__status svg { width: 14px; height: 14px; }
@media (max-width: 980px) {
  .process__layout { grid-template-columns: 1fr; }
  .process__visual { position: static; margin-top: 2.5rem; max-width: 440px; }
}

.brickwall { position: relative; display: grid; gap: 1.6rem; max-width: 900px; }
.brickwall__line {
  position: absolute; left: 34px; top: 34px; bottom: 46px; width: 3px; border-radius: 2px;
  background: linear-gradient(to bottom, var(--blue-500), var(--green-500));
}
.brickstep { position: relative; display: flex; gap: 1.8rem; align-items: flex-start; padding-left: 0; }
.brickstep__num {
  flex-shrink: 0; width: 68px; height: 68px; border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--blue-600), var(--blue-800));
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-soft); position: relative; z-index: 1;
  transition: transform .4s var(--ease);
}
.brickstep:nth-child(2n) .brickstep__num { background: linear-gradient(145deg, var(--green-500), var(--green-600)); }
.brickstep:hover .brickstep__num { transform: scale(1.08) rotate(-4deg); }
.brickstep__body { padding-top: .6rem; }
.brickstep__body h3 { font-size: 1.25rem; margin-bottom: .3rem; }
.brickstep__body p { max-width: 520px; }

/* ============================================================
   VOUCHERS
   ============================================================ */
.vouchers { position: relative; padding: 6rem 0; background: var(--blue-900); overflow: hidden; }
.vouchers__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 75% 20%, black, transparent 70%);
}
.voucher-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.6rem; perspective: 1600px; }
.voucher-grid--fixed3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .voucher-grid--fixed3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .voucher-grid--fixed3 { grid-template-columns: 1fr; } }

.vcard { min-height: 360px; }
.vcard__inner {
  position: relative; width: 100%; height: 100%; min-height: 360px;
  transform-style: preserve-3d; transition: transform .7s var(--ease);
}
.vcard:hover .vcard__inner:not(.vcard__inner--static) { transform: rotateY(180deg); }
.vcard__face {
  position: absolute; inset: 0; backface-visibility: hidden;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2rem; display: flex; flex-direction: column; box-shadow: var(--shadow-pop);
}
.vcard__face--back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, var(--blue-700), var(--blue-900));
  color: #fff; justify-content: center; text-align: left;
}
.vcard__face--back h4 { color: var(--green-400); }
.vcard__face--back p { color: rgba(255,255,255,.75); }
.vcard__icon {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--blue-600), var(--green-500)); color: #fff;
}
.vcard__icon svg { width: 26px; height: 26px; }
.vcard__logo {
  display: inline-flex; align-items: center; justify-content: center; width: fit-content;
  height: 50px; padding: .5rem 1.1rem; margin-bottom: 1.1rem;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-soft);
}
.vcard__logo img { height: 24px; width: auto; max-width: 140px; object-fit: contain; }
.vcard__face--back .vcard__logo { border-color: rgba(255,255,255,.2); }
.vcard__face h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.vcard__tag { font-size: .85rem; color: var(--ink-soft); margin-bottom: 1.2rem; flex-grow: 1; }
.vcard__was { font-size: 1rem; color: var(--ink-soft); margin-bottom: .6rem; }
.vcard__was .was-amount { text-decoration: line-through; color: #e5484d; font-weight: 800; font-size: 1.3rem; margin-left: .3rem; }
.vcard__price {
  display: flex; align-items: center; justify-content: space-between; gap: .6rem;
  background: linear-gradient(120deg, var(--blue-600), var(--green-500));
  border-radius: 14px; padding: .85rem 1.1rem; margin-bottom: .9rem;
  box-shadow: 0 12px 24px -12px rgba(43,97,187,.55);
}
.vcard__price .now { font-family: var(--font-head); font-weight: 800; font-size: 1.45rem; color: #fff; letter-spacing: -.01em; }
.save-badge {
  align-self: flex-start; background: var(--green-100); color: var(--green-600);
  font-family: var(--font-head); font-weight: 700; font-size: .78rem;
  padding: .45em 1.1em; border-radius: 99px; margin-top: .4rem; line-height: 1;
}
.vcard--cta .vcard__face--cta { justify-content: center; align-items: flex-start; background: linear-gradient(160deg, var(--blue-100), #fff); border-style: dashed; border-color: var(--blue-500); }
.vouchers__note { position: relative; margin-top: 2rem; font-size: .82rem; color: rgba(255,255,255,.55); }
.vouchers__divider { position: absolute; left: 0; bottom: -1px; width: 100%; height: 70px; display: block; z-index: 1; }

/* ---------- vouchers section: light variant (dark cards) ---------- */
.vouchers--light { background: var(--bg-soft); }
.vouchers--light .vouchers__grid-bg { display: none; }
.vouchers--light .vouchers__note { color: var(--ink-soft); }
.vouchers--light .vcard__face--front {
  background: linear-gradient(160deg, var(--blue-800), var(--blue-900));
  border-color: rgba(255,255,255,.12);
}
.vouchers--light .vcard__face--front h3 { color: #fff; }
.vouchers--light .vcard__face--front .vcard__tag { color: rgba(255,255,255,.65); }
.vouchers--light .vcard__face--front .vcard__was { color: rgba(255,255,255,.7); }
.vouchers--light .vcard--cta .vcard__face--cta {
  background: linear-gradient(160deg, var(--blue-800), var(--blue-900));
  border-color: rgba(255,255,255,.3);
}
.vouchers--light .vcard--cta .vcard__face--cta h3 { color: #fff; }
.vouchers--light .vcard--cta .vcard__face--cta .vcard__tag { color: rgba(255,255,255,.65); }
.vouchers--light .vcard--cta .vcard__face--cta .btn--outline { color: #fff; border-color: rgba(255,255,255,.6); }
.vouchers--light .vcard--cta .vcard__face--cta .btn--outline:hover { background: #fff; color: var(--blue-800); }

/* ============================================================
   WHY US (dark)
   ============================================================ */
.why-us { position: relative; background: var(--blue-800); padding: 6rem 0; overflow: hidden; }
.why-us__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse at 30% 30%, black, transparent 70%);
}
.feature-grid { position: relative; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.feature-grid--fixed3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .feature-grid--fixed3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid--fixed3 { grid-template-columns: 1fr; } }

/* ---------- stat cards ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.stat-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 2rem 1.4rem; text-align: center; box-shadow: var(--shadow-soft);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); border-color: var(--blue-500); }
.stat-card__icon {
  width: 52px; height: 52px; border-radius: 14px; margin: 0 auto 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--blue-600), var(--green-500)); color: #fff;
}
.stat-card__num { display: block; font-family: var(--font-head); font-weight: 800; font-size: 2.3rem; color: var(--blue-800); letter-spacing: -.01em; }
.stat-card__label { font-size: .85rem; color: var(--ink-soft); line-height: 1.35; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
.feature {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-md);
  padding: 2rem; transition: transform .4s var(--ease), background .4s, border-color .4s;
}
.feature:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(85,184,77,.4); }
.feature__icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--blue-600), var(--green-500)); color: #fff; margin-bottom: 1.2rem;
}
.feature h3 { color: #fff; font-size: 1.1rem; }
.feature p { color: rgba(255,255,255,.62); font-size: .92rem; margin-bottom: 0; }

/* ============================================================
   REVIEWS — infinite scroll marquee
   ============================================================ */
.reviews { padding: 3rem 0 6rem; overflow: hidden; }
.review-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 4%, black 96%, transparent);
}
.review-track {
  display: flex; gap: 1.5rem; width: max-content;
  animation: review-scroll 90s linear infinite;
}
.review-marquee:hover .review-track { animation-play-state: paused; }
@keyframes review-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.review-card {
  flex: 0 0 320px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.8rem; box-shadow: var(--shadow-soft);
}
.review-card__stars { display: flex; gap: .15rem; color: #f5b400; margin-bottom: .8rem; }
.review-card__stars svg { width: 15px; height: 15px; }
.review-card p { font-size: .93rem; color: var(--ink); }
.review-card__who { display: flex; align-items: center; gap: .8rem; margin-top: 1rem; }
.review-card__who strong { display: block; font-size: .9rem; }
.review-card__who > div span { font-size: .78rem; color: var(--ink-soft); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-600), var(--green-500)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-weight: 700; font-size: .85rem;
}
@media (max-width: 760px) { .review-card { flex: 0 0 280px; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--blue-800);
  padding: 5rem 0; clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: 1rem 0;
}
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta-banner__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(31,58,117,.94) 0%, rgba(43,97,187,.9) 45%, rgba(63,154,58,.88) 130%);
}
.cta-banner__inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.6rem; }
.cta-banner h2, .cta-banner p { color: #fff; margin: 0; }
.cta-banner p { opacity: .85; margin-top: .3rem; }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 4rem 0 6rem; }
.accordion { width: 100%; columns: 2; column-gap: 2rem; }
.accordion .acc-item { break-inside: avoid; margin-bottom: .8rem; }
@media (max-width: 760px) { .accordion { columns: 1; } }
.acc-item { border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; background: var(--card); }
.acc-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; padding: 1.2rem 1.4rem; text-align: left; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--blue-800);
}
.acc-trigger svg { width: 18px; height: 18px; transition: transform .35s var(--ease); flex-shrink: 0; color: var(--blue-600); }
.acc-item.open .acc-trigger svg { transform: rotate(180deg); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-panel p { padding: 0 1.4rem 1.3rem; margin: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { position: relative; background: var(--blue-900); color: rgba(255,255,255,.7); padding-top: 5rem; overflow: hidden; }
.footer__grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.footer__top { position: relative; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo { height: 44px; margin-bottom: 1rem; }
.footer__col--brand p { color: rgba(255,255,255,.68); }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer__col a, .footer__col--contact p { display: block; margin-bottom: .7rem; font-size: .9rem; color: rgba(255,255,255,.65); transition: color .3s; }
.footer__col a:hover { color: var(--green-400); }
.footer__col--contact p { display: flex; align-items: flex-start; gap: .6rem; }
.footer__col--contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; color: var(--green-400); }
.footer__col--contact a { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 0; }
.gstin { font-size: .78rem; opacity: .55; padding-left: 1.9rem; }
.footer__social { display: flex; gap: .7rem; margin-top: .5rem; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.footer__social a:hover { background: var(--green-500); border-color: var(--green-500); }
.footer__social svg { width: 17px; height: 17px; }

.footer__map { position: relative; }
.footer__map iframe { width: 100%; height: 260px; border: 0; border-radius: var(--radius-md); filter: grayscale(.2) invert(.92) contrast(.9); }

.footer__bottom { position: relative; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding: 1.6rem 7% 2rem; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

/* ---------- floating buttons ---------- */
.fab-whatsapp {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  animation: pulse-ring 2.4s infinite;
}
.fab-whatsapp svg { width: 30px; height: 30px; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 12px 30px -8px rgba(37,211,102,.6); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0), 0 12px 30px -8px rgba(37,211,102,.6); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 12px 30px -8px rgba(37,211,102,.6); }
}

.fab-top {
  position: fixed; bottom: 26px; right: 96px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; background: var(--blue-800); color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-soft);
  opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.fab-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-top svg { width: 20px; height: 20px; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 340px; margin-top: 1rem; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .header__cta .icon-btn { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero { padding: 3rem 0 6rem; }
  .hero__stats { gap: 1.6rem; }
  .footer__top { grid-template-columns: 1fr; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; }
  .brickwall__line { left: 30px; }
}

@media (max-width: 480px) {
  .wrap { padding-left: 6%; padding-right: 6%; }
  .hero__title { font-size: 2rem; }
  .brickstep { gap: 1.1rem; }
  .brickstep__num { width: 54px; height: 54px; font-size: 1.05rem; }
}
