/* ════════════════════════════════════════════════════════════
   Export Nexus — Professional B2B Landing Page
   Palette: Light/Professional · Accent: #0052cc / #ff6b35
   ════════════════════════════════════════════════════════════ */

/* ── GOOGLE FONTS import handled in HTML ── */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Palette */
  --bg:          #F7F8FC;
  --bg-2:        #FFFFFF;
  --bg-card:     #FFFFFF;
  --bg-card-hover: #F0F4FF;
  --border:      #E2E8F0;
  --border-hover:#CBD5E1;

  /* Text */
  --text:        #1A202C;
  --text-muted:  #4A5568;
  --text-dim:    #A0AEC0;

  /* Accents */
  --accent:      #0052cc;
  --accent-light:#EBF4FF;
  --accent-orange:#ff6b35;
  --accent-green: #16a34a;
  --accent-red:   #dc2626;
  --accent-blue:  #0052cc;
  --accent-purple:#7c3aed;

  /* Header */
  --header-bg:   #1a2a3a;
  --header-text: #FFFFFF;

  /* Fonts */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Radii */
  --radius:    20px;
  --radius-sm: 12px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; background: var(--bg); }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 800; line-height: 1.08; margin-bottom: 24px; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
p  { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 56px;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
nav.hidden { transform: translateY(-100%); }
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }

.nav-left { display: flex; align-items: center; gap: 40px; }
.logo {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800;
  letter-spacing: -0.03em; display: flex; align-items: center; gap: 10px;
  color: #FFFFFF; text-decoration: none;
}
.logo img { width: 32px; height: 32px; border-radius: 6px; object-fit: cover; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.88rem;
  font-weight: 500; transition: color 0.2s; letter-spacing: 0.01em;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-right { display: flex; align-items: center; gap: 16px; }

/* ── LANGUAGE SELECTOR ── */
.lang-selector {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px; padding: 4px 6px;
}
.lang-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 10px; border-radius: 999px; border: none;
  background: transparent; cursor: pointer;
  font-size: 0.8rem; font-weight: 600; font-family: var(--font-body);
  color: rgba(255,255,255,0.6); transition: all 0.2s; white-space: nowrap;
}
.lang-btn .flag { font-size: 1rem; }
.lang-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }
.lang-btn.active {
  background: rgba(255,255,255,0.18); color: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm);
  font-size: 0.92rem; font-weight: 600; font-family: var(--font-body);
  text-decoration: none; transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
  cursor: pointer; border: none; letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--accent); color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0,82,204,0.3);
}
.btn-primary:hover {
  background: #0040a0; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,82,204,0.4);
}
.btn-orange {
  background: var(--accent-orange); color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(255,107,53,0.35);
}
.btn-orange:hover {
  background: #e85a28; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.5);
}
.btn-secondary {
  background: transparent; color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn-arrow::after { content: ' →'; transition: transform 0.2s; display: inline-block; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── HERO ── */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: 160px 24px 80px;
  background: linear-gradient(170deg, #1a2a3a 0%, #0f1e2e 50%, #0a1520 100%);
  color: #fff;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(0,82,204,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 60%, rgba(255,107,53,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=1600&q=80') center/cover no-repeat;
  opacity: 0.08;
}
.hero-content { position: relative; z-index: 1; max-width: 900px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 18px; border-radius: 999px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 40px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero h1 { color: #FFFFFF; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--accent-orange); }
.hero-sub { max-width: 640px; margin: 0 auto 52px; font-size: 1.15rem; line-height: 1.8; color: rgba(255,255,255,0.72); }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── METRICS BAR ── */
.metrics-bar {
  background: #FFFFFF; border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--border); padding: 40px 24px;
  box-shadow: var(--shadow-md);
}
.metrics-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}
.metric { text-align: center; padding: 0 28px; border-right: 1px solid var(--border); }
.metric:last-child { border-right: none; }
.metric-number {
  font-family: var(--font-display); font-size: clamp(1.6rem,2.8vw,2.4rem);
  font-weight: 800; color: var(--accent); letter-spacing: -0.04em;
  line-height: 1; margin-bottom: 8px;
}
.metric-label { font-size: 0.83rem; color: var(--text-muted); font-weight: 500; line-height: 1.4; }

/* ── IMAGE BANNER ── */
.image-banner {
  width: 100%; height: 360px; overflow: hidden; position: relative;
  background: var(--header-bg);
}
.image-banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; }
.image-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,42,58,0.85) 0%, rgba(26,42,58,0.4) 60%, transparent 100%);
  display: flex; align-items: center; padding: 0 80px;
}
.image-banner-text h3 { color: #fff; font-size: 1.8rem; margin-bottom: 10px; }
.image-banner-text p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 420px; }

