/* =============================================
   BILAS.IN — Main Stylesheet
   Font: Poppins (Google Fonts)
   ============================================= */

:root {
  --navy:       #10357F;
  --blue:       #1E56C0;
  --sky:        #57C2F0;
  --ice:        #EFF5FC;
  --paper:      #FBFCFE;
  --ink:        #131F38;
  --muted:      #5B6880;
  --champagne:  #B99656;
  --line:       #DCE4F0;
  --radius:     18px;
  --shadow:     0 20px 60px -24px rgba(16,53,127,.25);
  --ff-body:    'Poppins', system-ui, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
section[id], header[id], #estimasi { scroll-margin-top: 84px; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Utilities ---------- */
.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--champagne); }

h1, h2, h3 { font-family: var(--ff-body); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.15rem; }

.lead { color: var(--muted); font-size: 1.02rem; max-width: 56ch; }
.section { padding: 104px 0; }
.section.tight { padding: 72px 0; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .92rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(30,86,192,.55);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--navy); }
.btn-ghost { color: var(--navy); border: 1px solid var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

/* ---------- Image Placeholders ---------- */
.ph {
  background: linear-gradient(135deg, var(--ice), #fff);
  border: 1.5px dashed #B9C8E4;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7C8BAA;
  text-align: center;
  padding: 24px;
}
.ph strong { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.ph span   { font-size: .82rem; max-width: 30ch; line-height: 1.5; }
.ph svg    { opacity: .5; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.nav.scrolled {
  background: rgba(251,252,254,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 42px; width: auto; }
.brand-name { font-size: 1.25rem; font-weight: 700; color: var(--navy); letter-spacing: -.01em; }

.nav-links { display: flex; gap: 28px; font-size: .88rem; font-weight: 500; color: var(--muted); }
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--blue); }
.nav .btn { padding: 10px 20px; font-size: .86rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--navy); transition: .3s; }

.mobile-menu { display: none; }

@media (max-width: 880px) {
  .nav-links, .nav .btn-primary { display: none; }
  .hamburger { display: flex; }
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--paper);
    z-index: 49;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
}

/* ---------- Hero ---------- */
.hero { padding: 110px 0 70px; position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -30%; right: -16%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,194,240,.16), transparent 65%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }

.hero h1 em { font-style: normal; position: relative; white-space: nowrap; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 10px;
  background: linear-gradient(90deg, rgba(87,194,240,.35), rgba(87,194,240,0));
  z-index: -1;
  border-radius: 4px;
}
.hero .lead     { margin: 22px 0 32px; }
.hero-ctas      { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note      { font-size: .82rem; color: var(--muted); margin-top: 16px; }
.hero-visual    { position: relative; }
.hero-visual .ph { aspect-ratio: 4/5; box-shadow: var(--shadow); }

.hero-card {
  position: absolute;
  bottom: 28px; left: -34px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  max-width: calc(100% + 34px);
}
.hero-card .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #3BC98B;
  box-shadow: 0 0 0 5px rgba(59,201,139,.15);
  flex-shrink: 0;
}
.hero-card p   { font-size: .82rem; line-height: 1.45; }
.hero-card p b { color: var(--navy); }

.trust {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust div { font-size: .82rem; color: var(--muted); }
.trust b { display: block; font-size: 1.5rem; font-weight: 700; color: var(--navy); }

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { left: 12px; }
  .hero-visual .ph { aspect-ratio: 16/11; }
}

