/* ============ GLORIOUS BUSINESS CENTER & PRINTING PRESS ============ */

/* ---------- Design Tokens ---------- */
:root {
  /* Type scale (fluid) */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

  /* Spacing */
  --space-1: 0.25rem;  --space-2: 0.5rem;  --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.25rem; --space-6: 1.5rem;
  --space-8: 2rem;     --space-10: 2.5rem; --space-12: 3rem;
  --space-16: 4rem;    --space-20: 5rem;   --space-24: 6rem;  --space-32: 8rem;

  /* Radius */
  --radius-sm: 0.5rem; --radius-md: 0.875rem; --radius-lg: 1.25rem;
  --radius-xl: 1.75rem; --radius-full: 9999px;

  --transition-interactive: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --content-default: 1080px;
  --content-wide: 1280px;

  /* Fonts */
  --font-display: 'Clash Display', 'Satoshi', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;

  /* Brand gradient */
  --grad-brand: linear-gradient(120deg, #7c3aed 0%, #5b6dfb 45%, #2563eb 100%);
  --grad-brand-soft: linear-gradient(120deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
}

/* ---------- Light (default) ---------- */
:root, [data-theme="light"] {
  --color-bg: #f6f6fb;
  --color-surface: #ffffff;
  --color-surface-2: #f0f0f9;
  --color-surface-3: #e8e8f5;
  --color-border: #e2e2f0;
  --color-divider: #ececf6;

  --color-text: #14122b;
  --color-text-muted: #5a5775;
  --color-text-faint: #9a98b3;
  --color-text-inverse: #ffffff;

  --color-primary: #6d28d9;
  --color-primary-2: #4f46e5;
  --color-accent: #2563eb;
  --color-primary-tint: #efe9fe;

  --shadow-sm: 0 1px 3px rgba(60, 40, 120, 0.08);
  --shadow-md: 0 10px 30px rgba(80, 50, 160, 0.12);
  --shadow-lg: 0 24px 60px rgba(70, 40, 150, 0.18);
  --shadow-glow: 0 16px 50px rgba(109, 40, 217, 0.35);

  --hero-bg: #0c0a1f;
}

/* ---------- Dark ---------- */
[data-theme="dark"] {
  --color-bg: #0a0918;
  --color-surface: #14122b;
  --color-surface-2: #1a1838;
  --color-surface-3: #221f44;
  --color-border: #2a2750;
  --color-divider: #211e42;

  --color-text: #ecebf7;
  --color-text-muted: #a5a2c5;
  --color-text-faint: #6f6c93;
  --color-text-inverse: #ffffff;

  --color-primary: #a78bfa;
  --color-primary-2: #818cf8;
  --color-accent: #60a5fa;
  --color-primary-tint: #1f1b44;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 16px 50px rgba(124, 58, 237, 0.45);

  --hero-bg: #07061a;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0a0918; --color-surface: #14122b; --color-surface-2: #1a1838;
    --color-surface-3: #221f44; --color-border: #2a2750; --color-divider: #211e42;
    --color-text: #ecebf7; --color-text-muted: #a5a2c5; --color-text-faint: #6f6c93;
    --color-primary: #a78bfa; --color-primary-2: #818cf8; --color-accent: #60a5fa;
    --color-primary-tint: #1f1b44;
  }
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: none; text-size-adjust: none;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh; line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { text-wrap: balance; line-height: 1.12; font-family: var(--font-display); font-weight: 600; letter-spacing: 0.005em; }
p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; }

::selection { background: rgba(124, 58, 237, 0.25); }

:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: var(--radius-sm); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Layout helpers ---------- */
.container { width: min(100% - 2.5rem, var(--content-wide)); margin-inline: auto; }
.container-narrow { width: min(100% - 2.5rem, var(--content-default)); margin-inline: auto; }
section { padding-block: clamp(var(--space-16), 9vw, var(--space-32)); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-primary);
  padding: var(--space-2) var(--space-4);
  background: var(--color-primary-tint);
  border-radius: var(--radius-full);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-brand); }

