:root {
  --radius: 8px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --blue: #2d4b7a;
  --blue-light: #7fa1d4;
  --blue-dark: #1d3459;
  --blue-glow: rgba(45, 75, 122, .24);
  --blue-glow-strong: rgba(45, 75, 122, .44);
  --amber: #d8a24a;
  --amber-dark: #b9812f;
  --amber-glow: rgba(216, 162, 74, .18);
  --emerald: #10b981;
  --emerald-glow: rgba(16, 185, 129, .2);
  --rose: #f43f5e;
  color-scheme: dark;
  --bg: #060a13;
  --bg-alt: #0c1222;
  --surface-1: #111a2e;
  --surface-2: #1a2540;
  --surface-3: #243352;
  --border: rgba(148, 163, 184, .08);
  --border-hover: rgba(45, 75, 122, .34);
  --surface: rgba(17, 26, 46, .6);
  --surface-solid: #111a2e;
  --panel: rgba(30, 41, 59, .45);
  --panel-solid: #1a2540;
  --text: #e2e8f0;
  --text-heading: #f8fafc;
  --text-heading-2: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --text-placeholder: #334766;
  --header-bg: rgba(6, 10, 19, .6);
  --header-bg-scrolled: rgba(6, 10, 19, .92);
  --header-shadow: rgba(0, 0, 0, .4);
  --footer-bg: #060a13;
  --footer-bg-end: #040710;
  --card-hover-shadow: rgba(0, 0, 0, .3);
  --product-shot-glow-1: rgba(45, 75, 122, .48);
  --product-shot-glow-2: rgba(216, 162, 74, .16);
  --floating-kpi-bg: rgba(6, 10, 19, .85);
  --floating-kpi-border: rgba(45, 75, 122, .24);
  --floating-kpi-shadow: rgba(0, 0, 0, .4);
  --brand-rail-border: rgba(226, 232, 240, .15);
  --brand-rail-bg: #ffffff;
  --quote-mark: rgba(45, 75, 122, .08);
  --grid-line: rgba(148, 163, 184, .04);
  --ai-grid-bg-1: #0c1222;
  --ai-grid-bg-2: #0a0f1e;
  --timeline-line: rgba(45, 75, 122, .24);
  --form-focus-shadow: rgba(45, 75, 122, .14);
  --hero-orb-purple: rgba(139, 92, 246, .12);
  --brand-logo-filter: brightness(0) invert(1);
  --footer-branding-filter: brightness(0) invert(1);
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --surface-3: #e2e8f0;
  --border: rgba(15, 23, 42, .08);
  --border-hover: rgba(45, 75, 122, .38);
  --surface: rgba(255, 255, 255, .7);
  --surface-solid: #ffffff;
  --panel: rgba(241, 245, 249, .6);
  --panel-solid: #f1f5f9;
  --text: #1e293b;
  --text-heading: #0f172a;
  --text-heading-2: #0f172a;
  --text-muted: #475569;
  --text-dim: #64748b;
  --text-placeholder: #94a3b8;
  --header-bg: rgba(248, 250, 252, .75);
  --header-bg-scrolled: rgba(248, 250, 252, .95);
  --header-shadow: rgba(0, 0, 0, .06);
  --footer-bg: #f1f5f9;
  --footer-bg-end: #e2e8f0;
  --card-hover-shadow: rgba(0, 0, 0, .08);
  --product-shot-glow-1: rgba(45, 75, 122, .16);
  --product-shot-glow-2: rgba(216, 162, 74, .08);
  --floating-kpi-bg: rgba(255, 255, 255, .92);
  --floating-kpi-border: rgba(45, 75, 122, .16);
  --floating-kpi-shadow: rgba(0, 0, 0, .08);
  --brand-rail-border: rgba(15, 23, 42, .08);
  --brand-rail-bg: #ffffff;
  --quote-mark: rgba(45, 75, 122, .08);
  --grid-line: rgba(15, 23, 42, .04);
  --ai-grid-bg-1: #f1f5f9;
  --ai-grid-bg-2: #e8edf4;
  --timeline-line: rgba(45, 75, 122, .18);
  --form-focus-shadow: rgba(45, 75, 122, .1);
  --hero-orb-purple: rgba(139, 92, 246, .06);
  --brand-logo-filter: none;
  --footer-branding-filter: none;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a, button, .benefit-card, .problem-card, .brand-rail img { cursor: pointer; }
img { max-width: 100%; display: block; }

::selection { background: var(--blue); color: white; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-16px); }
}
@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -20px) scale(1.08); }
}
@keyframes pulse {
  0%, 100% { opacity: .5; }
  50%      { opacity: .8; }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(40px, -30px); }
  50%      { transform: translate(-20px, -50px); }
  75%      { transform: translate(-40px, -20px); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(-30px, 20px); }
  50%      { transform: translate(30px, 40px); }
  75%      { transform: translate(20px, -20px); }
}
@keyframes grid-pulse {
  0%, 100% { opacity: .03; }
  50%      { opacity: .06; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }
.stagger-5 { transition-delay: .40s; }
.stagger-6 { transition-delay: .48s; }

.skip-link {
  position: absolute; top: -48px; left: 16px; z-index: 100;
  background: var(--blue); color: white; padding: 10px 14px;
  border-radius: var(--radius-sm); transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 65%, white);
  outline-offset: 3px;
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: 0 4px 30px var(--header-shadow);
}

