/* ============ Tokens ============ */
:root {
  --red: #C8102E;
  --red-dark: #9b0c24;
  --ink: #0f1419;
  --ink-soft: #2a2f36;
  --muted: #6b7280;
  --line: #e6e7eb;
  --paper: #ffffff;
  --cream: #faf7f2;
  --sand: #f4efe8;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(15, 20, 25, 0.04), 0 1px 3px rgba(15, 20, 25, 0.06);
  --shadow-md: 0 4px 16px rgba(15, 20, 25, 0.06), 0 1px 3px rgba(15, 20, 25, 0.04);
  --shadow-lg: 0 24px 60px rgba(15, 20, 25, 0.12);

  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============ Top Offer Button ============ */
.offer-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.offer-coupon {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 6px 6px 20px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center top, rgba(255, 248, 218, 0.95) 0%, transparent 70%),
    linear-gradient(120deg, #a0731f 0%, #d4a84a 18%, #f5d97a 38%, #fff8da 50%, #f5d97a 62%, #d4a84a 82%, #a0731f 100%);
  background-size: 100% 100%, 220% 100%;
  border: 1.5px solid #c79733;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.65) inset,
    0 10px 28px rgba(184, 134, 47, 0.35),
    0 0 32px rgba(245, 217, 122, 0.55);
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  animation: offerShimmer 5s ease-in-out infinite;
  transition: transform .15s ease;
}
.offer-coupon:hover { transform: translateY(-1px); }

.coupon-lead {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  position: relative;
  z-index: 2;
}
.coupon-tagline {
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  color: #8a5b16;
  margin-bottom: 4px;
}
.coupon-headline {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #2a1d08;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}
.coupon-headline sup {
  font-size: 9px;
  font-weight: 600;
  vertical-align: super;
  margin: 0 1px;
}

.coupon-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 14px 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8102e 0%, #8b0a20 100%);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.55) inset,
    0 4px 14px rgba(200, 16, 46, 0.4);
  position: relative;
  z-index: 2;
}
.coupon-chip-for {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.85);
}
.coupon-chip-free {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: 1.2px;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.offer-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: offerShine 3.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes offerShimmer {
  0%, 100% { background-position: 0 0, 0% 50%; }
  50%      { background-position: 0 0, 100% 50%; }
}
@keyframes offerShine {
  0%   { left: -60%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}
@media (max-width: 640px) {
  .offer-coupon { padding: 5px 5px 5px 16px; gap: 10px; }
  .coupon-tagline { font-size: 7.5px; letter-spacing: 1.8px; margin-bottom: 3px; }
  .coupon-headline { font-size: 14px; }
  .coupon-chip { padding: 6px 12px 6px 10px; gap: 5px; }
  .coupon-chip-for { font-size: 9px; letter-spacing: 1.2px; }
  .coupon-chip-free { font-size: 16px; letter-spacing: 1px; }
}

/* ============ Top Bar ============ */
.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.4px;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.topbar-item strong {
  color: #fff;
  font-weight: 700;
}
.topbar-item em {
  font-style: normal;
  color: #ffd9a6;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.topbar-item svg {
  opacity: 1;
  color: var(--red);
  flex-shrink: 0;
}

/* ============ Header ============ */
.nav {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1px;
  transition: color .2s;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width .25s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--red); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.32);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(15, 20, 25, 0.25);
}

/* ============ Hero ============ */
.hero {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
  padding: 24px 28px 32px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.06), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* ===== Decorative shapes ===== */
.deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.deco-circle {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.12), transparent 70%);
  animation: floatY 12s ease-in-out infinite;
}
.deco-circle--lg {
  width: 320px;
  height: 320px;
  top: 8%;
  left: -120px;
}
.deco-circle--sm {
  width: 160px;
  height: 160px;
  bottom: 8%;
  right: 12%;
  background: radial-gradient(circle, rgba(15, 20, 25, 0.06), transparent 70%);
  animation-duration: 9s;
  animation-delay: -3s;
}
.deco-ring {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: 35%;
  border: 1.5px dashed rgba(200, 16, 46, 0.25);
  border-radius: 50%;
  animation: spin 60s linear infinite;
}
.deco-dots {
  top: 18%;
  right: 32%;
  color: rgba(200, 16, 46, 0.18);
}
.deco-blur {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}
.deco-blur--left {
  top: 20%;
  left: -160px;
  background: rgba(200, 16, 46, 0.25);
}
.deco-blur--right {
  bottom: 10%;
  right: -160px;
  background: rgba(15, 20, 25, 0.18);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-22px); }
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ===== Single Golden Offer ===== */
.gold-offer {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 36px 18px;
  border-radius: 22px;
  background:
    radial-gradient(ellipse at center top, rgba(255, 244, 200, 0.95) 0%, transparent 65%),
    linear-gradient(120deg, #a0731f 0%, #d4a84a 18%, #f5d97a 38%, #fff8da 50%, #f5d97a 62%, #d4a84a 82%, #a0731f 100%);
  background-size: 100% 100%, 220% 100%;
  border: 1.5px solid #c79733;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 0 0 4px rgba(245, 217, 122, 0.2),
    0 12px 32px rgba(160, 115, 31, 0.4),
    0 0 40px rgba(245, 217, 122, 0.55);
  overflow: hidden;
  animation: goldShimmer 5s ease-in-out infinite, goldPulse 2.6s ease-in-out infinite;
}
.gold-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #4a3210;
  background: rgba(255, 255, 255, 0.72);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 50, 16, 0.18);
  position: relative;
  z-index: 2;
}
.gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8102e;
  box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6);
  animation: goldDot 1.8s ease-out infinite;
}
@keyframes goldDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.55); }
  50%      { box-shadow: 0 0 0 6px rgba(200, 16, 46, 0); }
}

.gold-main {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 2;
}
.gold-kg {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--serif);
  color: #c8102e;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6),
    0 2px 6px rgba(200, 16, 46, 0.25),
    0 0 24px rgba(200, 16, 46, 0.15);
  line-height: 0.9;
}
.gold-kg-num {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -3px;
}
.gold-kg-unit {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}
.gold-detail {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}
.gold-detail-top {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 600;
  color: #2a1d08;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}
.gold-detail-bottom {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #6b4a14;
  margin-top: 2px;
}
.gold-free {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 4px;
  color: #fff;
  background: linear-gradient(135deg, #c8102e 0%, #8b0a20 100%);
  padding: 8px 16px 8px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(200, 16, 46, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.5) inset;
  margin-left: 6px;
  transform: rotate(-3deg);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.gold-shine {
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: goldStreak 3.4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes goldShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes goldPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.55) inset,
      0 0 0 4px rgba(245, 217, 122, 0.2),
      0 12px 32px rgba(160, 115, 31, 0.4),
      0 0 40px rgba(245, 217, 122, 0.55);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.7) inset,
      0 0 0 6px rgba(245, 217, 122, 0.32),
      0 16px 40px rgba(160, 115, 31, 0.55),
      0 0 60px rgba(245, 217, 122, 0.85);
  }
}
@keyframes goldStreak {
  0%   { left: -75%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}
.hero-wrap {
  max-width: 1340px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-visual {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.hero-visual picture {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
  border-radius: var(--radius-lg);
}
.hero-form-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 18px 18px;
  box-shadow: 0 14px 40px rgba(15, 20, 25, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: absolute;
  z-index: 3;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
}

/* ===== Floating Badges on Form ===== */
.badge-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 8px 24px rgba(15, 20, 25, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: floatY 5s ease-in-out infinite;
  z-index: 3;
}
.badge-rating {
  top: -16px;
  left: -22px;
}
.badge-rating strong {
  color: var(--ink);
  font-weight: 700;
}
.badge-rating span {
  color: var(--muted);
  font-size: 11px;
}
.badge-offer {
  bottom: 38px;
  right: -18px;
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  animation-delay: -1.5s;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  position: relative;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.5);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}
.form-title {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin-bottom: 2px;
  color: var(--ink);
}
.form-title em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.form-sub {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.4;
}
.form-sub strong { color: var(--ink); font-weight: 600; }

.lead-form .field { margin-bottom: 7px; }
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.lead-form label span { color: var(--red); }
.lead-form input,
.lead-form select {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  font-family: inherit;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.lead-form input::placeholder {
  color: #b0b4ba;
}
.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(15, 20, 25, 0.08);
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.lead-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.consent {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin: 4px 0 12px;
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.4;
  cursor: pointer;
}
.consent input {
  width: 13px;
  height: 13px;
  margin-top: 2px;
  accent-color: var(--red);
  flex-shrink: 0;
}

.submit-btn {
  width: 100%;
  padding: 11px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--red);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  transition: background .2s, transform .15s, box-shadow .3s;
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.32);
}
.submit-btn:hover {
  background: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.4);
}
.submit-btn svg { transition: transform .2s; }
.submit-btn:hover svg { transform: translateX(3px); }
.form-foot {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 8px;
}

