/* ═══════════════════════════════════════════════════
   TABLESITES v3 — Lesse-Inspired Editorial Design
   Warm Cream + Terracotta · Professional · Elegant
   Production build (vanilla HTML/CSS/JS)
   ═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Caveat:wght@600;700&display=swap');

:root {
  --bg: #FAF7F2; --bg-warm: #F3EDE4; --bg-white: #FFFFFF;
  --bg-dark: #1A1612; --bg-darker: #12100D;
  --brand: #C85A42; --brand-hover: #B14A35; --brand-light: #FAEAE6;
  --brand-soft: #F2D4CC; --brand-dark: #8C3E2E;
  --text: #1A1612; --text-muted: #6B6058; --text-light: #857B6E;
  --border: rgba(26,22,18,0.07); --border-strong: rgba(26,22,18,0.13);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-script: 'Caveat', cursive;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px; --r-2xl: 28px; --r-full: 9999px;
  --shadow-xs: 0 1px 2px rgba(26,22,18,0.03);
  --shadow-sm: 0 2px 8px rgba(26,22,18,0.04);
  --shadow-md: 0 6px 24px rgba(26,22,18,0.06);
  --shadow-lg: 0 12px 48px rgba(26,22,18,0.08);
  --shadow-xl: 0 24px 64px rgba(26,22,18,0.1);
  --shadow-brand: 0 8px 28px rgba(200,90,66,0.22);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-py: 140px; --container-px: 32px; --container-max: 1100px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
/* Keyboard-visible focus (accessibility) */
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 3px; }
.cta-form input:focus-visible { outline: 2px solid rgba(255,255,255,0.85); outline-offset: 2px; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
::selection { background: var(--brand); color: white; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-px); }
.section { padding: var(--section-py) 0; position: relative; }

/* ── Section Numbering ── */
.section-num {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--brand); display: flex;
  align-items: center; gap: 12px; margin-bottom: 20px;
}
.section-num::after {
  content: ''; flex: 1; max-width: 48px; height: 1px; background: var(--brand); opacity: 0.4;
}

/* ── Typography ── */
.heading-hero {
  font-family: var(--font-display); font-size: clamp(40px, 6vw, 76px);
  font-weight: 700; line-height: 1.06; letter-spacing: -0.025em; color: var(--text);
}
.heading-lg {
  font-family: var(--font-display); font-size: clamp(30px, 4vw, 48px);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.015em;
}
.heading-md {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500; line-height: 1.25;
}
.body-lg { font-size: 17px; line-height: 1.75; color: var(--text-muted); }
.text-brand { color: var(--brand); }
.italic { font-style: italic; }
.script { font-family: var(--font-script); font-weight: 600; color: var(--brand); }
.eyebrow {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; font-family: var(--font-body); font-size: 14px;
  font-weight: 600; border-radius: var(--r-full);
  transition: all 0.4s var(--ease); position: relative; overflow: hidden; white-space: nowrap;
}
.btn-primary { background: var(--brand); color: white; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-hover); transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,90,66,0.28); }
.btn-primary:active { transform: translateY(0); }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: translateX(-100%); transition: transform 0.6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border-strong); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-dark { background: var(--bg-dark); color: var(--bg); }
.btn-dark:hover { background: #2a2420; transform: translateY(-2px); }

/* ── Cards ── */
.v3-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: all 0.45s var(--ease);
}
.v3-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }

/* ── Keyframes ── */
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@keyframes scaleBreath { 0%,100%{transform:scale(1)} 50%{transform:scale(1.015)} }

/* ── Scroll Progress ── */
.scroll-bar { position:fixed;top:0;left:0;height:2px;width:100%;background:var(--brand);z-index:10000;transform-origin:left;transform:scaleX(0);border-radius:0 1px 1px 0; }

/* ── WhatsApp ── */
.wa-btn { position:fixed;bottom:24px;right:24px;z-index:9000;width:52px;height:52px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 16px rgba(37,211,102,0.3);transition:all 0.3s var(--ease); }
.wa-btn:hover { transform:scale(1.08) translateY(-2px); box-shadow:0 6px 20px rgba(37,211,102,0.45); }

/* ── Testimonial Marquee ── */
.testi-track { display:flex;gap:24px;animation:marquee 40s linear infinite;width:max-content; }
.testi-track:hover { animation-play-state:paused; }

/* ── Scroll reveal (added by JS; no-JS keeps content visible) ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-img-wrap, .hero-copy { transition: none !important; }
}

/* ═══════════════════════════════════════════════════
   Component styles (extracted from v3 inline styles)
   ═══════════════════════════════════════════════════ */

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  padding: 20px 0; background: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.5s var(--ease);
}
.nav.scrolled {
  padding: 10px 0; background: rgba(250,247,242,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; border-radius: 9px; background: var(--brand); display: flex; align-items: center; justify-content: center; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--text); letter-spacing: -0.01em; }