.section-head { max-width: 640px; margin-bottom: var(--space-12); }
.section-head h2 { font-size: var(--text-2xl); margin-top: var(--space-4); letter-spacing: -0.02em; }
.section-head p { color: var(--color-text-muted); margin-top: var(--space-4); font-size: var(--text-lg); }
.section-head.center { margin-inline: auto; text-align: center; }

.grad-text { background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 600; padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full); white-space: nowrap;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive),
    background var(--transition-interactive), color var(--transition-interactive), border-color var(--transition-interactive);
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 60px rgba(109, 40, 217, 0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: var(--color-surface); color: var(--color-text); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--color-primary); color: var(--color-primary); }
.btn-whatsapp { background: #25d366; color: #06351a; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--color-bg) 82%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.header--scrolled { border-color: var(--color-divider); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; }
.brand { display: flex; align-items: center; gap: var(--space-3); }
.brand .logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; letter-spacing: -0.01em; }
.brand-text span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: var(--space-2); }
.nav-links a {
  font-size: var(--text-sm); font-weight: 500; color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3); border-radius: var(--radius-full);
  transition: color var(--transition-interactive), background var(--transition-interactive);
}
.nav-links a:hover { color: var(--color-text); background: var(--color-surface-2); }
.nav-actions { display: flex; align-items: center; gap: var(--space-3); }

.theme-toggle, .menu-btn {
  width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full); color: var(--color-text-muted);
  border: 1px solid var(--color-border); background: var(--color-surface);
  transition: color var(--transition-interactive), border-color var(--transition-interactive), background var(--transition-interactive);
}
.theme-toggle:hover, .menu-btn:hover { color: var(--color-primary); border-color: var(--color-primary); }
.menu-btn { display: none; }

/* Mobile nav */
.mobile-nav {
  position: fixed; inset: 4.5rem 0 auto 0; z-index: 55;
  background: var(--color-surface); border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) var(--space-6) var(--space-8);
  display: none; flex-direction: column; gap: var(--space-1);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: var(--space-3) var(--space-4); border-radius: var(--radius-md); font-weight: 500; color: var(--color-text-muted); }
.mobile-nav a:hover { background: var(--color-surface-2); color: var(--color-text); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--hero-bg); color: #fff;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24)) clamp(var(--space-20), 12vw, var(--space-32));
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 15% 10%, rgba(124, 58, 237, 0.5), transparent 60%),
    radial-gradient(55% 70% at 90% 30%, rgba(37, 99, 235, 0.45), transparent 60%),
    radial-gradient(50% 60% at 70% 100%, rgba(168, 85, 247, 0.3), transparent 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(var(--space-8), 5vw, var(--space-20)); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-xs); font-weight: 600; letter-spacing: 0.06em;
  padding: var(--space-2) var(--space-4); border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16);
  color: #d8d4ff; margin-bottom: var(--space-6);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: #34d399; box-shadow: 0 0 12px #34d399; }