/* ============ Section Heads ============ */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 24px;
}
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.75); }
.section-head h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--ink);
}
.section-head h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
.section-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

/* ============ Features ============ */
.features {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 44px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.features-head {
  text-align: center;
  margin-bottom: 28px;
}
.features-head .eyebrow { margin-bottom: 10px; }
.features-head h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.6px;
  color: var(--ink);
}
.features-head h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
.features-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(15, 20, 25, 0.05);
  overflow: hidden;
}
.feature {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 20px;
  position: relative;
  transition: background .3s ease;
}
.feature + .feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line), transparent);
}
.feature:hover {
  background: linear-gradient(180deg, #fff 0%, rgba(200, 16, 46, 0.03) 100%);
}
.feature-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, #fff5f7 0%, #fde9ed 100%);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.feature-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(200, 16, 46, 0.18);
  transition: border-color .3s, transform .3s;
}
.feature-icon svg {
  width: 38px;
  height: 38px;
  position: relative;
  z-index: 1;
}
.feature:hover .feature-icon {
  transform: translateY(-4px) rotate(-3deg);
}
.feature:hover .feature-icon::after {
  border-color: var(--red);
  transform: scale(1.08);
}
.feature h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.3px;
  margin: 0;
}
.feature p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 220px;
  margin: 0;
}

/* ============ Testimonials ============ */
.testimonials {
  padding: 40px 28px 44px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

/* ===== Stat strip ===== */
.stat-strip {
  max-width: 1100px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}
.stat-pill {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s, border-color .3s;
}
.stat-pill:hover {
  transform: translateY(-4px);
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(15, 20, 25, 0.08);
}
.stat-pill-num {
  display: block;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
}
.stat-pill-num small {
  font-size: 18px;
  color: var(--red);
  font-weight: 500;
}
.stat-pill-label {
  display: block;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.video-card.reveal:nth-child(2) { transition-delay: .08s; }
.video-card.reveal:nth-child(3) { transition-delay: .16s; }
.video-card.reveal:nth-child(4) { transition-delay: .24s; }
.stat-pill.reveal:nth-child(2) { transition-delay: .08s; }
.stat-pill.reveal:nth-child(3) { transition-delay: .16s; }
.stat-pill.reveal:nth-child(4) { transition-delay: .24s; }
.video-gallery {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.video-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .3s;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(15, 20, 25, 0.16);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0, 0, 0, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}
.play-btn {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  transform: scale(0.85);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.video-card:hover .play-btn { opacity: 1; transform: scale(1); }
.video-caption {
  color: #fff;
  text-align: left;
  width: 100%;
}
.video-caption strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.video-caption span {
  display: block;
  font-size: 11.5px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* ============ Meet the Visionary ============ */
.visionary {
  padding: 48px 28px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.visionary::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.visionary-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.visionary-portrait {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portrait-card {
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  background: linear-gradient(160deg, #eef2f7 0%, #dde3eb 100%);
  position: relative;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px rgba(15, 20, 25, 0.18);
  overflow: hidden;
}
.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.portrait-badge svg { color: var(--red); }

.portrait-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cred-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
}
.cred-num {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--ink);
  line-height: 1;
}
.cred-num small {
  font-size: 18px;
  color: var(--red);
  font-weight: 500;
}
.cred-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-top: 6px;
  font-weight: 500;
}

.visionary-text .eyebrow { margin-bottom: 12px; }
.visionary-text h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 8px;
}
.visionary-text h2 em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}
.visionary-role {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.visionary-role strong { color: var(--ink); font-weight: 700; }

.visionary-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.visionary-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.v-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
}
.visionary-list li strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============ Book Appointment (end of page) ============ */
.book-end {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 40px 28px 52px;
  text-align: center;
}
.book-end-inner {
  max-width: 640px;
  margin: 0 auto;
}
.book-end h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
  color: var(--ink);
}
.book-end p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
}
.book-end p strong {
  color: var(--red);
  font-weight: 800;
  letter-spacing: 0.5px;
}
.book-end-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: background .2s, transform .15s, box-shadow .3s;
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.36);
}
.book-end-btn:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200, 16, 46, 0.5);
}
.book-end-btn svg { transition: transform .2s; }
.book-end-btn:hover svg { transform: translateX(3px); }