.logo-text span { font-weight: 400; }
.logo-text.dark { color: #FAF7F2; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.3s; }
.nav-link:hover { color: var(--brand); }
.mob-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.mob-btn span { width: 20px; height: 1.5px; background: var(--text); border-radius: 1px; transition: all 0.3s; }
.mob-btn.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.mob-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }
.mob-menu {
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(250,247,242,0.97); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); padding: 28px 0;
  display: none; flex-direction: column; align-items: center; gap: 18px;
}
.mob-menu.open { display: flex; }
.mob-menu a:not(.btn) { font-size: 15px; font-weight: 500; color: var(--text-muted); }

/* ── Language switch ── */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; background: var(--bg-warm); border: 1px solid var(--border); border-radius: var(--r-full); padding: 3px; }
.lang-btn { font-size: 12px; font-weight: 600; padding: 5px 11px; border-radius: var(--r-full); color: var(--text-muted); transition: all 0.25s var(--ease); line-height: 1; }
.lang-btn:hover:not(.active) { color: var(--brand); }
.lang-btn.active { background: var(--brand); color: #fff; }
.nav.scrolled .lang-switch { background: rgba(255,255,255,0.55); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding-top: 100px; padding-bottom: 60px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 20%; right: -10%; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(circle, rgba(200,90,66,0.04) 0%, transparent 70%);
  filter: blur(60px); pointer-events: none;
}
/* Two-column hero: copy left, media right, vertically centered. */
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.hero-copy { max-width: 560px; will-change: transform; }
.hero-img-wrap { position: relative; max-width: 520px; margin-left: auto; margin-right: 0; will-change: transform; transition: transform 0.18s ease-out; }

/* ── Hero media (looping clay-storefront video in the rounded frame) ── */
.hero-media { width: 100%; height: auto; display: block; background: var(--bg-warm); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-copy { max-width: 100%; }
  .hero-img-wrap { margin: 0 auto; max-width: 440px; }
}
.hero-img-frame {
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--border);
}
.float-badge {
  position: absolute; z-index: 3; background: white;
  border-radius: var(--r-lg); padding: 10px 16px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.hero-badge-1 { top: -16px; left: -20px; animation: float 5s ease-in-out infinite; }
.hero-badge-2 { bottom: 24px; left: -28px; gap: 6px; animation: float 6s ease-in-out 1.5s infinite; }
.hero-badge-3 { top: 38%; right: -24px; animation: float 7s ease-in-out 2.5s infinite; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse 2s infinite; }

/* ── Services ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-bottom: 48px; }
.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-card { padding: 0; cursor: pointer; }
.service-card.expanded { border: 1px solid var(--brand-soft); }
.service-head { padding: 32px 28px; display: flex; align-items: flex-start; gap: 20px; }
.service-icon {
  width: 48px; height: 48px; border-radius: var(--r-md); flex-shrink: 0;
  background: var(--brand-light); display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease); color: var(--brand);
}
.service-card.expanded .service-icon { background: var(--brand); color: white; }
.service-title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.service-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.service-num { font-size: 12px; font-weight: 600; color: var(--text-light); letter-spacing: 0.1em; }
.service-desc { font-size: 15px; color: var(--text-muted); line-height: 1.65; }
.service-toggle {
  width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border-strong); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.35s var(--ease); color: var(--text-light); background: transparent;
}
.service-card.expanded .service-toggle { transform: rotate(180deg); color: var(--brand); background: var(--brand-light); border-color: var(--brand-soft); }
.service-detail-wrap { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.service-card.expanded .service-detail-wrap { max-height: 300px; }
.service-details {
  padding: 0 28px 28px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 10px;
  border-top: 1px solid var(--border); padding-top: 20px; margin-left: 68px;
}
.detail-item { display: flex; align-items: center; gap: 8px; }
.detail-item span { font-size: 13px; color: var(--text-muted); }

/* ── Stats grid ── */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--border); border-radius: var(--r-xl); overflow: hidden; }
.stat-cell { background: var(--bg); padding: 32px 24px; text-align: center; }
.stat-val { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--brand); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 8px; }