/* ── INFINITE TICKER ── */
.ticker-wrap {
  width: 100%; overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 16px 0;
  background: var(--header-bg); white-space: nowrap; display: flex;
}
.ticker { display: flex; animation: ticker 50s linear infinite; }
.ticker-item {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.45); margin: 0 36px; letter-spacing: 0.12em; text-transform: uppercase;
}
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── LAYOUT ── */
section { padding: 100px 24px; position: relative; }
section.bg-white { background: #FFFFFF; }
section.bg-grey  { background: var(--bg); }
section.bg-dark  { background: var(--header-bg); color: #fff; }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-label {
  font-size: 0.73rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-dark .section-label { color: var(--accent-orange); }
.section-sub { max-width: 560px; font-size: 1.05rem; line-height: 1.8; margin-top: 12px; }
.section-header.center .section-sub { margin: 12px auto 0; }

/* ── PROCESS VISUAL ── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative; margin-top: 16px;
}
.process-step {
  text-align: center; padding: 36px 24px; position: relative;
}
.process-step::after {
  content: '→'; position: absolute; right: -10px; top: 46px;
  font-size: 1.2rem; color: var(--border-hover);
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(0,82,204,0.35);
}
.process-step h4 { font-size: 1rem; margin-bottom: 8px; color: var(--text); }
.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* ── GAP CARDS ── */
.gap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gap-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px 40px; position: relative; overflow: hidden; transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}
.gap-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gap-card.bad  { border-top: 3px solid var(--accent-red); }
.gap-card.good { border-top: 3px solid var(--accent-green); background: linear-gradient(180deg,#f0fdf4 0%, #fff 60%); }
.gap-card-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 24px;
}
.gap-card.bad  .gap-card-label { color: var(--accent-red);   background: #fff0f0; border: 1px solid #fecaca; }
.gap-card.good .gap-card-label { color: var(--accent-green); background: #f0fdf4; border: 1px solid #bbf7d0; }
.gap-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.gap-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.97rem; color: var(--text-muted); line-height: 1.6; }
.gap-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

/* ── STRATEGY CARDS ── */
.strategy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.strategy-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px 40px; position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1); box-shadow: var(--shadow-sm);
}
.strategy-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--border-hover); }
.strategy-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; display: inline-block; margin-bottom: 28px;
}
.strategy-tag.a { color: #2563eb; background: #eff6ff; border: 1px solid #bfdbfe; }
.strategy-tag.b { color: #7c3aed; background: #f5f3ff; border: 1px solid #ddd6fe; }
.strategy-number {
  font-family: var(--font-display); font-size: 4rem; font-weight: 800;
  color: var(--border); letter-spacing: -0.06em; line-height: 1; margin-bottom: 12px;
}
.strategy-features { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.feature-row { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-muted); }
.feature-row::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 44px 40px; position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1); box-shadow: var(--shadow-sm);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--accent-light); border: 1px solid #bfdbfe;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-card p { font-size: 0.95rem; line-height: 1.75; }