.hero h1 { font-size: var(--text-3xl); letter-spacing: -0.01em; font-weight: 600; word-spacing: 0.06em; line-height: 1.12; }
.hero h1 .grad-text { background: var(--grad-brand-soft); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: var(--text-lg); color: #c7c3e8; margin-top: var(--space-6); max-width: 32ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-8); }
.hero-stats { display: flex; gap: clamp(var(--space-6), 4vw, var(--space-12)); margin-top: var(--space-12); flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-display); font-size: var(--text-xl); font-weight: 600; }
.hero-stat span { font-size: var(--text-xs); color: #a8a4cf; text-transform: uppercase; letter-spacing: 0.1em; }

.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.08); }
.hero-float {
  position: absolute; bottom: -24px; left: -20px;
  background: rgba(255,255,255,0.95); color: #14122b; backdrop-filter: blur(10px);
  padding: var(--space-4) var(--space-5); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: var(--space-3);
}
.hero-float .ico { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--grad-brand); display: grid; place-items: center; color: #fff; }
.hero-float .ico svg { width: 22px; height: 22px; }
.hero-float strong { font-family: var(--font-display); font-size: 1rem; display: block; }
.hero-float span { font-size: var(--text-xs); color: #5a5775; }

/* marquee */
.marquee { background: var(--color-text); color: var(--color-bg); overflow: hidden; padding-block: var(--space-4); }
[data-theme="dark"] .marquee { background: var(--color-surface-3); color: var(--color-text); }
.marquee-track { display: flex; gap: var(--space-12); white-space: nowrap; animation: scroll-x 28s linear infinite; width: max-content; }
.marquee-track span { font-family: var(--font-display); font-weight: 500; font-size: var(--text-lg); display: inline-flex; align-items: center; gap: var(--space-4); opacity: 0.85; }
.marquee-track span::after { content: "✦"; color: var(--color-primary); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--space-5); }
.service-card {
  position: relative; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform var(--transition-interactive), box-shadow var(--transition-interactive), border-color var(--transition-interactive);
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition-interactive);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-ico { width: 52px; height: 52px; border-radius: var(--radius-md); display: grid; place-items: center; margin-bottom: var(--space-5); background: var(--color-primary-tint); color: var(--color-primary); }
.service-ico svg { width: 26px; height: 26px; }
.service-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.service-card p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(var(--space-8), 5vw, var(--space-20)); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--color-border); }
.split h2 { font-size: var(--text-2xl); letter-spacing: -0.02em; margin-top: var(--space-4); }
.feature-list { display: flex; flex-direction: column; gap: var(--space-4); margin-top: var(--space-8); }
.feature-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.feature-item .chk { width: 28px; height: 28px; flex-shrink: 0; border-radius: var(--radius-full); background: var(--grad-brand); display: grid; place-items: center; color: #fff; }
.feature-item .chk svg { width: 15px; height: 15px; }
.feature-item strong { font-family: var(--font-display); font-weight: 600; display: block; font-size: var(--text-base); }
.feature-item p { font-size: var(--text-sm); color: var(--color-text-muted); margin-top: 2px; }

/* ---------- Why / stats band ---------- */
.band { background: var(--hero-bg); color: #fff; position: relative; overflow: hidden; }
.band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 100% at 20% 0%, rgba(124,58,237,0.4), transparent 60%),
              radial-gradient(50% 100% at 90% 100%, rgba(37,99,235,0.35), transparent 60%);
}
.band .container { position: relative; z-index: 2; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-6); }
.why-card { padding: var(--space-8) var(--space-6); border-radius: var(--radius-lg); background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.why-card .ico { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--grad-brand-soft); display: grid; place-items: center; margin-bottom: var(--space-5); }
.why-card .ico svg { width: 24px; height: 24px; color: #fff; }
.why-card h3 { font-size: var(--text-lg); margin-bottom: var(--space-2); }
.why-card p { font-size: var(--text-sm); color: #b8b4dc; }

.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--space-6); margin-top: var(--space-16); text-align: center; }
.stat strong { display: block; font-family: var(--font-display); font-size: var(--text-2xl); font-weight: 600; background: var(--grad-brand-soft); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: var(--text-sm); color: #b8b4dc; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-6); counter-reset: step; }
.step { position: relative; padding: var(--space-8) var(--space-6); border-radius: var(--radius-lg); background: var(--color-surface); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.step .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: 0.9; }
.step h3 { font-size: var(--text-lg); margin: var(--space-4) 0 var(--space-2); }
.step p { font-size: var(--text-sm); color: var(--color-text-muted); }

/* ---------- Quote form ---------- */
.quote-wrap { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(var(--space-8), 5vw, var(--space-16)); align-items: start; }
.quote-info h2 { font-size: var(--text-2xl); letter-spacing: -0.02em; margin-top: var(--space-4); }
.quote-info p { color: var(--color-text-muted); margin-top: var(--space-4); }
.quote-contacts { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-4); }
.qc-item { display: flex; gap: var(--space-4); align-items: center; }
.qc-item .ico { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--color-primary-tint); color: var(--color-primary); display: grid; place-items: center; flex-shrink: 0; }
.qc-item .ico svg { width: 22px; height: 22px; }
.qc-item span { font-size: var(--text-xs); color: var(--color-text-faint); text-transform: uppercase; letter-spacing: 0.08em; display: block; }
.qc-item a, .qc-item strong { font-family: var(--font-display); font-weight: 600; font-size: var(--text-base); }
.qc-item a:hover { color: var(--color-primary); }