/* ── Portfolio Carousel ── */
.carousel-outer { position: relative; }
.carousel-window { overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--border); background: var(--bg-white); box-shadow: var(--shadow-md); }
.carousel-track { display: flex; transition: transform 0.6s var(--ease); }
.slide { min-width: 100%; flex-shrink: 0; }
.slide-preview { background: var(--bg-warm); border-bottom: 1px solid var(--border); overflow: hidden; position: relative; }
.slide-info { padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.slide-info-main { flex: 1; min-width: 240px; }
.slide-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.slide-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.1; }
.slide-subtitle { font-size: 12px; color: var(--text-light); }
.slide-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.slide-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.slide-tag { font-size: 10px; font-weight: 600; padding: 3px 10px; border-radius: var(--r-full); }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border); }
.metric-cell { padding: 18px 16px; text-align: center; border-right: 1px solid var(--border); }
.metric-cell:last-child { border-right: none; }
.metric-val { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1; }
.metric-label { font-size: 10px; color: var(--text-light); margin-top: 4px; }

.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%; background: var(--bg-white);
  border: 1px solid var(--border-strong); display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  transition: all 0.3s var(--ease); box-shadow: var(--shadow-sm); color: var(--text);
}
.carousel-arrow:hover { background: var(--brand); color: white; border-color: var(--brand); }
.carousel-nav { position: absolute; top: 35%; z-index: 5; }
.carousel-nav.left { left: -22px; }
.carousel-nav.right { right: -22px; }

.dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot { width: 8px; height: 8px; border-radius: 4px; background: var(--border-strong); border: none; cursor: pointer; transition: all 0.35s var(--ease); }
.dot.active { width: 28px; background: var(--brand); }

.coming-soon { margin-top: 24px; padding: 28px; border-radius: var(--r-xl); text-align: center; border: 1px dashed var(--border-strong); display: flex; align-items: center; justify-content: center; gap: 8px; }
.coming-soon p { font-size: 13px; color: var(--text-light); }

/* ── Browser-frame previews ── */
.bframe { background: #1a1a1a; border-radius: 12px 12px 0 0; padding: 8px 8px 0; max-width: 580px; margin: 0 auto; }
.bframe-dots { display: flex; gap: 5px; padding: 4px 8px 6px; }
.bframe-dots span { width: 8px; height: 8px; border-radius: 50%; opacity: 0.6; }
.bframe-screen { border-radius: 6px 6px 0 0; height: 280px; overflow: hidden; }
.bframe-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.bframe-base { background: #2a2a2a; height: 12px; border-radius: 0 0 8px 8px; max-width: 620px; margin: 0 auto; }
.preview-wrap { position: relative; padding: 20px 32px 0; }
.preview-badge { position: absolute; background: white; border-radius: 10px; padding: 8px 14px; box-shadow: var(--shadow-md); border: 1px solid var(--border); z-index: 3; display: flex; align-items: center; gap: 6px; }
.preview-badge-tr { top: 36px; right: 8px; }
.preview-badge-bl { bottom: 44px; left: 8px; }
.badge-ico { width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }

/* ── Testimonials ── */
.testi-section { padding: 80px 0; background: var(--bg-warm); overflow: hidden; }
.testi-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 28px 24px; min-width: 340px; max-width: 380px;
  display: flex; flex-direction: column; gap: 16px; flex-shrink: 0; box-shadow: var(--shadow-xs);
}
.testi-stars { display: flex; gap: 2px; }
.testi-ico { width: 34px; height: 34px; border-radius: var(--r-md); background: var(--brand-light); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.testi-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; }
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--text-light); }