.nav {
  width: min(1200px, calc(100% - 40px)); margin: 0 auto;
  min-height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-logo { width: 156px; height: auto; object-fit: contain; transition: transform .3s ease, filter .3s ease; filter: var(--brand-logo-filter); opacity: .9; }
.brand:hover .brand-logo { transform: scale(1.03); }

.nav-actions {
  display: flex; align-items: center; gap: 8px;
}

.nav-links, .lang-switch {
  display: flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 14px; font-weight: 600;
}
.nav-links a {
  padding: 8px 16px; border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.nav-links a:hover { background: rgba(45, 75, 122, .08); color: var(--blue-light); }

.lang-switch { gap: 6px; }
.lang-switch a {
  min-width: 36px; text-align: center; padding: 6px 10px;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 12px; font-weight: 700; transition: all .25s ease;
}
.lang-switch a:hover { border-color: var(--blue); color: var(--blue-light); }
.lang-switch a[aria-current="true"] {
  background: var(--blue); color: white; border-color: var(--blue);
}

.button, button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; border: 0; border-radius: var(--radius-sm);
  color: white; padding: 13px 24px; font: inherit; font-weight: 700; font-size: 15px;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.button::after, button::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
  opacity: 0; transition: opacity .2s ease;
}
.button:hover::after, button:hover::after { opacity: 1; }
.button:hover, button:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.button:active, button:active { transform: translateY(0); }

.button.secondary {
  background: var(--surface-solid); border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.button.secondary:hover { border-color: var(--blue); box-shadow: 0 0 24px var(--blue-glow); }

[data-theme="light"] .button.secondary {
  background: var(--surface-solid); border: 1.5px solid var(--surface-3);
  color: var(--text-heading);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
[data-theme="light"] .button.secondary:hover {
  border-color: var(--blue); box-shadow: 0 4px 20px var(--blue-glow);
  color: var(--blue);
}

.button.signal, button.signal {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  box-shadow: 0 4px 24px var(--blue-glow);
}
.button.signal:hover, button.signal:hover { box-shadow: 0 8px 40px var(--blue-glow-strong); }

[data-theme="light"] .button.signal,
[data-theme="light"] button.signal {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: white;
  box-shadow: 0 4px 24px var(--blue-glow);
}
[data-theme="light"] .button.signal:hover,
[data-theme="light"] button.signal:hover {
  box-shadow: 0 8px 40px var(--blue-glow-strong);
}

.section { padding-top: 80px; padding-bottom: 0; position: relative; }
.container { width: min(1200px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  overflow: hidden; padding: 120px 0 80px; position: relative;
  min-height: 92vh; display: flex; align-items: center;
  background:
    radial-gradient(ellipse 70% 50% at 60% 30%, rgba(45, 75, 122, .06), transparent),
    radial-gradient(ellipse 50% 40% at 20% 70%, rgba(16, 185, 129, .035), transparent),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-pulse 8s ease-in-out infinite;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero .orb {
  display: none;
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero .orb-1 {
  top: 8%; right: 15%; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue-glow), transparent 70%);
  animation: orb-drift-1 20s ease-in-out infinite;
}
.hero .orb-2 {
  bottom: 5%; left: 5%; width: 350px; height: 350px;
  background: radial-gradient(circle, var(--emerald-glow), transparent 70%);
  animation: orb-drift-2 25s ease-in-out infinite;
}
.hero .orb-3 {
  top: 40%; right: 30%; width: 200px; height: 200px;
  background: radial-gradient(circle, var(--amber-glow), transparent 70%);
  animation: orb-drift-1 18s ease-in-out infinite reverse;
}
.hero .orb-4 {
  bottom: 30%; left: 20%; width: 120px; height: 120px;
  background: radial-gradient(circle, var(--hero-orb-purple), transparent 70%);
  animation: orb-drift-2 15s ease-in-out infinite;
}

.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 60px; align-items: center; position: relative; z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue-light); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
}
.eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  border-radius: 2px;
}

h1, h2, h3 { letter-spacing: -.02em; line-height: 1.08; }
h1 {
  font-size: clamp(38px, 5.5vw, 68px); max-width: 840px;
  color: var(--text-heading);
  text-shadow: 0 0 80px rgba(45, 75, 122, .15);
}
h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--blue-light), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 { font-size: clamp(32px, 4.2vw, 56px); color: var(--text-heading-2); }
h3 { font-size: 22px; color: var(--text); }