/* ============ Floating Contact FABs ============ */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 96px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: transform .2s, box-shadow .25s, width .25s;
  overflow: hidden;
}
.fab::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0;
  z-index: 0;
}
.fab svg { position: relative; z-index: 1; }
.fab-label {
  position: absolute;
  right: calc(100% + 10px);
  white-space: nowrap;
  background: var(--ink);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .2s, transform .25s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.fab-label::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid var(--ink);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}
.fab:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}
.fab:hover .fab-label {
  opacity: 1;
  transform: translateX(0);
}
.fab-whatsapp {
  background: #25D366;
}
.fab-whatsapp::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.45;
  animation: fabPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes fabPulse {
  0%   { transform: scale(0.85); opacity: 0.5; }
  100% { transform: scale(1.4);  opacity: 0; }
}
.fab-call {
  background: var(--red);
}

/* ============ Sticky Bottom CTA ============ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: rgba(15, 20, 25, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px;
  transform: translateY(0);
  transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s;
}
.sticky-cta.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.sticky-cta-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.sticky-cta-text strong {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.1px;
}
.sticky-cta-text span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

/* Countdown timer */
.sticky-timer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.timer-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}
.timer-clock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-variant-numeric: tabular-nums;
}
.timer-digit {
  display: inline-block;
  min-width: 38px;
  padding: 6px 8px;
  background: linear-gradient(180deg, #1a1f27 0%, #0a0d11 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3) inset, 0 0 10px rgba(200, 16, 46, 0.15);
}
.timer-sep {
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  animation: timerBlink 1s steps(2, start) infinite;
}
@keyframes timerBlink {
  to { opacity: 0.35; }
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: background .2s, transform .15s, color .2s, box-shadow .3s;
  box-shadow: 0 6px 18px rgba(200, 16, 46, 0.4);
}
.sticky-cta-btn:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-1px);
}
.sticky-cta-btn svg { transition: transform .2s; }
.sticky-cta-btn:hover svg { transform: translateX(2px); }

/* leave space at bottom so sticky bar never covers final CTA */
body { padding-bottom: 76px; }

/* ============ Exit Intent Modal ============ */
.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-modal.is-open {
  display: flex;
  animation: exitFade .25s ease;
}
.exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 13, 17, 0.75);
  backdrop-filter: blur(6px);
}
.exit-card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 460px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  animation: exitSlide .35s cubic-bezier(.2,.7,.2,1);
}
@keyframes exitFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes exitSlide {
  from { transform: translateY(40px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.exit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(15, 20, 25, 0.06);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
  z-index: 2;
}
.exit-close:hover {
  background: rgba(15, 20, 25, 0.12);
  transform: rotate(90deg);
}
.exit-hero {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe0e6 100%);
  padding: 32px 28px 22px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.exit-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.exit-hero h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--ink);
  margin-bottom: 8px;
}
.exit-hero h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--red);
}
.exit-hero p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.5;
}
.exit-hero p strong { color: var(--ink); font-weight: 600; }
.exit-form {
  padding: 22px 28px 28px;
}

/* ============ Video Modal (vertical) ============ */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
}
.video-modal.is-open {
  display: flex;
  animation: modalFade .25s ease;
}
@keyframes modalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal-inner {
  position: relative;
  height: min(92vh, 900px);
  aspect-ratio: 9 / 16;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  background: #000;
}
.modal-inner video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  display: block;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, transform .15s;
  z-index: 1;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

