/* =========================================================
   Mobile Cover Factory — Wholesale Landing Page
   Style: Factory + Inventory Showcase
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --bg-soft-2: #eef2f8;
  --border: #e5e9f0;
  --border-strong: #d6dde8;
  --text: #0b1220;
  --text-2: #3b465a;
  --muted: #6b7689;
  --blue: #1e3a8a;
  --blue-2: #2451c7;
  --blue-3: #e9efff;
  --orange: #f97316;
  --orange-2: #ea580c;
  --orange-soft: #fff1e6;
  --green: #16a34a;
  --red: #dc2626;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 6px 24px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 30px 60px -20px rgba(15, 23, 42, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: var(--blue-2); text-decoration: none; }
a:hover { color: var(--blue); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2.2rem, 5.2vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 700; }

p { margin: 0 0 1em; color: var(--text-2); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-body);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, background-color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: normal;
  text-align: center;
  max-width: 100%;
  line-height: 1.2;
}
.btn-sm { padding: 10px 16px; font-size: .85rem; }
.btn-md { padding: 13px 22px; }
.btn-lg { padding: 18px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(30, 58, 138, 0.6);
}
.btn-primary:hover { background: var(--blue-2); color: #fff; }

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(249, 115, 22, 0.6);
}
.btn-orange:hover { background: var(--orange-2); color: #fff; }

.btn-outline {
  background: #fff;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.logo-mark {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  width: 22px;
  height: 22px;
  padding: 3px 4px;
  background: var(--blue);
  border-radius: 6px;
}
.logo-bar { height: 2px; background: #fff; border-radius: 1px; }
.logo-bar:nth-child(2) { width: 75%; }
.logo-bar:nth-child(3) { width: 50%; background: var(--orange); height: 2px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-line1 { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.logo-line2 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; color: var(--text); margin-top: 2px; }

.site-nav { display: flex; gap: 26px; }
.site-nav a {
  color: var(--text-2);
  font-weight: 600;
  font-size: .92rem;
  position: relative;
}
.site-nav a:hover { color: var(--blue); }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--orange); transition: width .25s ease;
}
.site-nav a:hover::after { width: 100%; }

.hide-mobile { display: inline-flex; }
@media (max-width: 820px) {
  .site-nav { display: none; }
  .hide-mobile { display: none; }
}

/* ===== Hero ===== */
.hero {
  padding: 56px 0 32px;
  background:
    radial-gradient(900px 400px at 90% -10%, rgba(36, 81, 199, 0.10), transparent 60%),
    radial-gradient(700px 400px at -10% 30%, rgba(249, 115, 22, 0.08), transparent 60%),
    #fff;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--blue-3);
  color: var(--blue);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 4px rgba(249,115,22,.18);
}
.hero h1 .highlight {
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero .lead { font-size: 1.12rem; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0 20px; }

.trust-badges {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 0;
  margin: 22px 0 0;
  font-size: .9rem;
  color: var(--text-2);
}
.trust-badges li { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; }
.check { color: var(--green); font-weight: 800; }

.hero-media { position: relative; }
.hero-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: #0b1220;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-image:
    radial-gradient(600px 300px at 50% 50%, rgba(36, 81, 199, 0.18), transparent 65%);
}
.hero-video-wrap video {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  background: #0b1220;
}
.hero-video-wrap video::-webkit-media-controls-panel { background: rgba(11,18,32,.6); }

