/* ============================================================
   KORE BUSINESS — korebusiness.co.uk
   ============================================================ */

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

:root {
  --bg:           #0a0f1e;
  --surface:      #111827;
  --surface-2:    #1a2235;
  --border:       rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.16);

  --indigo:       #6366f1;
  --indigo-glow:  rgba(99,102,241,0.25);
  --pink:         #ec4899;
  --pink-glow:    rgba(236,72,153,0.25);
  --amber:        #f59e0b;
  --amber-glow:   rgba(245,158,11,0.25);
  --emerald:      #10b981;
  --emerald-glow: rgba(16,185,129,0.25);

  --text:         #f1f5f9;
  --text-mid:     #94a3b8;
  --text-light:   #475569;
  --white:        #ffffff;

  --shadow-glow:  0 0 40px rgba(99,102,241,0.15);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ─────────────────────────────────────────────── */
.display-1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; }
.display-2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
.display-3 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.025em; }
.lead { font-size: 1.15rem; line-height: 1.75; color: var(--text-mid); }
.lead-lg { font-size: 1.3rem; line-height: 1.75; color: var(--text-mid); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-size: 0.9375rem;
  font-weight: 600; cursor: pointer; border: 1.5px solid transparent;
  transition: all 160ms ease; white-space: nowrap; text-decoration: none;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--indigo); color: var(--white); border-color: var(--indigo);
}
.btn-primary:hover { background: #5254cc; box-shadow: 0 8px 24px rgba(99,102,241,0.4); }

.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: var(--border-hover); }

.btn-outline {
  background: transparent; color: var(--indigo); border-color: var(--indigo);
}
.btn-outline:hover { background: var(--indigo-glow); }

.btn-lg { padding: 17px 36px; font-size: 1.025rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ── Section label ───────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--indigo); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 20px; height: 2px;
  background: var(--indigo); border-radius: 2px;
}

.section-header { max-width: 680px; margin: 0 auto 72px; text-align: center; }
.section-header h2 { color: var(--white); margin-bottom: 20px; }
.section-header p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.75; }

section { padding: 112px 0; }

/* ── Fade-in animation ───────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: rgba(10,15,30,0.7); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 1000; transition: all 200ms;
}
.nav.scrolled { border-bottom-color: var(--border); background: rgba(10,15,30,0.92); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; gap: 24px;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem; color: var(--white);
  text-decoration: none; flex-shrink: 0; letter-spacing: -0.02em;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #6366f1, #ec4899);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; padding: 7px; color: white;
}
.logo-icon svg { width: 100%; height: 100%; }

.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 0.9rem;
  font-weight: 500; color: var(--text-mid); text-decoration: none;
  transition: all 140ms;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }

/* Products dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle svg { transition: transform 200ms; }
.nav-dropdown.open .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 8px; min-width: 220px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px;
  border-radius: var(--radius); color: var(--text-mid); font-size: 0.875rem;
  font-weight: 500; text-decoration: none; transition: all 140ms;
}
.nav-dropdown-item:hover { background: rgba(255,255,255,0.06); color: var(--white); }
.nav-dropdown-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}

.nav-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.nav-login {
  font-size: 0.9rem; font-weight: 500; color: var(--text-mid);
  padding: 8px 14px; border-radius: 8px; transition: all 140ms;
}
.nav-login:hover { color: var(--white); background: rgba(255,255,255,0.06); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 200ms;
}

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 16px 24px 28px; z-index: 999;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block; padding: 13px 0; font-size: 1rem; font-weight: 500;
  color: var(--text-mid); border-bottom: 1px solid var(--border); text-decoration: none;
}
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { margin-top: 16px; width: 100%; }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; padding: calc(var(--nav-h) + 80px) 0 100px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99,102,241,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 80% 50%, rgba(236,72,153,0.08) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(16,185,129,0.06) 0%, transparent 60%),
              var(--bg);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc; font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: .07em;
}
.hero-badge-dot {
  width: 6px; height: 6px; background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 8px #4ade80; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

.hero h1 { color: var(--white); margin-bottom: 28px; }
.hero h1 .grad {
  background: linear-gradient(90deg, #818cf8, #ec4899, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px; align-items: center; }

.hero-trust {
  margin-top: 48px; display: flex; align-items: center; gap: 14px;
  color: var(--text-light); font-size: 0.875rem;
}
.hero-avatars { display: flex; }
.hero-avatars span {
  width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--bg);
  background: linear-gradient(135deg, #6366f1, #ec4899);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 700; color: white; margin-left: -8px;
}
.hero-avatars span:first-child { margin-left: 0; }
.hero-trust strong { color: var(--text-mid); }

/* Hero mockup */
.hero-visual { position: relative; }
.hero-mockup {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform 400ms ease;
}
.hero-mockup:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }

.mockup-bar {
  background: rgba(255,255,255,0.03); border-bottom: 1px solid var(--border);
  padding: 12px 16px; display: flex; align-items: center; gap: 8px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot:nth-child(1){background:#ef4444}
.mockup-dot:nth-child(2){background:#f59e0b}
.mockup-dot:nth-child(3){background:#10b981}
.mockup-url {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 12px; font-size: 0.72rem;
  color: var(--text-light); font-family: monospace;
}

.mockup-tabs {
  display: flex; border-bottom: 1px solid var(--border);
  padding: 0 16px; gap: 4px;
}
.mockup-tab {
  padding: 10px 14px; font-size: 0.75rem; font-weight: 600;
  color: var(--text-light); cursor: pointer; border-bottom: 2px solid transparent;
  transition: all 160ms; white-space: nowrap;
}
.mockup-tab.active { color: var(--indigo); border-bottom-color: var(--indigo); }

.mockup-body { padding: 16px; }
.mockup-panel { display: none; }
.mockup-panel.active { display: block; }

.mockup-stat-row {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px;
}
.mockup-stat {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
}
.mstat-label { font-size: 0.65rem; color: var(--text-light); font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.mstat-val { font-size: 1.15rem; font-weight: 800; color: var(--white); }
.mstat-change { font-size: 0.65rem; color: #4ade80; margin-top: 2px; }
.mstat-change.amber { color: var(--amber); }

.mockup-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 10px; border-radius: 8px; font-size: 0.75rem;
  transition: background 140ms;
}
.mockup-row:hover { background: rgba(255,255,255,0.04); }
.mockup-row-name { font-weight: 600; color: var(--text); }
.mockup-row-sub { color: var(--text-light); font-size: 0.68rem; }
.mockup-row-val { font-weight: 700; color: var(--white); }
.mbadge {
  padding: 2px 8px; border-radius: 100px; font-size: 0.65rem; font-weight: 700;
}
.mbadge-green { background: rgba(16,185,129,0.15); color: #34d399; }
.mbadge-indigo { background: rgba(99,102,241,0.15); color: #a5b4fc; }
.mbadge-amber { background: rgba(245,158,11,0.15); color: #fcd34d; }

/* ── Products Grid ───────────────────────────────────────────── */
.products-section { background: var(--bg); }

.products-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}

.product-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px;
  position: relative; overflow: hidden;
  transition: all 240ms ease; cursor: default;
}
.product-card::before {
  content: ''; position: absolute; inset: 0; opacity: 0;
  transition: opacity 300ms;
  border-radius: var(--radius-xl);
}
.product-card:hover { transform: translateY(-4px); border-color: var(--border-hover); }

.product-card.payroll::before  { box-shadow: inset 0 0 0 1px var(--indigo); }
.product-card.hr::before       { box-shadow: inset 0 0 0 1px var(--pink); }
.product-card.pipeline::before { box-shadow: inset 0 0 0 1px var(--amber); }
.product-card.resource::before { box-shadow: inset 0 0 0 1px var(--emerald); }

.product-card.payroll:hover  { box-shadow: 0 20px 48px var(--indigo-glow); border-color: rgba(99,102,241,0.4); }
.product-card.hr:hover       { box-shadow: 0 20px 48px var(--pink-glow); border-color: rgba(236,72,153,0.4); }
.product-card.pipeline:hover { box-shadow: 0 20px 48px var(--amber-glow); border-color: rgba(245,158,11,0.4); }
.product-card.resource:hover { box-shadow: 0 20px 48px var(--emerald-glow); border-color: rgba(16,185,129,0.4); }

.product-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
}
.payroll  .product-icon { background: rgba(99,102,241,0.15); }
.hr       .product-icon { background: rgba(236,72,153,0.15); }
.pipeline .product-icon { background: rgba(245,158,11,0.15); }
.resource .product-icon { background: rgba(16,185,129,0.15); }

.product-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 8px;
}
.payroll  .product-label { color: var(--indigo); }
.hr       .product-label { color: var(--pink); }
.pipeline .product-label { color: var(--amber); }
.resource .product-label { color: var(--emerald); }

.product-card h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 10px; letter-spacing: -0.02em; }
.product-card .tagline { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.6; }

.product-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.product-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid);
}
.product-features li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.payroll  .product-features li::before { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.3); }
.hr       .product-features li::before { background: rgba(236,72,153,0.12); border-color: rgba(236,72,153,0.3); }
.pipeline .product-features li::before { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); }
.resource .product-features li::before { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.3); }