/* ── Process ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: var(--r-xl); overflow: hidden; }
.process-cell { background: var(--bg); padding: 36px 28px; display: flex; flex-direction: column; gap: 14px; transition: background 0.3s; }
.process-cell:hover { background: var(--bg-white); }
.process-top { display: flex; justify-content: space-between; align-items: center; }
.process-icon { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--brand-light); display: flex; align-items: center; justify-content: center; color: var(--brand); }
.process-num { font-size: 12px; font-weight: 600; color: var(--text-light); letter-spacing: 0.1em; }
.process-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.process-desc { font-size: 14px; line-height: 1.65; color: var(--text-muted); }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.price-card { padding: 0; display: flex; flex-direction: column; }
.price-card.popular { border: 2px solid var(--brand); box-shadow: var(--shadow-brand); }
.price-ribbon { background: var(--brand); color: white; text-align: center; padding: 6px 0; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.price-body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.price-name { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.price-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.price-amount { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--text); }
.price-card.popular .price-amount { color: var(--brand); }
.price-period { font-size: 13px; color: var(--text-light); margin-left: 4px; }
.price-mo { font-size: 12px; color: var(--brand); font-weight: 600; margin-bottom: 18px; }
.price-spacer { margin-bottom: 18px; }
.price-features { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.price-features .detail-item span { font-size: 13px; }

/* ── About ── */
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: center; }
.about-photo {
  aspect-ratio: 4/5; border-radius: var(--r-xl);
  background: linear-gradient(160deg, var(--brand-light), var(--bg-white));
  border: 1px solid var(--border); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.about-photo-ico { width: 64px; height: 64px; border-radius: var(--r-md); background: var(--brand-light); border: 1px solid var(--brand-soft); display: flex; align-items: center; justify-content: center; color: var(--brand); }
.about-photo p { font-size: 12px; color: var(--text-light); font-style: italic; }
.about-photo.has-img { padding: 0; overflow: hidden; background: var(--bg-warm); }
.about-photo.has-img img { width: 100%; height: 100%; object-fit: cover; object-position: 74% 40%; display: block; }
.about-photo.has-img .about-photo-fallback { display: none !important; }
.about-photo-fallback { flex-direction: column; align-items: center; justify-content: center; gap: 12px; width: 100%; height: 100%; }
.about-quote { padding: 16px 20px; border-radius: var(--r-md); background: var(--brand-light); border-left: 3px solid var(--brand); }
.about-quote p { font-family: var(--font-display); font-style: italic; font-size: 15px; color: var(--brand-dark); line-height: 1.6; }

/* ── FAQ ── */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; }
.faq-q-text { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--text); transition: color 0.3s; }
.faq-item.open .faq-q-text { color: var(--brand); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid var(--border-strong); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.35s var(--ease); color: var(--text-light);
}
.faq-item.open .faq-icon { border-color: var(--brand); background: var(--brand-light); color: var(--brand); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease); }
.faq-item.open .faq-a { max-height: 160px; }
.faq-a p { font-size: 14px; color: var(--text-muted); line-height: 1.7; padding-bottom: 18px; max-width: 560px; }

/* ── CTA ── */
.cta { background: var(--brand); position: relative; overflow: hidden; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(ellipse at 25% 50%, rgba(255,255,255,0.06) 0%, transparent 60%); pointer-events: none; }
.cta-inner { max-width: 540px; text-align: center; position: relative; z-index: 2; margin: 0 auto; }
.cta-title { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); font-weight: 700; color: white; line-height: 1.1; margin-bottom: 14px; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; }
.cta-form { display: flex; flex-direction: column; gap: 12px; text-align: left; background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--r-xl); padding: 24px; border: 1px solid rgba(255,255,255,0.12); }
.cta-form label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); margin-bottom: 4px; display: block; }
.cta-form input { width: 100%; padding: 11px 14px; border-radius: var(--r-md); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: white; font-size: 14px; outline: none; transition: border-color 0.3s; font-family: inherit; }
.cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cta-form input:focus { border-color: rgba(255,255,255,0.4); }
.cta-submit { padding: 13px 28px; border-radius: var(--r-full); background: white; color: var(--brand); font-weight: 700; font-size: 14px; margin-top: 6px; transition: all 0.3s var(--ease); cursor: pointer; border: none; box-shadow: 0 4px 14px rgba(0,0,0,0.12); }
.cta-submit:hover { transform: translateY(-2px); }
.cta-success { padding: 40px; border-radius: var(--r-xl); background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); }
.cta-success-ico { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 14px; background: rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; color: white; }
.cta-success h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: white; margin-bottom: 6px; }
.cta-success p { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ── Footer ── */
.footer { padding: 56px 0 28px; background: var(--bg-dark); color: #FAF7F2; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-tag { font-size: 14px; color: rgba(250,247,242,0.4); margin-top: 14px; line-height: 1.7; max-width: 240px; }
.footer-h { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(250,247,242,0.5); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.ft-link { font-size: 14px; color: rgba(250,247,242,0.35); transition: color 0.3s; display: flex; align-items: center; gap: 6px; }
.ft-link:hover { color: var(--brand); }
.footer-rule { width: 100%; height: 1px; background: rgba(250,247,242,0.06); margin-bottom: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 12px; color: rgba(250,247,242,0.25); }
.footer-slogan { font-size: 13px; font-family: var(--font-display); font-style: italic; color: rgba(250,247,242,0.25); }

/* ═══════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 96px; --container-px: 20px; }
  .desktop-nav { display: none !important; }
  .mob-btn { display: flex !important; }
  .hero-img-wrap { margin-right: 0 !important; margin-left: 0 !important; }
  .float-badge { display: none !important; }
  .two-col { grid-template-columns: 1fr !important; gap: 16px !important; }
  .stats-grid { grid-template-columns: 1fr !important; }
  .metrics-grid { grid-template-columns: 1fr 1fr !important; }
  .carousel-nav { display: none !important; }
  .process-grid { grid-template-columns: 1fr 1fr !important; }
  .price-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  .about-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}
@media (max-width: 480px) {
  :root { --section-py: 72px; --container-px: 16px; }
  .process-grid { grid-template-columns: 1fr !important; }
}