.lead {
  color: var(--text-muted); font-size: clamp(17px, 1.8vw, 20px);
  max-width: 690px; margin: 24px 0 0; line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-actions .button { font-size: 15px; padding: 14px 28px; min-height: 52px; border-radius: var(--radius-sm); letter-spacing: -.01em; }
.hero-actions .button.signal { flex-shrink: 0; }
.hero-actions .button.secondary { flex-shrink: 0; }

.trust-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; margin-top: 48px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
}
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip div {
  background: var(--surface); backdrop-filter: blur(8px);
  padding: 22px 16px; transition: background .25s ease;
  display: flex; flex-direction: column; gap: 2px;
}
.trust-strip div:hover { background: var(--surface-solid); }
.trust-strip .ts-icon {
  width: 28px; height: 28px; margin-bottom: 6px; color: var(--blue-light); opacity: .7;
}
.trust-strip .ts-icon svg {
  width: 28px; height: 28px; stroke-width: 1.8;
}
.trust-strip strong {
  font-size: 28px; letter-spacing: -.02em; color: var(--text-heading);
}
.trust-strip span { color: var(--text-dim); font-size: 12px; margin-top: 4px; }

.product-shot {
  position: relative; isolation: isolate;
  animation: fadeUp 1s cubic-bezier(.16, 1, .3, 1) .4s both;
}
.product-shot::before {
  content: ""; position: absolute; inset: 8% -8% -8% 8%; z-index: -1;
  border-radius: 32px;
  background: radial-gradient(ellipse at 30% 30%, var(--product-shot-glow-1), transparent 60%),
              radial-gradient(ellipse at 70% 70%, var(--product-shot-glow-2), transparent 50%);
  filter: blur(40px);
  animation: pulse 6s ease-in-out infinite;
}
.product-shot img {
  width: 100%;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.product-shot:hover img { transform: scale(1.02) translateY(-4px); }

.floating-kpi {
  position: absolute; right: 14px; bottom: 20px;
  width: min(240px, 52%); padding: 18px;
  border-radius: var(--radius);
  background: var(--floating-kpi-bg);
  border: 1px solid var(--floating-kpi-border);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px var(--floating-kpi-shadow);
  animation: float 6s ease-in-out infinite;
}
.floating-kpi strong {
  display: block; font-size: 32px; line-height: 1;
  background: linear-gradient(135deg, var(--blue-light), var(--emerald));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.floating-kpi span {
  color: var(--text-muted); font-size: 13px; display: block; margin-top: 6px;
}

.section-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px; margin-bottom: 48px;
}
.section-head p { max-width: 580px; color: var(--text-dim); margin: 0; line-height: 1.7; }

.product-grid, .benefit-grid, .problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.product-card, .benefit-card, .problem-card, .quote, .form-panel {
  background: var(--panel);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.benefit-card, .problem-card {
  padding: 28px;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1),
              box-shadow .35s cubic-bezier(.16, 1, .3, 1),
              border-color .35s ease;
  position: relative; overflow: hidden;
}
.benefit-card .benefit-icon,
.problem-card .benefit-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-card .benefit-icon svg,
.problem-card .benefit-icon svg {
  width: 22px; height: 22px;
  stroke-width: 1.8;
}
.benefit-card:hover .benefit-icon,
.problem-card:hover .benefit-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--blue-glow);
}
.benefit-card::after, .problem-card::after {
  content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(45, 75, 122, .04) 0%, transparent 60%);
  opacity: 0; transition: opacity .4s ease; pointer-events: none;
}
.benefit-card:hover, .problem-card:hover {
  transform: translateY(-4px); border-color: var(--border-hover);
  box-shadow: 0 12px 40px var(--card-hover-shadow);
}
.benefit-card:hover::after, .problem-card:hover::after { opacity: 1; }