/* ============ Trust ============ */
.trust {
  background: var(--ink);
  color: #fff;
  padding: 44px 28px;
}
.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.trust-item {
  text-align: center;
  flex: 1;
}
.trust-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1;
  color: #fff;
}
.trust-num span {
  color: var(--red);
  font-size: 28px;
  font-weight: 500;
}
.trust-label {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* ============ Services ============ */
.services {
  padding: 96px 28px;
  background: var(--cream);
}
.services-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: all .3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(15, 20, 25, 0.08);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--sand);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon {
  background: var(--red);
  color: #fff;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
  color: var(--ink);
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ============ Why Us ============ */
.why {
  padding: 96px 28px;
  background: #fff;
}
.why-wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text .eyebrow { margin-bottom: 14px; }
.why-text h2 {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--ink);
}
.why-text h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--red);
}
.why-text > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.why-list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 500;
}
.why-bullet {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--line);
  text-align: left;
}
.stat-card:nth-child(2) { background: var(--ink); color: #fff; border-color: var(--ink); }
.stat-card:nth-child(3) { background: var(--red); color: #fff; border-color: var(--red); }
.stat-num {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span {
  font-size: 26px;
  font-weight: 500;
  opacity: 0.7;
}
.stat-card:nth-child(2) .stat-num,
.stat-card:nth-child(3) .stat-num { color: #fff; }
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--muted);
  font-weight: 500;
}
.stat-card:nth-child(2) .stat-label,
.stat-card:nth-child(3) .stat-label { color: rgba(255, 255, 255, 0.75); }

/* ============ CTA Band ============ */
.cta-band {
  background: var(--ink);
  padding: 80px 28px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.25), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.3px;
  transition: all .2s;
  box-shadow: 0 10px 28px rgba(200, 16, 46, 0.4);
}
.cta-btn:hover {
  background: #fff;
  color: var(--ink);
  transform: translateY(-2px);
}
.cta-btn svg { transition: transform .2s; }
.cta-btn:hover svg { transform: translateX(3px); }

/* ============ Footer ============ */
.footer {
  background: #0a0d11;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 28px 28px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.foot-logo {
  height: 42px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.foot-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
  line-height: 1.6;
}
.foot-col h4 {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}
.foot-col ul { list-style: none; }
.foot-col li {
  padding: 5px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color .2s;
  cursor: pointer;
}
.foot-col li:hover { color: var(--red); }
.copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
    scroll-behavior: auto !important;
  }
}

/* ============ Responsive ============ */
/* ============ Tablet ============ */
@media (max-width: 1024px) {
  body { padding-bottom: 76px; }
  .visionary { padding: 56px 24px; }
  .visionary-wrap { grid-template-columns: 1fr; gap: 36px; max-width: 560px; }
  .portrait-card { aspect-ratio: 16 / 10; }
  .portrait-monogram { font-size: 96px; }
  .visionary-text h2 { font-size: 36px; }

  .hero-wrap {
    display: block;
  }
  .hero-visual {
    aspect-ratio: auto;
  }
  .hero-visual img {
    height: auto;
    object-fit: contain;
    object-position: center;
  }
  .hero-form-card {
    position: static;
    transform: none;
    margin: 18px auto 0;
    width: 100%;
    max-width: 520px;
    padding: 24px 22px;
    backdrop-filter: none;
    background: #fff;
  }
  .form-title { font-size: 24px; margin-bottom: 6px; }
  .form-sub { font-size: 13px; margin-bottom: 18px; }
  .lead-form .field { margin-bottom: 11px; }
  .lead-form label { font-size: 11.5px; margin-bottom: 6px; }
  .lead-form input, .lead-form select { padding: 11px 14px; font-size: 14px; }
  .consent { font-size: 12px; }
  .submit-btn { padding: 13px; font-size: 14.5px; }
  .form-foot { font-size: 11px; margin-top: 12px; }

  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .feature + .feature::before { display: none; }
  .feature:nth-child(3)::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--line), transparent);
  }

  .video-gallery { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}