.product-actions { display: flex; align-items: center; gap: 14px; }

.btn-product {
  padding: 10px 20px; border-radius: var(--radius); font-size: 0.875rem;
  font-weight: 600; cursor: pointer; border: 1.5px solid; transition: all 160ms;
  font-family: inherit;
}
.payroll  .btn-product { background: var(--indigo); color: white; border-color: var(--indigo); }
.hr       .btn-product { background: var(--pink); color: white; border-color: var(--pink); }
.pipeline .btn-product { background: var(--amber); color: #1a1a1a; border-color: var(--amber); }
.resource .btn-product { background: var(--emerald); color: white; border-color: var(--emerald); }
.btn-product:hover { transform: translateY(-1px); opacity: 0.9; box-shadow: 0 8px 20px rgba(0,0,0,0.3); }

.product-link { font-size: 0.875rem; color: var(--text-light); text-decoration: none; transition: color 140ms; }
.product-link:hover { color: var(--text-mid); }

/* ── Suite Section ───────────────────────────────────────────── */
.suite-section {
  background: linear-gradient(160deg, #0f0a2e 0%, #0a0f1e 40%, #0f1a2e 100%);
  position: relative; overflow: hidden;
}
.suite-section::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.suite-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.suite-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, rgba(99,102,241,0.2), rgba(236,72,153,0.2));
  border: 1px solid rgba(99,102,241,0.3); color: #c4b5fd;
  font-size: 0.78rem; font-weight: 700; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: .08em;
}

.suite-inner h2 { color: var(--white); margin-bottom: 16px; }
.suite-inner p { color: var(--text-mid); margin-bottom: 36px; line-height: 1.75; font-size: 1.05rem; }