/* Custom play button */
.hero-play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 96px; height: 96px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--blue);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  z-index: 3;
  box-shadow: 0 18px 40px -10px rgba(11,18,32,0.55), 0 0 0 8px rgba(255,255,255,0.18);
  transition: transform .2s ease, background .2s ease, color .2s ease;
  font-family: var(--font-body);
}
.hero-play-btn svg { width: 34px; height: 34px; margin-left: 4px; }
.hero-play-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
}
.hero-play-btn:hover { background: var(--blue); color: #fff; transform: scale(1.05); }
.hero-play-btn:hover .hero-play-label { color: #fff; }
.hero-play-btn.is-hidden { display: none; }
@keyframes playPulse {
  0%, 100% { box-shadow: 0 18px 40px -10px rgba(11,18,32,0.55), 0 0 0 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 18px 40px -10px rgba(11,18,32,0.55), 0 0 0 14px rgba(255,255,255,0); }
}
.hero-play-btn:not(.is-hidden) { animation: playPulse 2.2s ease-in-out infinite; }
.hero-video-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(11, 18, 32, 0.78);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #f97316;
  box-shadow: 0 0 0 4px rgba(249,115,22,.3);
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(249,115,22,.3); }
  50% { box-shadow: 0 0 0 8px rgba(249,115,22,0); }
}
.hero-stat {
  position: absolute;
  right: 14px; bottom: 14px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 28px);
}
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--text); }
.stat-label { font-size: .78rem; color: var(--muted); }

.inventory-strip {
  margin-top: 48px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 14px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.strip-item { text-align: center; }
.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}
.strip-item span { font-size: .78rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-video-wrap { aspect-ratio: 4 / 3; }
  .inventory-strip { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-play-btn { width: 80px; height: 80px; }
  .hero-play-btn svg { width: 28px; height: 28px; }
  .hero-stat { right: 10px; bottom: 10px; padding: 10px 14px; }
  .stat-num { font-size: 1.1rem; }
  .stat-label { font-size: .72rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 24px; }
  .hero-video-wrap { aspect-ratio: 16 / 11; }
  .hero-video-tag { font-size: .68rem; padding: 6px 10px; top: 10px; left: 10px; }
  .hero h1 { font-size: 2rem; line-height: 1.15; }
  .hero .lead { font-size: 1rem; }
  .trust-badges { gap: 10px 14px; font-size: .85rem; }
  .inventory-strip { padding: 14px 10px; gap: 8px; }
  .strip-item strong { font-size: 1.1rem; }
  .strip-item span { font-size: .7rem; }
}

/* ===== Section base ===== */
.section { padding: 84px 0; border-bottom: 1px solid var(--border); }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.kicker {
  display: inline-block;
  padding: 6px 14px;
  background: var(--blue-3);
  color: var(--blue);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.kicker-light { background: rgba(255,255,255,.18); color: #fff; }

@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 32px; }
}

/* ===== Categories ===== */
.section-cats { background: #fff; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.cat-card:hover {
  transform: translateY(-3px);
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-3);
  color: var(--blue);
  border-radius: 12px;
  margin-bottom: 14px;
}
.cat-icon svg { width: 28px; height: 28px; }
.cat-card h3 { margin-bottom: 4px; font-size: 1.02rem; }
.cat-card p { color: var(--muted); font-size: .9rem; margin: 0; }

@media (max-width: 980px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* showcase */
.showcase { margin-top: 64px; }
.showcase-head { text-align: center; margin-bottom: 28px; }
.showcase-head h3 { font-size: 1.35rem; }
.showcase-head p { color: var(--muted); }
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.showcase-card {
  margin: 0;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.showcase-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.showcase-card img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  background: #fff;
  padding: 14px;
}
.showcase-card figcaption {
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border);
  background: #fff;
}
.showcase-card figcaption strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--text); }
.showcase-card figcaption span { font-size: .85rem; color: var(--muted); }

@media (max-width: 820px) {
  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card img { height: 240px; }
}