.benefit-card .benefit-icon.blue,
.problem-card .benefit-icon.blue {
  background: linear-gradient(135deg, rgba(45,75,122,.15), rgba(45,75,122,.05));
  color: var(--blue-light);
}
.benefit-card .benefit-icon.emerald,
.problem-card .benefit-icon.emerald {
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.05));
  color: var(--emerald);
}
.benefit-card .benefit-icon.amber,
.problem-card .benefit-icon.amber {
  background: linear-gradient(135deg, rgba(216,162,74,.15), rgba(216,162,74,.05));
  color: var(--amber);
}

.benefit-card p, .problem-card p, .quote p { color: var(--text-dim); line-height: 1.65; }

.band {
  position: relative;
}
.band .section-head p, .band .muted { color: var(--text-muted); }
.ai-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 44px; align-items: center;
  background:
    radial-gradient(ellipse 80% 80% at 70% 20%, rgba(45, 75, 122, .1), transparent),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(16, 185, 129, .06), transparent),
    linear-gradient(135deg, var(--ai-grid-bg-1) 0%, var(--ai-grid-bg-2) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.ai-grid::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(45, 75, 122, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 75, 122, .03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black, transparent);
}
.timeline {
  border-left: 2px solid var(--timeline-line);
  padding-left: 28px; list-style: none; counter-reset: timeline;
}
.timeline li {
  margin: 0 0 28px; color: var(--text-muted);
  position: relative; line-height: 1.65; padding-left: 48px;
}
.timeline li::before {
  counter-increment: timeline; content: counter(timeline);
  position: absolute; left: -42px; top: -2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: grid; place-items: center;
  font-size: 12px; font-weight: 800; color: white;
  box-shadow: 0 0 20px var(--blue-glow);
}
.timeline li .tl-icon {
  position: absolute; left: 0; top: 2px;
  width: 24px; height: 24px; color: var(--blue-light); opacity: .6;
}
.timeline li .tl-icon svg {
  width: 24px; height: 24px; stroke-width: 1.8;
}
.timeline strong { color: var(--text-heading); }