/* ---------- Fabric Ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  overflow: hidden;
  background: #fff;
}
.ticker-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: tick 34s linear infinite;
}
.ticker-track span {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9AA9C7;
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}
.ticker-track span::after { content: "·"; color: var(--champagne); }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.value-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .ico {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
}
.value-card h3 { margin-bottom: 10px; }
.value-card p  { font-size: .92rem; color: var(--muted); }

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

/* ---------- Fabric Section ---------- */
.fabric {
  background: linear-gradient(180deg, #0E2E6E 0%, var(--navy) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.fabric::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(87,194,240,.12), transparent 60%);
  pointer-events: none;
}
.fabric h2, .fabric h3 { color: #fff; }
.fabric .eyebrow { color: var(--sky); }
.fabric .eyebrow::before { background: var(--sky); }
.fabric .lead { color: #B9C9E8; }

.fabric-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 40px 0 36px;
  position: relative;
  z-index: 1;
}
.fabric-tab {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.22);
  color: #C9D6EF;
  font-size: .88rem;
  font-weight: 500;
  transition: .25s;
  background: transparent;
}
.fabric-tab:hover { border-color: var(--sky); color: #fff; }
.fabric-tab.active { background: #fff; color: var(--navy); border-color: #fff; font-weight: 700; }

.fabric-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  animation: fadeIn .4s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.fabric-panel .ph {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.25);
  color: #A9BBDD;
}
.fabric-panel .ph strong { color: var(--sky); }
.fabric-detail h3 { font-size: 1.6rem; margin-bottom: 12px; }
.fabric-detail > p { color: #C2D0EC; font-size: .96rem; margin-bottom: 24px; }
.fabric-steps { display: flex; flex-direction: column; gap: 12px; }
.fabric-steps li {
  display: flex;
  gap: 12px;
  font-size: .9rem;
  color: #DDE7F8;
  padding: 12px 16px;
  background: rgba(255,255,255,.06);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
}
.fabric-steps li svg { flex-shrink: 0; margin-top: 2px; color: var(--sky); }

@media (max-width: 880px) { .fabric-panel { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.step {
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step .num {
  font-size: 2.2rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--champagne);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p  { font-size: .86rem; color: var(--muted); }
@media (max-width: 940px) { .process-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Estimator ---------- */
.est-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  margin-top: 48px;
}
.est-field { margin-bottom: 24px; }
.est-field label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--line);
  font-size: .84rem;
  color: var(--muted);
  transition: .2s;
  background: #fff;
}
.chip:hover  { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--ice); border-color: var(--blue); color: var(--blue); font-weight: 600; }
.qty-row { display: flex; align-items: center; gap: 16px; }
.qty-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 1.2rem;
  color: var(--navy);
  transition: .2s;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { border-color: var(--blue); color: var(--blue); }
#qtyVal { font-size: 1.5rem; font-weight: 700; color: var(--navy); min-width: 40px; text-align: center; }
.est-result {
  background: linear-gradient(160deg, var(--navy), var(--blue));
  border-radius: 18px;
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.est-result small { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--sky); font-weight: 600; }
.est-result .price { font-size: clamp(1.8rem,3.2vw,2.4rem); font-weight: 700; margin: 10px 0 6px; }
.est-result p { font-size: .84rem; color: #C4D3EF; margin-bottom: 22px; }
.est-result .btn { background: #fff; color: var(--navy); justify-content: center; font-weight: 700; }
.est-result .btn:hover { transform: translateY(-2px); }
@media (max-width: 880px) { .est-box { grid-template-columns: 1fr; padding: 28px; } }

/* ---------- Pickup Form ---------- */
.pickup-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  margin-top: 48px;
}
.pickup-side {
  background: linear-gradient(160deg, var(--navy), var(--blue));
  border-radius: 18px;
  color: #fff;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pickup-side h3 { color: #fff; font-size: 1.3rem; }
.pickup-side p  { font-size: .88rem; color: #C4D3EF; }
.pickup-side ul { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.pickup-side li { display: flex; gap: 10px; font-size: .86rem; color: #DDE7F8; align-items: flex-start; }
.pickup-side li svg { flex-shrink: 0; margin-top: 3px; color: var(--sky); }

/* ---------- Pickup Form fields ---------- */
.f-field { margin-bottom: 18px; }
.f-field label { display: block; font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: .03em; }
.f-field input, .f-field textarea, .f-field select { width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; font-family: inherit; font-size: .93rem; color: var(--ink); background: var(--paper); transition: border-color .2s, box-shadow .2s; }
.f-field input:focus, .f-field textarea:focus, .f-field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(30,86,192,.1); background: #fff; }
.f-field textarea { resize: vertical; min-height: 96px; }
.f-field .err { display: none; font-size: .78rem; color: #C0392B; margin-top: 5px; }
.f-field.invalid input, .f-field.invalid textarea { border-color: #C0392B; }
.f-field.invalid .err { display: block; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pickup-submit { width: 100%; justify-content: center; margin-top: 4px; }
.pickup-note { font-size: .78rem; color: var(--muted); margin-top: 12px; text-align: center; }
.pickup-success { display: none; text-align: center; padding: 40px 20px; animation: fadeIn .4s ease; }
.pickup-success .check { width: 64px; height: 64px; border-radius: 50%; background: var(--ice); color: var(--blue); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.pickup-success h3 { margin-bottom: 10px; }
.pickup-success p { font-size: .9rem; color: var(--muted); max-width: 42ch; margin: 0 auto; }
@media (max-width: 880px) { .pickup-box { grid-template-columns: 1fr; padding: 28px; } .f-row { grid-template-columns: 1fr; } }
/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.gallery-grid .ph { aspect-ratio: 1; }
.gallery-grid .ph.wide { grid-column: span 2; min-height: 220px; }
@media (max-width: 760px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-grid .ph.wide { grid-column: span 1; aspect-ratio: 4/3; } }
/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.testi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 16px; }
.testi .stars { color: var(--champagne); letter-spacing: 3px; font-size: .95rem; }
.testi p { font-size: .92rem; color: #3C4B6B; font-style: italic; flex: 1; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .ava { width: 42px; height: 42px; border-radius: 50%; background: var(--ice); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .88rem; flex-shrink: 0; }
.testi .who b { display: block; font-size: .88rem; color: var(--navy); }
.testi .who span { font-size: .78rem; color: var(--muted); }
@media (max-width: 880px) { .testi-grid { grid-template-columns: 1fr; } }
/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; text-align: left; font-size: .98rem; font-weight: 600; color: var(--navy); }
.faq-q .plus { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: .3s; font-weight: 400; color: var(--blue); }
.faq-item.open .plus { transform: rotate(45deg); background: var(--ice); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 4px 22px; color: var(--muted); font-size: .93rem; max-width: 64ch; }
/* ---------- Final CTA ---------- */
.final { background: linear-gradient(160deg,var(--navy),var(--blue)); border-radius: 28px; color: #fff; padding: clamp(48px,7vw,88px); text-align: center; position: relative; overflow: hidden; }
.final::before { content: ""; position: absolute; top: -60%; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; border-radius: 50%; background: radial-gradient(circle,rgba(87,194,240,.18),transparent 60%); }
.final h2 { color: #fff; position: relative; }
.final p { color: #C4D3EF; max-width: 52ch; margin: 16px auto 32px; position: relative; }
.final .btn { position: relative; }
.final .btn-primary { background: #fff; color: var(--navy); }
.final small { display: block; margin-top: 18px; font-size: .8rem; color: #9FB4DC; position: relative; }
/* ---------- Footer ---------- */
footer { padding: 64px 0 40px; border-top: 1px solid var(--line); margin-top: 104px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-grid p, .foot-grid a { font-size: .88rem; color: var(--muted); }
.foot-grid h4 { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; font-weight: 700; }
.foot-grid li { margin-bottom: 9px; }
.foot-grid a:hover { color: var(--blue); }
.copyright { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .8rem; color: #93A2C0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr; } }
/* ---------- WhatsApp Float ---------- */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 60; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px 10px 12px; box-shadow: var(--shadow); font-size: .86rem; font-weight: 600; color: var(--navy); transition: transform .25s; }
.wa-float:hover { transform: translateY(-3px); }
.wa-float .wa-ico { width: 38px; height: 38px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
@media (max-width: 560px) { .wa-float span { display: none; } .wa-float { padding: 10px; } }

/* ---------- Thank You Modal ---------- */
html.modal-open {
  overflow: hidden;
}
body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 35, 56, 0.55);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px -16px rgba(16,53,127,.35);
  transform: translateY(20px) scale(.97);
  transition: transform .35s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 28px -8px rgba(30,86,192,.5);
}
.modal-box h3 { font-size: 1.5rem; margin-bottom: 14px; }
.modal-box p  { font-size: .95rem; color: var(--muted); line-height: 1.7; }
.modal-sub    { margin-top: 10px; font-size: .88rem !important; }
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .modal-box { padding: 36px 24px; }
  .modal-actions .btn { width: 100%; justify-content: center; }
}

/* ---------- CTA Badge ---------- */
.cta-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
}
.cta-badge {
  position: absolute;
  top: -12px;
  right: -10px;
  transform: rotate(6deg);
  background: linear-gradient(135deg, #FF6B35, #FF9500);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 5px 13px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,107,53,.4);
  z-index: 1;
  pointer-events: none;
  animation: badgePop .6s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes badgePop {
  from { opacity: 0; transform: translateY(-50%) rotate(-8deg) scale(.7); }
  to   { opacity: 1; transform: translateY(-50%) rotate(-8deg) scale(1); }
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-item b {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.stat-item span {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  flex-shrink: 0;
}
@media (max-width: 560px) {
  .stats-grid    { flex-direction: column; gap: 24px; }
  .stat-divider  { width: 48px; height: 1px; }
}

/* ---------- Real images ---------- */
.fabric-panel img {
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/3;
  display: block;
}
.hero-visual img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 4/5;
  display: block;
}
@media (max-width: 940px) {
  .hero-visual img { aspect-ratio: 16/11; }
}

/* ---------- Checkbox Privacy ---------- */
.f-checkbox { margin-bottom: 20px; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .9rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.6;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--line);
  border-radius: 6px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, border-color .2s;
  background: #fff;
}
.checkbox-label input:checked ~ .checkmark {
  background: var(--blue);
  border-color: var(--blue);
}
.checkbox-label input:checked ~ .checkmark::after {
  content: "";
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
  display: block;
}
.f-checkbox.invalid .checkmark { border-color: #C0392B; }
.link-btn {
  background: none;
  border: none;
  color: var(--blue);
  font-size: inherit;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.link-btn:hover { color: var(--navy); }

/* ---------- Privacy Modal ---------- */
.modal-box--wide { max-width: 640px; text-align: left; }
.privacy-updated { font-size: .8rem; color: var(--muted); margin-bottom: 20px; }
.privacy-content { max-height: 52vh; overflow-y: auto; padding-right: 8px; margin: 16px 0 24px; }
.privacy-content h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin: 20px 0 8px;
}
.privacy-content h4:first-child { margin-top: 0; }
.privacy-content p { font-size: .88rem; color: var(--muted); margin-bottom: 8px; }
.privacy-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 8px;
}
.privacy-content ul li { font-size: .88rem; color: var(--muted); margin-bottom: 4px; }
.privacy-content::-webkit-scrollbar { width: 4px; }
.privacy-content::-webkit-scrollbar-track { background: var(--ice); border-radius: 4px; }
.privacy-content::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }

/* ---------- Typewriter ---------- */
.typewriter-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
  background: var(--ice);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 6px 18px;
}
.typewriter-text {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
}
.typewriter-cursor {
  font-size: 30px;
  font-weight: 300;
  color: var(--blue);
  animation: blink .7s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ---------- Tracking Slider ---------- */
.track-slider-wrap {
  overflow: hidden;
  width: 100%;
  padding: 16px 0 32px;
}
.track-slider {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: slideTrack 28s linear infinite;
  cursor: grab;
}
.track-slider:hover { animation-play-state: paused; }
.track-slider:active { cursor: grabbing; }
@keyframes slideTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.track-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 4px 24px -8px rgba(16,53,127,.12);
  transition: transform .3s ease, box-shadow .3s ease;
}
.track-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.track-card-img {
  background: linear-gradient(135deg, var(--ice), #e8f0fc);
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
}
.track-card-img span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.track-card .track-step {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--champagne);
  padding: 20px 20px 6px;
}
.track-card h3 {
  font-size: 1rem;
  padding: 0 20px 8px;
  color: var(--navy);
}
.track-card p {
  font-size: .84rem;
  color: var(--muted);
  padding: 0 20px 20px;
  line-height: 1.6;
}
@media (prefers-reduced-motion: reduce) {
  .track-slider { animation: none; }
}