/* ===== Compare section ===== */
.section-compare { background: var(--bg-soft); }
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}
.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.compare-card ul { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.compare-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: .98rem;
  font-weight: 500;
}
.compare-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tag-red { background: #fee2e2; color: var(--red); }
.tag-green { background: #dcfce7; color: var(--green); }
.compare-old { border-color: #fecaca; }
.compare-new { border-color: #bbf7d0; box-shadow: 0 18px 40px -20px rgba(22, 163, 74, 0.25); }
.x { color: var(--red); font-weight: 800; }
.vs-mark {
  width: 64px; height: 64px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--text); color: #fff;
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; letter-spacing: .04em;
  box-shadow: var(--shadow-md);
}

@media (max-width: 820px) {
  .compare-grid { grid-template-columns: 1fr; }
  .vs-mark { margin: 0 auto; }
}

/* ===== Steps ===== */
.section-steps { background: #fff; }
.steps-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  counter-reset: steps;
}
.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 18px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.step-card:hover {
  background: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step-card p { color: var(--muted); font-size: .9rem; margin: 0; }

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Wholesale options ===== */
.section-options { background: var(--bg-soft); }
.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.option-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.option-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.option-blue { border-top: 4px solid var(--blue); }
.option-orange { border-top: 4px solid var(--orange); }
.option-head h3 { font-size: 1.5rem; margin-bottom: 4px; }
.option-sub { color: var(--muted); margin: 0; }
.option-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--blue-3);
  color: var(--blue);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.badge-orange { background: var(--orange-soft); color: var(--orange-2); }
.option-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.option-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-soft);
  border-radius: 10px;
  font-size: .95rem;
  color: var(--text-2);
}
.option-list strong { margin-right: auto; color: var(--text); font-weight: 600; }
.li-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 8px;
  font-size: .9rem;
  border: 1px solid var(--border);
}

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

/* ===== Why grid ===== */
.section-why { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.why-card:hover {
  background: #fff;
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: inline-flex;
  width: 56px; height: 56px;
  align-items: center; justify-content: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}
.why-card h3 { margin-bottom: 6px; }
.why-card p { color: var(--muted); margin: 0; font-size: .95rem; }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ===== Checklist ===== */
.section-check { background: var(--bg-soft); }
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
}
.check-copy h2 { text-align: left; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--bg-soft);
  border-radius: 12px;
}
.check-list strong { display: block; font-weight: 700; color: var(--text); font-size: .98rem; }
.check-list span { color: var(--muted); font-size: .85rem; }
.ck {
  width: 28px; height: 28px;
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-weight: 800; font-size: .85rem;
}

@media (max-width: 900px) {
  .check-grid { grid-template-columns: 1fr; gap: 28px; }
  .check-list { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.section-faq { background: #fff; }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 600;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-body { padding-top: 10px; color: var(--text-2); }
.faq-body p { margin: 0; }

/* ===== CTA ===== */
.section-cta {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(249, 115, 22, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(36, 81, 199, 0.25), transparent 60%),
    #0b1220;
  color: #fff;
  border-bottom: 0;
  padding: 84px 0;
}
.cta-card {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-card h2 { color: #fff; }
.cta-card p { color: rgba(255,255,255,.78); font-size: 1.1rem; }
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 28px 0 16px;
}
.cta-note { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: 12px; }

/* ===== Footer ===== */
.site-footer {
  background: #0b1220;
  color: rgba(255,255,255,.78);
  padding: 64px 0 24px;
}
.site-footer h4 {
  color: #fff;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-family: var(--font-body);
  font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--orange); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand .logo-line1 { color: rgba(255,255,255,.7); }
.foot-brand .logo-line2 { color: #fff; }
.foot-brand p { color: rgba(255,255,255,.6); margin-top: 14px; max-width: 320px; font-size: .92rem; }

.foot-seo {
  padding: 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-seo p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.7; margin: 0; }
.foot-seo strong { color: rgba(255,255,255,.85); font-weight: 600; }

.foot-bottom {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}
.foot-bottom p { margin: 0; }
.foot-links { display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; word-break: break-word; }
.foot-links a { word-break: break-word; }
.foot-links span { opacity: .4; }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .foot-bottom { justify-content: flex-start; }
}

/* ===== Subtle reveal animation ===== */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