/* ── LIVE RADAR ── */
.radar-section { padding: 100px 24px; }
.radar-container {
  max-width: 920px; margin: 0 auto;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.radar-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; border-bottom: 1px solid var(--border);
  background: var(--header-bg);
}
.radar-title {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: #fff;
}
.radar-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; animation: pulse 1.5s infinite; box-shadow: 0 0 10px rgba(74,222,128,0.6); }
.radar-status { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }
.radar-feed {
  height: 360px; overflow: hidden; position: relative;
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 88%, transparent 100%);
}
.radar-scroll { animation: radarScroll 35s linear infinite; }
@keyframes radarScroll { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }
.radar-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 28px; border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.radar-item:hover { background: var(--bg); }
.radar-tag {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.radar-tag.ted    { color: #1d4ed8; background: #eff6ff; border: 1px solid #bfdbfe; }
.radar-tag.patent { color: #7c3aed; background: #f5f3ff; border: 1px solid #ddd6fe; }
.radar-tag.job    { color: #d97706; background: #fffbeb; border: 1px solid #fde68a; }
.radar-text { flex: 1; font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.radar-text strong { color: var(--text); font-weight: 600; }
.radar-blur { filter: blur(4px); user-select: none; color: var(--text-dim); }
.radar-time { font-size: 0.7rem; color: var(--text-dim); white-space: nowrap; flex-shrink: 0; margin-top: 3px; }
.radar-footer {
  padding: 14px 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg);
}
.radar-count { font-size: 0.8rem; color: var(--text-muted); }
.radar-count strong { color: var(--accent-green); }
.radar-cta { font-size: 0.82rem; color: var(--accent); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.radar-cta:hover { color: #0040a0; }

/* ── AUDIT TOOL ── */
.audit-section { padding: 100px 24px; background: var(--bg); }
.audit-box {
  max-width: 820px; margin: 0 auto;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 56px 48px; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.audit-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--accent-blue), var(--accent-purple), var(--accent-orange));
}
.audit-steps { display: flex; gap: 8px; margin-bottom: 36px; }
.audit-step-dot { width: 32px; height: 4px; border-radius: 2px; background: var(--border); transition: background 0.4s; }
.audit-step-dot.active { background: var(--accent); }
.audit-step-dot.done   { background: var(--accent-green); }
.audit-step { display: none; }
.audit-step.active { display: block; animation: auditFade 0.4s ease; }
@keyframes auditFade { from{opacity:0;transform:translateX(16px)} to{opacity:1;transform:translateX(0)} }
.audit-step h3 { font-size: 1.25rem; margin-bottom: 8px; }
.audit-step > p { margin-bottom: 24px; }
.audit-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.audit-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1.5px solid var(--border);
  cursor: pointer; transition: all 0.2s; font-size: 0.9rem; color: var(--text-muted);
  user-select: none;
}
.audit-option:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.audit-option.selected { border-color: var(--accent-green); background: #f0fdf4; color: var(--accent-green); }
.audit-option-check {
  width: 20px; height: 20px; border-radius: 6px; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 0.7rem; transition: all 0.2s; color: transparent;
}
.audit-option.selected .audit-option-check { background: var(--accent-green); border-color: var(--accent-green); color: #fff; }
.audit-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; }
.audit-nav .btn { min-width: 140px; }
.audit-result { display: none; text-align: center; }
.audit-result.active { display: block; animation: auditFade 0.5s ease; }
.audit-score-ring { width: 160px; height: 160px; margin: 0 auto 28px; position: relative; }
.audit-score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.audit-score-ring circle { fill: none; stroke-width: 6; }
.audit-score-ring .bg-ring { stroke: var(--border); }
.audit-score-ring .score-ring {
  stroke: var(--accent-green); stroke-linecap: round;
  stroke-dasharray: 440; stroke-dashoffset: 440;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.16,1,0.3,1);
}
.audit-score-value {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.audit-score-num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--text); letter-spacing: -0.04em; line-height: 1; }
.audit-score-label { font-size: 0.72rem; color: var(--accent-green); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
.audit-match-text { font-size: 1.05rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 28px; }
.audit-match-text strong { color: var(--text); }

/* ── ROI CALCULATOR ── */
.roi-section { padding: 100px 24px; background: #FFFFFF; }
.roi-box {
  max-width: 900px; margin: 0 auto;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 52px 48px; position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.roi-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--accent-green), var(--accent));
}
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 36px; }
.roi-sliders { display: flex; flex-direction: column; gap: 32px; }
.roi-slider-group label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.9rem; color: var(--text-muted); font-weight: 500; margin-bottom: 12px;
}
.roi-slider-value { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--text); }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 4px;
  background: var(--border); border-radius: 2px; outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent); cursor: pointer; transition: box-shadow 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover { box-shadow: 0 0 0 4px rgba(0,82,204,0.2); }