.market-section {
  position: relative;
  overflow: hidden;
}
.market-section .section-head {
  text-align: left;
  justify-content: space-between;
}
.market-section .section-head p {
  margin: 0 auto;
}

.brand-rail-wrap {
  overflow: hidden; margin-top: 32px;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.brand-rail {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 80s linear infinite;
}
.brand-rail img {
  width: 190px; height: 90px; object-fit: contain;
  padding: 4px 6px; border: 1px solid var(--brand-rail-border);
  border-radius: var(--radius-sm);
  background: var(--brand-rail-bg);
  flex-shrink: 0; transition: all .3s ease;
}
.brand-rail img:hover {
  border-color: var(--blue); box-shadow: 0 4px 20px var(--blue-glow);
  transform: translateY(-2px);
}

.quote {
  padding: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.quote::before {
  content: "\201C";
  position: absolute;
  top: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 160px; line-height: 1;
  color: var(--quote-mark);
  font-family: Georgia, serif;
  pointer-events: none;
}
.quote-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue-light); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.quote-eyebrow::before {
  content: ""; width: 32px; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
  border-radius: 2px;
}
.quote-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
  box-shadow: 0 0 24px var(--blue-glow);
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
blockquote {
  margin: 0; font-size: 22px; color: var(--text);
  line-height: 1.6; font-style: italic;
  max-width: 680px; position: relative; z-index: 1;
}
.quote-author {
  margin-top: 24px; position: relative; z-index: 1;
}
.quote-author strong {
  display: block; font-size: 17px; color: var(--text-heading);
}
.quote-author span {
  color: var(--text-dim); font-size: 14px;
}

.contact-grid {
  display: grid; grid-template-columns: .9fr 1.1fr;
  gap: 32px; align-items: start;
}
.form-panel {
  padding: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
  border: 1px solid var(--border);
}
form { display: grid; gap: 16px; }
form.is-sending label {
  opacity: .72;
}
label { display: grid; gap: 6px; color: var(--text-muted); font-size: 14px; font-weight: 650; }
input, textarea, select {
  width: 100%; min-height: 48px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--surface-solid); color: var(--text);
  padding: 12px 14px; font: inherit;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
textarea { resize: vertical; min-height: 112px; }
input:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--form-focus-shadow); background: var(--bg-alt);
}
input::placeholder, textarea::placeholder { color: var(--text-placeholder); }
.form-status {
  min-height: 0;
  display: none;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.form-status::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-top: 1px;
}
.form-status.is-sending,
.form-status.is-success,
.form-status.is-error {
  display: flex;
}
.form-status.is-sending {
  border-color: var(--border-hover);
  color: var(--text);
}
.form-status.is-sending::before {
  border: 2px solid var(--border);
  border-top-color: var(--blue-light);
  animation: spin .8s linear infinite;
}
.form-status.is-success {
  border-color: rgba(16, 185, 129, .32);
  background: rgba(16, 185, 129, .08);
  color: var(--text-heading);
}
.form-status.is-success::before {
  content: "\2713";
  display: grid;
  place-items: center;
  background: var(--emerald);
  color: white;
  font-size: 12px;
}
.form-status.is-error {
  border-color: rgba(220, 38, 38, .32);
  background: rgba(220, 38, 38, .08);
  color: var(--text-heading);
}
.form-status.is-error::before {
  content: "!";
  display: grid;
  place-items: center;
  background: var(--rose);
  color: white;
  font-size: 12px;
  font-weight: 900;
}
button:disabled,
.button:disabled {
  cursor: wait;
  opacity: .78;
  transform: none;
}
button.signal:disabled::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .5);
  border-top-color: white;
  animation: spin .8s linear infinite;
}