/* ============ Mobile ============ */
@media (max-width: 640px) {
  .topbar { display: none; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-inner { padding: 12px 16px; }
  .brand img { height: 32px; }
  .nav-cta { padding: 9px 16px; font-size: 12.5px; }

  .hero { padding: 20px 14px 48px; }
  .gold-offer {
    gap: 8px;
    padding: 12px 18px 14px;
    border-radius: 18px;
    margin-bottom: 14px;
  }
  .gold-tag { font-size: 9px; padding: 4px 10px; letter-spacing: 1.8px; }
  .gold-dot { width: 5px; height: 5px; }
  .gold-main { gap: 10px; flex-wrap: wrap; justify-content: center; }
  .gold-kg-num { font-size: 44px; letter-spacing: -2px; }
  .gold-kg-unit { font-size: 20px; }
  .gold-detail-top { font-size: 16px; }
  .gold-detail-bottom { font-size: 10px; letter-spacing: 1.2px; }
  .gold-free { font-size: 14px; padding: 6px 12px; letter-spacing: 3px; margin-left: 4px; }

  .hero-visual { border-radius: 14px; }
  .hero-visual img { border-radius: 14px; }
  .hero-form-card {
    padding: 22px 18px;
    margin-top: 14px;
    border-radius: 14px;
    max-width: 100%;
  }
  .form-title { font-size: 22px; }
  .form-sub { font-size: 13px; margin-bottom: 18px; }
  .lead-form .field { margin-bottom: 11px; }
  .lead-form input, .lead-form select { padding: 11px 14px; font-size: 14px; }
  .lead-form label { font-size: 11px; }
  .submit-btn { padding: 13px; font-size: 14.5px; }
  .consent { font-size: 11.5px; }

  .features { padding: 40px 14px; }
  .features-head { margin-bottom: 24px; }
  .features-head h2 { font-size: 24px; }
  .features-inner { border-radius: 14px; }
  .feature { padding: 22px 12px; gap: 10px; }
  .feature-icon { width: 56px; height: 56px; border-radius: 16px; }
  .feature-icon svg { width: 28px; height: 28px; }
  .feature h3 { font-size: 15px; }
  .feature p { font-size: 12px; max-width: 180px; }

  .testimonials { padding: 48px 14px; }
  .visionary { padding: 44px 16px; }
  .visionary-wrap { gap: 24px; }
  .portrait-card { aspect-ratio: 5 / 4; border-radius: 16px; }
  .portrait-monogram { font-size: 72px; letter-spacing: -3px; }
  .portrait-credentials { gap: 8px; }
  .cred-item { padding: 12px 10px; border-radius: 10px; }
  .cred-num { font-size: 22px; }
  .cred-label { font-size: 10px; }
  .visionary-text h2 { font-size: 28px; }
  .visionary-role { font-size: 14px; margin-bottom: 18px; padding-bottom: 16px; }
  .visionary-list li { font-size: 13.5px; gap: 10px; }
  .video-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-caption strong { font-size: 12px; }
  .video-caption span { font-size: 10.5px; }

  .book-end { padding: 48px 18px 64px; }
  .book-end h2 { font-size: 24px; }
  .book-end p { font-size: 14px; }
  .book-end-btn { padding: 14px 28px; font-size: 14px; }

  .sticky-cta { padding: 10px 14px; }
  .sticky-cta-text span { display: none; }
  .sticky-cta-text strong { font-size: 12.5px; }
  .sticky-cta-btn { padding: 10px 16px; font-size: 12.5px; }
  .sticky-timer { gap: 8px; }
  .timer-label { font-size: 9.5px; letter-spacing: 1px; }
  .timer-digit { font-size: 16px; min-width: 30px; padding: 5px 6px; }
  .timer-sep { font-size: 16px; }
  .fab-stack { right: 14px; bottom: 84px; gap: 10px; }
  .fab { width: 48px; height: 48px; }
  .fab svg { width: 22px; height: 22px; }
  .fab-label { display: none; }

  .deco-dots, .deco-blur { display: none; }

  .exit-modal { padding: 14px; }
  .exit-card { border-radius: 16px; max-height: 94vh; }
  .exit-hero { padding: 24px 20px 18px; border-radius: 16px 16px 0 0; }
  .exit-hero h2 { font-size: 22px; }
  .exit-hero p { font-size: 12.5px; }
  .exit-form { padding: 18px 20px 22px; }
}

/* ============ Extra small ============ */
@media (max-width: 380px) {
  .gold-kg-num { font-size: 38px; }
  .gold-kg-unit { font-size: 17px; }
  .gold-detail-top { font-size: 14px; }
  .gold-detail-bottom { font-size: 9.5px; }
  .gold-free { font-size: 13px; padding: 5px 10px; }
  .form-title { font-size: 20px; }
  .sticky-cta-text strong { font-size: 11.5px; }
  .sticky-cta-btn { padding: 9px 14px; font-size: 12px; }
}