.quote-form { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(var(--space-6), 3vw, var(--space-10)); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.field { margin-bottom: var(--space-5); }
.field label { display: block; font-size: var(--text-sm); font-weight: 600; margin-bottom: var(--space-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: var(--space-3) var(--space-4); border-radius: var(--radius-md);
  border: 1px solid var(--color-border); background: var(--color-bg); color: var(--color-text);
  font-size: var(--text-sm); transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(124,58,237,0.15); }
.quote-form .btn { width: 100%; margin-top: var(--space-2); }
.form-note { font-size: var(--text-xs); color: var(--color-text-faint); margin-top: var(--space-4); text-align: center; }
.form-success { display: none; text-align: center; padding: var(--space-8) 0; }
.form-success.show { display: block; }
.form-success .ico { width: 64px; height: 64px; margin: 0 auto var(--space-5); border-radius: var(--radius-full); background: var(--grad-brand); display: grid; place-items: center; color: #fff; }
.form-success .ico svg { width: 32px; height: 32px; }
.form-success h3 { font-size: var(--text-xl); margin-bottom: var(--space-2); }
.form-success p { color: var(--color-text-muted); }

/* ---------- Contact / location ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: stretch; }
.contact-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: clamp(var(--space-6), 3vw, var(--space-10)); box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-6); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); min-height: 320px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.hours-list { display: flex; flex-direction: column; gap: var(--space-2); }
.hours-list li { display: flex; justify-content: space-between; padding: var(--space-3) 0; border-bottom: 1px solid var(--color-divider); font-size: var(--text-sm); }
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--color-text-muted); }
.hours-list .time { font-weight: 600; }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; background: var(--grad-brand); color: #fff; border-radius: var(--radius-xl); padding: clamp(var(--space-10), 6vw, var(--space-20)); overflow: hidden; text-align: center; box-shadow: var(--shadow-glow); }
.cta-banner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 100% at 80% 0%, rgba(255,255,255,0.25), transparent 60%); }
.cta-banner > * { position: relative; z-index: 2; }
.cta-banner h2 { font-size: var(--text-2xl); letter-spacing: -0.02em; }
.cta-banner p { font-size: var(--text-lg); margin-top: var(--space-4); opacity: 0.92; max-width: 50ch; margin-inline: auto; }
.cta-banner .btns { display: flex; gap: var(--space-3); justify-content: center; flex-wrap: wrap; margin-top: var(--space-8); }
.cta-banner .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }
.cta-banner .btn-light { background: #fff; color: var(--color-primary); }
.cta-banner .btn-light:hover { transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { background: var(--hero-bg); color: #cdcae6; padding-block: var(--space-20) var(--space-8); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-8); }
.footer .brand-text strong { color: #fff; }
.footer-about { font-size: var(--text-sm); color: #a8a4cf; margin-top: var(--space-5); max-width: 32ch; }
.footer h4 { font-family: var(--font-display); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin-bottom: var(--space-5); }
.footer ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer ul a, .footer ul li { font-size: var(--text-sm); color: #a8a4cf; }
.footer ul a:hover { color: #fff; }
.footer-bottom { margin-top: var(--space-16); padding-top: var(--space-6); border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--space-4); font-size: var(--text-xs); color: #8884b0; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-5); }
.footer-social a { width: 38px; height: 38px; border-radius: var(--radius-full); display: grid; place-items: center; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); transition: background var(--transition-interactive), transform var(--transition-interactive); }
.footer-social a:hover { background: var(--grad-brand); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 70;
  width: 58px; height: 58px; border-radius: var(--radius-full);
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-interactive);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab svg { width: 30px; height: 30px; color: #fff; }
.fab::after { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 2px solid #25d366; animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 1; }
@supports (animation-timeline: view()) {
  .reveal { opacity: 0; animation: reveal-fade linear both; animation-timeline: view(); animation-range: entry 0% cover 22%; }
}
@keyframes reveal-fade { to { opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .split, .split.rev .split-media { grid-template-columns: 1fr; order: 0; }
  .split-media { order: -1 !important; }
  .quote-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
  .nav-actions .btn { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-float { left: 50%; transform: translateX(-50%); bottom: -28px; }
}