.footer {
  background: linear-gradient(180deg, var(--footer-bg), var(--footer-bg-end));
  color: var(--text); padding: 64px 0 32px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--blue), var(--amber), var(--emerald), transparent 95%);
}
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 32px; }
.footer a, .footer p { color: var(--text-dim); transition: color .25s ease; }
.footer a:hover { color: var(--blue-light); }
.footer strong {
  display: block; margin-bottom: 14px; color: var(--text-muted);
  font-size: 13px; text-transform: uppercase; letter-spacing: .08em;
}
.footer ul { list-style: none; }
.footer li { margin: 8px 0; }
.social-links {
  display: flex; gap: 12px; margin-top: 16px;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.social-links a:hover {
  border-color: var(--blue);
  background: rgba(45, 75, 122, .1);
  transform: translateY(-2px);
}
.social-links svg {
  width: 18px; height: 18px; fill: var(--text-dim);
  transition: fill .25s ease;
}
.social-links a:hover svg { fill: var(--blue-light); }

.footer-branding {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.footer-branding span {
  color: var(--text-dim); font-size: 13px;
}
.footer-branding img {
  height: 28px; width: auto; opacity: .7;
  filter: var(--footer-branding-filter);
  transition: opacity .25s ease;
}
.footer-branding:hover img { opacity: 1; }

.footer-copy {
  text-align: center;
  padding-top: 24px;
  color: var(--text-dim);
  font-size: 13px;
}

.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
  padding: 0;
  color: var(--text-muted);
  min-height: unset;
}
.theme-toggle:hover {
  border-color: var(--blue);
  background: rgba(45, 75, 122, .08);
  transform: translateY(-2px);
  box-shadow: none;
}
.theme-toggle::after { display: none; }
.theme-toggle svg {
  width: 20px; height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.theme-toggle:hover svg { color: var(--blue-light); }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }

@media (max-width: 900px) {
  .nav { min-height: auto; padding: 14px 0; align-items: flex-start; }
  .nav-links { display: none; }
  .hero-grid, .ai-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .product-grid, .benefit-grid, .problem-grid { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .trust-strip, .footer-grid { grid-template-columns: 1fr; }
  .quote { padding: 32px 20px; }
  blockquote { font-size: 18px; }
  .band::before { display: none; }
  .ai-grid { padding: 32px; gap: 32px; }
  .ai-grid::before { display: none; }
  .timeline li { padding-left: 40px; }
  .timeline li::before { left: -34px; width: 26px; height: 26px; font-size: 11px; }
}

@media (max-width: 560px) {
  .section { padding-top: 56px; padding-bottom: 0; }
  .hero { padding-top: 100px; padding-bottom: 48px; }
  .nav { width: min(100% - 24px, 1200px); }
  .container { width: min(100% - 24px, 1200px); }
  .floating-kpi { position: static; width: auto; margin-top: 14px; }
  .hero-actions { display: grid; }
  .button, button { width: 100%; }
  blockquote { font-size: 17px; }
  .ai-grid { padding: 24px 20px; gap: 28px; }
  .timeline { margin-left: 12px; padding-left: 24px; }
  .timeline li { padding-left: 36px; margin-bottom: 20px; }
  .timeline li::before { left: -38px; width: 24px; height: 24px; font-size: 10px; }
  .timeline li .tl-icon { width: 20px; height: 20px; top: 4px; }
  .timeline li .tl-icon svg { width: 20px; height: 20px; }
  .theme-toggle { width: 36px; height: 36px; }
  .brand-logo { width: 136px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
  .brand-rail { animation: none; }
}

.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, .4), 0 8px 40px rgba(0, 0, 0, .3);
  transition: transform .25s ease, box-shadow .25s ease;
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, .5), 0 12px 48px rgba(0, 0, 0, .35);
}
.whatsapp-fab svg {
  width: 30px; height: 30px; fill: white;
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, .4), 0 8px 40px rgba(0, 0, 0, .3); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, .6), 0 8px 40px rgba(0, 0, 0, .3); }
}