.suite-modules {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 36px;
}
.suite-module {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.suite-module-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.suite-module span { font-size: 0.875rem; font-weight: 600; color: var(--text); }

.suite-price-box {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; text-align: center;
  position: relative; overflow: hidden;
}
.suite-price-box::before {
  content: ''; position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 70%);
}
.suite-price-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-light); margin-bottom: 8px; }
.suite-price-main {
  font-size: 3.5rem; font-weight: 800; color: var(--white);
  letter-spacing: -0.04em; line-height: 1;
}
.suite-price-main sup { font-size: 1.5rem; vertical-align: super; }
.suite-price-per { font-size: 0.9rem; color: var(--text-mid); margin: 8px 0 4px; }
.suite-price-note { font-size: 0.85rem; color: #a5b4fc; margin-bottom: 28px; }
.suite-savings {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3);
  color: #34d399; font-size: 0.8rem; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}

/* ── Stats ───────────────────────────────────────────────────── */
.stats-section {
  background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 80px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; text-align: center;
}
.stat-value {
  font-size: clamp(2.2rem,4vw,3.2rem); font-weight: 800; color: var(--white);
  letter-spacing: -0.04em; margin-bottom: 8px; line-height: 1;
}
.stat-value span { background: linear-gradient(90deg,#818cf8,#ec4899); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.stat-label { font-size: 0.9rem; color: var(--text-mid); }

/* ── How it works ────────────────────────────────────────────── */
.steps-section { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 36px;
  left: calc(16.6% + 36px); right: calc(16.6% + 36px);
  height: 1px; background: linear-gradient(90deg, var(--indigo), var(--pink));
}
.step { text-align: center; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800; color: white;
  margin: 0 auto 24px; position: relative; z-index: 1;
  box-shadow: 0 8px 32px rgba(99,102,241,0.4);
}
.step h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.step p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 32px; position: relative;
  transition: all 200ms;
}
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.testimonial-quote {
  position: absolute; top: 20px; right: 24px;
  font-size: 4rem; font-family: Georgia, serif; color: rgba(99,102,241,0.15); line-height: 1;
}
.testimonial-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: white; font-size: 0.875rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.author-role { font-size: 0.8rem; color: var(--text-light); }

/* ── Pricing ─────────────────────────────────────────────────── */
.pricing-section { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pricing-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 36px 28px; position: relative;
  transition: all 200ms;
}
.pricing-card.featured {
  border-color: rgba(99,102,241,0.5);
  background: linear-gradient(160deg, rgba(99,102,241,0.08) 0%, var(--bg) 100%);
  box-shadow: 0 0 40px rgba(99,102,241,0.1);
}
.pricing-card:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.pricing-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--indigo), var(--pink));
  color: white; font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
  text-transform: uppercase; letter-spacing: .06em;
}
.pricing-tier { font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--indigo); margin-bottom: 8px; }
.pricing-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.pricing-desc { font-size: 0.875rem; color: var(--text-mid); margin-bottom: 24px; min-height: 48px; }
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-currency { font-size: 1.25rem; font-weight: 700; color: var(--white); align-self: flex-start; margin-top: 8px; }
.price-amount { font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1; letter-spacing: -0.04em; }
.price-period { font-size: 0.875rem; color: var(--text-light); }
.price-note { font-size: 0.8rem; color: #a5b4fc; margin-bottom: 24px; }
.pricing-cta { width: 100%; margin-bottom: 24px; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.875rem; color: var(--text-mid);
}
.pricing-features li::before { content: '✓'; color: var(--emerald); font-weight: 800; flex-shrink: 0; }
.pricing-card-sales {
  background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(236,72,153,0.1));
  border-color: rgba(99,102,241,0.3);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.pricing-card-sales h3 { font-size: 1.6rem; margin-bottom: 12px; }
.pricing-card-sales p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.7; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; text-align: left;
  padding: 24px 0; font-size: 1rem; font-weight: 600; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px; font-family: inherit;
}
.faq-question:hover { color: var(--white); }
.faq-chevron {
  width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 200ms; color: var(--text-light); font-size: 0.75rem;
}
.faq-item.open .faq-chevron { background: var(--indigo); border-color: var(--indigo); color: white; transform: rotate(180deg); }
.faq-answer {
  display: none; padding-bottom: 24px; color: var(--text-mid);
  line-height: 1.8; font-size: 0.95rem;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #1a1040 0%, #0f1a3d 50%, #1a0f2e 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.2) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; color: rgba(255,255,255,0.35); font-size: 0.85rem; }

/* ── Footer ──────────────────────────────────────────────────── */
footer { background: #070c18; padding: 72px 0 0; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: 0.875rem; line-height: 1.75; color: var(--text-light); max-width: 280px; }
.footer-badges { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--text-light); font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 100px;
}
.footer-col h4 {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: .09em;
  color: var(--text); font-weight: 700; margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: var(--text-light); transition: color 140ms; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-bottom-left { font-size: 0.8rem; color: var(--text-light); }
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom-right a { font-size: 0.8rem; color: var(--text-light); transition: color 140ms; }
.footer-bottom-right a:hover { color: var(--text); }

/* ── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════════════════════════════════ */
.announcement-bar {
  background: linear-gradient(90deg, var(--indigo) 0%, #8b5cf6 100%);
  color: #fff;
  text-align: center;
  padding: 10px 48px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.announcement-bar a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.announcement-bar a:hover { opacity: 0.85; }
.announcement-bar-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.1rem; cursor: pointer; line-height: 1; padding: 4px;
}
.announcement-bar-close:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   INTEGRATIONS
══════════════════════════════════════════════════════════════ */
.integrations-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.integrations-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  margin-bottom: 32px;
}
.integrations-track-wrap { overflow: hidden; position: relative; }
.integrations-track-wrap::before,
.integrations-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.integrations-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.integrations-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.integrations-track {
  display: flex; gap: 16px; width: max-content;
  animation: scroll-track 30s linear infinite;
}
.integrations-track:hover { animation-play-state: paused; }
@keyframes scroll-track {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.integration-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 0.875rem; font-weight: 600; color: var(--text);
  white-space: nowrap; flex-shrink: 0;
  transition: border-color 200ms;
}
.integration-pill:hover { border-color: rgba(99,102,241,0.5); }
.integration-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   ROI CALCULATOR
══════════════════════════════════════════════════════════════ */
.roi-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(17,24,39,0.6) 100%);
}
.roi-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.roi-header { margin-bottom: 40px; }
.roi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.roi-slider-group { margin-bottom: 28px; }
.roi-slider-label {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 10px;
}
.roi-slider-label span { font-size: 0.875rem; color: var(--text-mid); font-weight: 500; }
.roi-slider-label strong { font-size: 1rem; color: var(--white); font-weight: 700; }
.roi-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: var(--border); outline: none; cursor: pointer;
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--indigo); cursor: pointer;
  border: 3px solid var(--white); box-shadow: 0 2px 8px rgba(99,102,241,0.5);
}
.roi-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--indigo); cursor: pointer;
  border: 3px solid var(--white);
}
.roi-results {
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.roi-result {
  background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.15);
  border-radius: 12px; padding: 16px;
}
.roi-result.highlight {
  background: rgba(99,102,241,0.15); border-color: rgba(99,102,241,0.4);
}
.roi-result-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-light); margin-bottom: 6px; }
.roi-result-val { font-size: 1.5rem; font-weight: 800; color: var(--white); }
.roi-result.highlight .roi-result-val { color: #a5b4fc; }
.roi-result-note { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; }
.roi-savings-banner {
  margin-top: 20px; padding: 16px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(16,185,129,0.05));
  border: 1px solid rgba(16,185,129,0.25);
  text-align: center;
}
.roi-savings-banner strong { color: #34d399; font-size: 1.1rem; }
.roi-savings-banner span { color: var(--text-mid); font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════════
   COMPETITOR COMPARISON
══════════════════════════════════════════════════════════════ */
.compare-section { padding: 96px 0; }
.compare-table-wrap { overflow-x: auto; margin-top: 48px; border-radius: 16px; border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 700px; }
.compare-table th {
  padding: 20px 24px; text-align: center;
  font-size: 0.875rem; font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.compare-table th:first-child { text-align: left; width: 220px; }
.compare-table th.col-kore {
  background: rgba(99,102,241,0.1);
  color: var(--white);
  border-bottom-color: rgba(99,102,241,0.3);
}
.compare-table th.col-kore .col-header-name { color: #a5b4fc; font-size: 1rem; }
.compare-table td {
  padding: 16px 24px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.875rem; color: var(--text-mid);
}
.compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table td.col-kore { background: rgba(99,102,241,0.04); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.compare-table tr:hover td.col-kore { background: rgba(99,102,241,0.07); }
.check-yes { color: #34d399; font-size: 1.1rem; }
.check-no  { color: rgba(255,255,255,0.2); font-size: 1.1rem; }
.check-partial { color: #fcd34d; font-size: 0.8rem; }
.col-price { font-weight: 700; }
.compare-cta { margin-top: 32px; text-align: center; }

/* ══════════════════════════════════════════════════════════════
   DEMO BOOKING
══════════════════════════════════════════════════════════════ */
.demo-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(17,24,39,0.5) 100%);
}
.demo-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.demo-bullets { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.demo-bullets li { display: flex; align-items: center; gap: 12px; color: var(--text-mid); font-size: 0.95rem; }
.demo-bullets li::before { content: '✓'; color: var(--emerald); font-weight: 800; font-size: 1rem; flex-shrink: 0; }
.demo-form-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px;
}
.demo-form-title { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.demo-form-sub { font-size: 0.875rem; color: var(--text-light); margin-bottom: 28px; }
.demo-form .form-group { margin-bottom: 16px; }
.demo-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.06em; }
.demo-form input,
.demo-form select {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--white); font-size: 0.9rem; font-family: inherit;
  transition: border-color 160ms;
  box-sizing: border-box;
}
.demo-form input:focus,
.demo-form select:focus { outline: none; border-color: var(--indigo); }
.demo-form select { appearance: none; }
.demo-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.demo-submit { width: 100%; padding: 14px; border-radius: 10px; background: var(--indigo); color: #fff; font-weight: 700; font-size: 0.95rem; border: none; cursor: pointer; margin-top: 8px; transition: opacity 160ms, transform 160ms; }
.demo-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.demo-success { text-align: center; padding: 24px 0; display: none; }
.demo-success .success-icon { font-size: 2.5rem; margin-bottom: 12px; }
.demo-success h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.demo-success p { color: var(--text-mid); font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #111827; border-top: 1px solid var(--border);
  padding: 20px 32px; z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 400ms cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-text { font-size: 0.875rem; color: var(--text-mid); max-width: 640px; }
.cookie-text a { color: var(--indigo); }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 20px; border-radius: 8px; background: var(--indigo);
  color: #fff; font-weight: 600; font-size: 0.85rem; border: none; cursor: pointer;
  transition: opacity 160ms;
}
.cookie-accept:hover { opacity: 0.85; }
.cookie-decline {
  padding: 10px 20px; border-radius: 8px;
  background: transparent; border: 1px solid var(--border);
  color: var(--text-light); font-weight: 600; font-size: 0.85rem; cursor: pointer;
  transition: border-color 160ms, color 160ms;
}
.cookie-decline:hover { border-color: var(--text-light); color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   EXIT INTENT OVERLAY
══════════════════════════════════════════════════════════════ */
.exit-overlay {
  position: fixed; inset: 0; z-index: 9100;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 300ms;
}
.exit-overlay.open { opacity: 1; pointer-events: all; }
.exit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 48px 40px; max-width: 480px; width: 90%;
  text-align: center; position: relative;
  transform: scale(0.95); transition: transform 300ms;
}
.exit-overlay.open .exit-card { transform: scale(1); }
.exit-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; color: var(--text-light);
  font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 4px;
}
.exit-close:hover { color: var(--text); }
.exit-icon { font-size: 2.5rem; margin-bottom: 16px; }
.exit-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.exit-card p { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 28px; line-height: 1.65; }
.exit-actions { display: flex; flex-direction: column; gap: 10px; }
.exit-actions .btn { width: 100%; justify-content: center; }
.exit-dismiss { margin-top: 10px; font-size: 0.8rem; color: var(--text-light); cursor: pointer; background: none; border: none; }
.exit-dismiss:hover { color: var(--text); }

/* ══════════════════════════════════════════════════════════════
   STICKY CTA BAR
══════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 8000;
  background: rgba(10,15,30,0.95); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%); transition: transform 350ms cubic-bezier(.4,0,.2,1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-text { font-size: 0.9rem; color: var(--text-mid); }
.sticky-cta-text strong { color: var(--white); }
.sticky-cta-actions { display: flex; gap: 10px; flex-shrink: 0; }
.sticky-cta-dismiss { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); display: none; }

/* ══════════════════════════════════════════════════════════════
   SOCIAL PROOF TOAST
══════════════════════════════════════════════════════════════ */
.sp-toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 7000;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-width: 320px;
  transform: translateX(-120%); transition: transform 500ms cubic-bezier(.34,1.56,.64,1);
}
.sp-toast.show { transform: translateX(0); }
.sp-toast-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.sp-toast-body { font-size: 0.8rem; }
.sp-toast-name { font-weight: 700; color: var(--white); }
.sp-toast-msg { color: var(--text-mid); }
.sp-toast-time { font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }

/* ── Utilities ───────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .suite-inner { grid-template-columns: 1fr; gap: 48px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .roi-inner { grid-template-columns: 1fr; gap: 40px; }
  .demo-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .products-grid { grid-template-columns: 1fr; }
  .suite-modules { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .roi-results { grid-template-columns: 1fr; }
  .demo-form .form-row { grid-template-columns: 1fr; }
  .sticky-cta { flex-direction: column; padding: 16px 24px; }
  .sticky-cta-text { text-align: center; }
  .cookie-banner { flex-direction: column; text-align: center; }
  .sp-toast { display: none; }
}