input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%; background: var(--accent);
  border: 3px solid #fff; cursor: pointer;
}
.roi-results { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.roi-card {
  padding: 22px; border-radius: var(--radius-sm);
  background: #FFFFFF; border: 1px solid var(--border);
  transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.roi-card.highlight { border-color: #86efac; background: #f0fdf4; }
.roi-card-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
.roi-card-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.roi-card.highlight .roi-card-value { color: var(--accent-green); }
.roi-card-sub { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }
.roi-bar-wrap { margin-top: 36px; }
.roi-bar-label { display: flex; justify-content: space-between; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 10px; font-weight: 500; }
.roi-bar-track { height: 8px; background: var(--border); border-radius: 4px; position: relative; overflow: hidden; }
.roi-bar-fill-it   { position: absolute; top:0; left:0; height:100%; border-radius:4px; background: #f87171; transition: width 0.5s ease; }
.roi-bar-fill-dach { position: absolute; top:0; left:0; height:100%; border-radius:4px; background: linear-gradient(to right,var(--accent-green),#4ade80); transition: width 0.5s ease; }

/* ── TIMELINE ── */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before { content:''; position:absolute; top:12px; bottom:12px; left:18px; width:2px; background:linear-gradient(to bottom,transparent,var(--border) 10%,var(--border) 90%,transparent); }
.timeline-item { position:relative; padding-left:72px; margin-bottom:52px; }
.timeline-item:last-child { margin-bottom:0; }
.timeline-dot {
  position:absolute; left:10px; top:6px; width:18px; height:18px;
  border-radius:50%; background:#fff; border:2px solid var(--border);
  transition:all 0.5s ease; box-shadow:var(--shadow-sm);
}
.timeline-item.active .timeline-dot { border-color:var(--accent); background:var(--accent); box-shadow:0 0 0 4px rgba(0,82,204,0.2); }
.timeline-phase { font-size:0.72rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--accent); margin-bottom:8px; }
.timeline-item h3 { font-size:1.3rem; margin-bottom:10px; }

/* ── PRICING ── */
.pricing-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; max-width:900px; margin:0 auto; }
.pricing-card {
  background:#FFFFFF; border:1px solid var(--border); border-radius:var(--radius);
  padding:44px 38px; position:relative; overflow:hidden; transition:all 0.3s; box-shadow:var(--shadow-sm);
}
.pricing-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.pricing-card.featured { border-color:var(--accent); border-width:2px; background:linear-gradient(180deg,var(--accent-light) 0%,#fff 50%); }
.pricing-card.featured::before {
  content:'CONSIGLIATO'; position:absolute; top:18px; right:18px;
  font-size:0.65rem; font-weight:700; letter-spacing:0.12em;
  color:#fff; background:var(--accent); padding:4px 10px; border-radius:999px;
}
.price { font-family:var(--font-display); font-size:2.4rem; font-weight:800; color:var(--text); letter-spacing:-0.04em; line-height:1; margin:18px 0 6px; }
.price sup { font-size:1.3rem; vertical-align:super; font-weight:600; }
.price-caption { font-size:0.88rem; color:var(--text-muted); margin-bottom:28px; }
.price-features { list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.price-features li { display:flex; align-items:flex-start; gap:10px; font-size:0.92rem; color:var(--text-muted); }
.price-features li::before { content:'✓'; color:var(--accent-green); font-weight:700; flex-shrink:0; }

/* ── EXCLUSIVITY BANNER ── */
.exclusivity-banner {
  max-width:900px; margin:40px auto 0;
  background:linear-gradient(135deg,var(--accent-light) 0%,#fff 100%);
  border:1.5px solid #bfdbfe; border-radius:var(--radius);
  padding:30px 36px; display:flex; align-items:center; gap:24px;
  box-shadow:var(--shadow-sm);
}
.exclusivity-icon {
  width:60px; height:60px; border-radius:50%; background:var(--accent);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  font-size:1.5rem; color:#fff;
}
.exclusivity-banner h4 { font-size:1.05rem; font-weight:700; margin-bottom:6px; text-transform:uppercase; letter-spacing:0.04em; }
.exclusivity-banner p  { font-size:0.92rem; color:var(--text-muted); line-height:1.65; margin:0; }

/* ── FAQ ── */
.faq-list { max-width:760px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--border); padding:24px 0; cursor:pointer; }
.faq-item:first-child { border-top:1px solid var(--border); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:24px; font-family:var(--font-display); font-size:1.05rem; font-weight:600; color:var(--text); }
.faq-q-text { flex:1; }
.faq-icon { width:22px; height:22px; flex-shrink:0; position:relative; }
.faq-icon::before,.faq-icon::after { content:''; position:absolute; background:var(--text-muted); top:50%; left:50%; transform:translate(-50%,-50%); }
.faq-icon::before { width:14px; height:1.5px; }
.faq-icon::after  { width:1.5px; height:14px; transition:transform 0.3s; }
.faq-item.open .faq-icon::after { transform:translate(-50%,-50%) rotate(90deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.5s cubic-bezier(0.16,1,0.3,1); }
.faq-a-inner { padding-top:14px; color:var(--text-muted); font-size:1rem; line-height:1.8; }

/* ── CTA SECTION ── */
.cta-section { padding:80px 24px 120px; background:var(--bg); }
.cta-box {
  max-width:860px; margin:0 auto;
  background:linear-gradient(135deg,var(--header-bg) 0%,#0f2540 100%);
  border-radius:28px; padding:80px 56px; text-align:center;
  position:relative; overflow:hidden; box-shadow:var(--shadow-lg);
  color:#fff;
}
.cta-box::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(0,82,204,0.25) 0%,transparent 70%);
  pointer-events:none;
}
.cta-box h2 { color:#fff; margin-bottom:16px; position:relative; z-index:1; }
.cta-box p { color:rgba(255,255,255,0.72); max-width:480px; margin:0 auto 44px; font-size:1.05rem; position:relative; z-index:1; }
.form-group { display:flex; gap:12px; max-width:480px; margin:0 auto; position:relative; z-index:1; }
.input-field {
  flex:1; padding:14px 20px; border-radius:var(--radius-sm);
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2);
  color:#fff; font-size:0.95rem; outline:none; transition:border-color 0.2s;
  font-family:var(--font-body);
}
.input-field::placeholder { color:rgba(255,255,255,0.45); }
.input-field:focus { border-color:rgba(255,255,255,0.5); background:rgba(255,255,255,0.15); }

/* ── FOOTER ── */
footer {
  background:var(--header-bg); color:rgba(255,255,255,0.6);
  border-top:1px solid rgba(255,255,255,0.08); padding:52px 56px;
  display:flex; justify-content:space-between; align-items:center; font-size:0.85rem;
}
.footer-left { display:flex; flex-direction:column; gap:8px; }
.footer-logo { font-family:var(--font-display); font-size:1rem; font-weight:800; color:#fff; display:flex; align-items:center; gap:8px; }
.footer-logo img { width:22px; height:22px; border-radius:4px; object-fit:cover; }
.footer-links { display:flex; gap:24px; flex-wrap:wrap; }
.footer-links a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.82rem; transition:color 0.2s; }
.footer-links a:hover { color:rgba(255,255,255,0.9); }

/* ── COOKIE CONSENT POPUP ── */
#cookie-popup {
  position:fixed; bottom:0; left:0; right:0; z-index:9999;
  background:#fff; border-top:3px solid var(--accent);
  box-shadow:0 -4px 32px rgba(0,0,0,0.12);
  padding:28px 40px; display:flex; align-items:center; gap:32px;
  transform:translateY(100%); transition:transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
#cookie-popup.visible { transform:translateY(0); }
#cookie-popup.hiding  { transform:translateY(100%); }
.cookie-icon { font-size:2rem; flex-shrink:0; }
.cookie-text { flex:1; }
.cookie-text h4 { font-size:1rem; font-weight:700; margin-bottom:6px; font-family:var(--font-display); }
.cookie-text p  { font-size:0.88rem; color:var(--text-muted); line-height:1.6; margin:0; }
.cookie-text a  { color:var(--accent); text-decoration:none; font-weight:600; }
.cookie-text a:hover { text-decoration:underline; }
.cookie-actions { display:flex; gap:10px; flex-shrink:0; }
.cookie-btn-accept {
  padding:11px 24px; border-radius:var(--radius-sm); border:none;
  background:var(--accent); color:#fff; font-size:0.88rem; font-weight:700;
  cursor:pointer; font-family:var(--font-body); transition:all 0.2s;
  white-space:nowrap;
}
.cookie-btn-accept:hover { background:#0040a0; }
.cookie-btn-decline {
  padding:11px 20px; border-radius:var(--radius-sm);
  border:1.5px solid var(--border); background:transparent;
  color:var(--text-muted); font-size:0.88rem; font-weight:600;
  cursor:pointer; font-family:var(--font-body); transition:all 0.2s;
  white-space:nowrap;
}
.cookie-btn-decline:hover { border-color:var(--border-hover); color:var(--text); }

/* ── ANIMATIONS ── */
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.8s cubic-bezier(0.16,1,0.3,1),transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.active { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .process-step::after { display:none; }
}
@media(max-width:960px) {
  nav { padding:14px 28px; }
  .strategy-grid,.gap-grid,.pricing-grid,.services-grid { grid-template-columns:1fr; }
  .metrics-inner { grid-template-columns:repeat(2,1fr); }
  .metric:nth-child(2) { border-right:none; }
  .metric { padding:20px 0; border-bottom:1px solid var(--border); border-right:none; }
  .metric:nth-child(3),.metric:nth-child(4) { border-bottom:none; }
  .roi-grid { grid-template-columns:1fr; }
  .audit-options { grid-template-columns:1fr; }
  .image-banner-overlay { padding:0 32px; }
  .exclusivity-banner { flex-direction:column; text-align:center; }
  #cookie-popup { flex-direction:column; gap:20px; text-align:center; padding:24px; }
  .cookie-actions { justify-content:center; }
}
@media(max-width:640px) {
  nav { padding:14px 20px; }
  .nav-links { display:none; }
  .lang-btn .lang-label { display:none; }
  section { padding:72px 20px; }
  .form-group { flex-direction:column; }
  footer { flex-direction:column; gap:28px; text-align:center; }
  .footer-links { justify-content:center; }
  .cta-box { padding:52px 28px; }
  h1 { font-size:2.2rem; }
  .process-grid { grid-template-columns:1fr 1fr; }
  .audit-box { padding:36px 24px; }
  .roi-box { padding:36px 24px; }
  .image-banner { height:240px; }
}
