/* ================================================
   Call IQ — Stylesheet
   Design: SkipCalls/SideShift inspired
   Font: Inter | Primary: #0A0A0A | Accent: #0EA5E9
   © 2025 Call IQ
================================================ */

/* ============================================
   DESIGN SYSTEM — SkipCalls/SideShift inspired
   Clean white, large bold Inter, generous space
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --white: #ffffff;
  --black: #0A0A0A;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  --accent: #0EA5E9;
  --accent-dark: #0284C7;
  --accent-light: #E0F2FE;
  --accent-mid: #38BDF8;
  --green: #10B981;
  --green-light: #D1FAE5;
  --orange: #F59E0B;
  --red: #EF4444;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --shadow-xl: 0 32px 80px rgba(0,0,0,0.14);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

body { font-family: var(--font); background: var(--white); color: var(--black); line-height: 1.65; overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ============ TYPOGRAPHY ============ */
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; color: var(--black); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; color: var(--black); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; color: var(--black); }
h4 { font-size: 1.05rem; font-weight: 700; line-height: 1.3; color: var(--black); }
p { color: var(--gray-600); line-height: 1.75; }

.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-light); padding: 5px 13px;
  border-radius: var(--radius-full); margin-bottom: 18px;
}

/* ============ LAYOUT ============ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }
.page { display: none; }
.page.active { display: block; }

/* ============ GRID ============ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: var(--radius-full); cursor: pointer;
  border: none; text-decoration: none; transition: all 0.18s ease;
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(14, 165, 233, 0.4); }
.btn-outline { background: transparent; color: var(--gray-800); border: 1.5px solid var(--gray-300); }
.btn-outline:hover { border-color: var(--gray-500); background: var(--gray-50); color: var(--black); }
.btn-blue { background: var(--accent); color: var(--white); box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35); }
.btn-blue:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 10px 28px rgba(14, 165, 233, 0.4); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; min-height: 52px; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; min-height: 40px; }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.3s;
}
.nav-inner { display: flex; align-items: center; height: clamp(108px, 13vw, 144px); gap: 4px; }
.logo { display: flex; align-items: center; text-decoration: none; margin-right: 20px; margin-left: 4px; flex-shrink: 0; }
.logo img { height: clamp(92px, 11vw, 128px); width: auto; max-width: min(380px, 72vw); object-fit: contain; display: block; }

.nav-links { display: flex; align-items: center; gap: 1px; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px; padding: 8px 14px;
  border-radius: var(--radius); font-size: 0.9rem; font-weight: 500;
  color: var(--gray-600); text-decoration: none; cursor: pointer;
  transition: all 0.15s; white-space: nowrap; border: none; background: none;
}
.nav-link:hover { color: var(--black); background: var(--gray-100); }
.nav-link svg { width: 13px; height: 13px; transition: transform 0.2s; stroke: currentColor; fill: none; stroke-width: 2; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 8px; min-width: 230px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all 0.18s ease; box-shadow: var(--shadow-lg); z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-wide { min-width: 300px; }
.dropdown-link {
  display: flex; align-items: center; gap: 11px; padding: 9px 13px;
  border-radius: var(--radius); color: var(--gray-600); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: all 0.12s;
}
.dropdown-link:hover { color: var(--black); background: var(--gray-50); }
.ddi {
  width: 30px; height: 30px; border-radius: 7px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; flex-shrink: 0;
}
.dd-section { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gray-400); padding: 10px 13px 4px; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 20px; height: 1.5px; background: var(--black); margin: 5px 0; border-radius: 2px; transition: all 0.3s; }

/* Mobile menu */
.mob-nav {
  display: none; flex-direction: column; position: fixed; inset: 0; z-index: 999;
  background: var(--white); padding: 80px 24px 32px; overflow-y: auto; gap: 2px;
}
.mob-nav.open { display: flex; }
.mob-link { display: block; padding: 12px 14px; border-radius: var(--radius); color: var(--gray-700); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: all 0.15s; }
.mob-link:hover { background: var(--gray-100); color: var(--black); }
.mob-section { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); padding: 16px 14px 6px; }
.mob-divider { border: none; border-top: 1px solid var(--gray-100); margin: 8px 0; }

/* ============ HERO ============ */
.hero { padding: 167px 0 80px;
  background: var(--white);
  position: relative; overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-100); border-radius: var(--radius-full);
  padding: 7px 16px; font-size: 0.83rem; font-weight: 600; color: var(--gray-700);
  margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 1.15rem; color: var(--gray-600); max-width: 560px; margin: 0 auto 36px; line-height: 1.75; }
.hero-actions { display: flex; align-items: stretch; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.hero-note { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }

/* Stats bar */
.stats-bar {
  display: flex; align-items: center; justify-content: center; gap: 0;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 0; overflow: hidden;
  margin: 52px auto 0; max-width: 780px;
}
.stat-item { flex: 1; padding: 28px 24px; text-align: center; border-right: 1px solid var(--gray-200); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--black); letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

/* ============ TICKER ============ */
.ticker-wrap {
  overflow: hidden; background: var(--black); padding: 14px 0;
}
.ticker-track { display: flex; gap: 56px; animation: ticker 28s linear infinite; white-space: nowrap; width: max-content; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.6); flex-shrink: 0; }
.ticker-item strong { color: var(--white); }
.ticker-sep { color: rgba(255,255,255,0.2); }

/* ============ CARDS ============ */
.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.2s ease; box-shadow: var(--shadow-sm);
}
.card:hover { border-color: var(--gray-300); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-blue { border-color: #BAE6FD; background: linear-gradient(135deg, #F0F9FF 0%, var(--white) 100%); }
.card-dark { background: var(--black); border-color: var(--black); color: var(--white); }
.card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.6); }

.feat-icon {
  width: 44px; height: 44px; border-radius: var(--radius); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  background: var(--gray-100);
}
.feat-icon-blue { background: var(--accent-light); }
.feat-icon-green { background: var(--green-light); }
.feat-icon-orange { background: #FEF3C7; }

/* ============ SECTION DIVIDERS ============ */
.divider-line { border: none; border-top: 1px solid var(--gray-100); }

/* ============ PRICING ============ */
.pricing-card {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 36px 32px; position: relative;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-card.popular { border-color: var(--black); background: var(--black); }
.pricing-card.popular h3, .pricing-card.popular h4, .pricing-card.popular .pricing-price { color: var(--white); }
.pricing-card.popular p, .pricing-card.popular .pricing-mins { color: rgba(255,255,255,0.55); }
.pricing-card.popular .pricing-feature { color: rgba(255,255,255,0.75); }
.pricing-card.popular .pricing-feature::before { color: var(--accent-mid); }
.pricing-card.popular .pricing-feature.miss::before { color: #F87171; }
.pop-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--white); font-size: 0.72rem; font-weight: 700;
  padding: 5px 16px; border-radius: var(--radius-full); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.pricing-plan { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 10px; }
.pricing-card.popular .pricing-plan { color: rgba(255,255,255,0.4); }
.pricing-price { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.04em; color: var(--black); margin-bottom: 2px; line-height: 1; }
.pricing-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 600; }
.pricing-price sub { font-size: 1rem; font-weight: 400; color: var(--gray-400); }
.pricing-card.popular .pricing-price sub { color: rgba(255,255,255,0.4); }
.pricing-mins { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 24px; }
.p-divider { border: none; border-top: 1px solid var(--gray-200); margin: 20px 0; }
.pricing-card.popular .p-divider { border-color: rgba(255,255,255,0.1); }
.pricing-feature { display: flex; align-items: flex-start; gap: 9px; font-size: 0.875rem; color: var(--gray-600); margin-bottom: 10px; line-height: 1.4; }
.pricing-feature::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-feature.miss::before { content: "✕"; color: var(--red); font-weight: 700; }
.pricing-feature.miss { color: var(--gray-400); }

/* ============ TABLE ============ */
.table-wrap { border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; overflow-x: auto; }
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.comp-table th { background: var(--gray-50); padding: 13px 16px; text-align: left; font-weight: 600; color: var(--gray-800); border-bottom: 1px solid var(--gray-200); }
.comp-table td { padding: 13px 16px; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); }
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr:hover td { background: var(--gray-50); }
.comp-table .yes { color: var(--green); font-weight: 600; }
.comp-table .no { color: var(--gray-300); }

/* ============ INTEGRATION PILLS ============ */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.83rem;
  font-weight: 500; color: var(--gray-700); transition: all 0.15s;
}
.pill:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.pills-wrap { display: flex; flex-wrap: wrap; gap: 10px; }

/* ============ TESTIMONIALS ============ */
.testi {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: 32px; box-shadow: var(--shadow-sm);
}
.testi-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 22px; font-weight: 400; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--black); }
.testi-role { font-size: 0.78rem; color: var(--gray-400); }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--black); gap: 16px; }
.faq-q:hover { color: var(--accent); }
.faq-icon { font-size: 1.3rem; color: var(--gray-400); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--gray-500); font-size: 0.9rem; line-height: 1.75; max-width: 680px; }
.faq-item.open .faq-a { display: block; }

/* ============ ROI CALCULATOR ============ */
.roi-wrap { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 40px; }
.roi-label { font-size: 0.83rem; font-weight: 600; color: var(--gray-700); display: block; margin-bottom: 8px; }
.roi-input, .roi-select {
  width: 100%; background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); padding: 12px 14px; font-family: var(--font);
  font-size: 0.9rem; color: var(--black); outline: none; transition: border-color 0.2s;
  appearance: none;
}
.roi-input:focus, .roi-select:focus { border-color: var(--accent); }
.roi-group { margin-bottom: 18px; }
.roi-result { background: var(--white); border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg); padding: 20px 24px; margin-top: 14px; }
.roi-result.highlight { border-color: var(--accent); background: #F0F9FF; }
.roi-result-num { font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; color: var(--black); line-height: 1; }
.roi-result.highlight .roi-result-num { color: var(--accent); }
.roi-result-label { font-size: 0.78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; margin-top: 4px; }

/* ============ CTA SECTION ============ */
.cta-block {
  background: var(--black); border-radius: var(--radius-xl); padding: 72px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ""; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block h2, .cta-block h3 { color: var(--white); }
.cta-block p { color: rgba(255,255,255,0.82); }
.cta-block .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
.cta-block .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
  background: transparent;
}
.cta-block .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { padding: 120px 0 60px; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }

/* ============ INDUSTRY CARD ============ */
.ind-card {
  display: block; text-decoration: none;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all 0.2s; box-shadow: var(--shadow-sm);
}
.ind-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.ind-icon { font-size: 1.8rem; margin-bottom: 12px; }
.ind-card h4 { color: var(--black); margin-bottom: 6px; }
.ind-card p { font-size: 0.83rem; color: var(--gray-400); }

/* ============ STEP ============ */
.step-row { display: flex; gap: 20px; align-items: flex-start; margin-bottom: 36px; }
.step-num { width: 38px; height: 38px; border-radius: 50%; background: var(--black); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }

/* ============ PHONE MOCKUP ============ */
.mockup-wrap { position: relative; }
.mockup {
  background: var(--white); border: 1.5px solid var(--gray-200);
  border-radius: 22px; padding: 24px 22px; width: 280px; margin: 0 auto;
  box-shadow: var(--shadow-xl);
}
.mockup-header { font-size: 0.72rem; color: var(--gray-400); text-align: center; margin-bottom: 16px; font-weight: 500; }
.wave { display: flex; align-items: center; justify-content: center; gap: 4px; height: 44px; margin: 0 0 18px; }
.wave-bar { width: 4px; border-radius: 2px; background: var(--accent); animation: wv 1.1s ease-in-out infinite; }
.wave-bar:nth-child(2){animation-delay:0.1s} .wave-bar:nth-child(3){animation-delay:0.2s}
.wave-bar:nth-child(4){animation-delay:0.3s} .wave-bar:nth-child(5){animation-delay:0.4s}
.wave-bar:nth-child(6){animation-delay:0.3s} .wave-bar:nth-child(7){animation-delay:0.15s}
@keyframes wv { 0%,100%{height:8px;opacity:.35} 50%{height:32px;opacity:1} }
.bubble { background: var(--gray-100); border-radius: 14px 14px 14px 3px; padding: 10px 13px; margin-bottom: 10px; font-size: 0.8rem; color: var(--gray-800); line-height: 1.45; }
.bubble.ai { border-radius: 14px 14px 3px 14px; background: var(--accent); color: var(--white); margin-left: 20px; }
.mockup-status { display: flex; align-items: center; gap: 7px; margin-top: 14px; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }
.status-text { font-size: 0.72rem; color: var(--green); font-weight: 600; }

/* Floating badges on mockup */
.mock-badge {
  position: absolute; background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--radius); padding: 10px 14px; box-shadow: var(--shadow-md);
  font-size: 0.78rem; font-weight: 600; color: var(--black); display: flex; align-items: center; gap: 7px;
}
.mock-badge-1 { top: 20px; right: -20px; }
.mock-badge-2 { bottom: 40px; left: -30px; }
.mock-badge-green { color: var(--green); }

/* ============ ALERT ============ */
.alert { padding: 14px 18px; border-radius: var(--radius); display: flex; gap: 12px; align-items: flex-start; margin: 16px 0; }
.alert-warn { background: #FFF7ED; border: 1px solid #FED7AA; }
.alert-info { background: #F0F9FF; border: 1px solid #BAE6FD; }
.alert-text { font-size: 0.875rem; color: var(--gray-700); line-height: 1.6; }

/* ============ CHIP ============ */
.chip { display: inline-block; background: var(--gray-100); border-radius: 5px; padding: 3px 8px; font-size: 0.78rem; color: var(--gray-600); font-weight: 500; }

/* ============ PAGE TABS ============ */
.ptabs { display: flex; border-bottom: 1.5px solid var(--gray-100); gap: 0; overflow-x: auto; margin-bottom: 40px; }
.ptab { padding: 11px 20px; font-size: 0.875rem; font-weight: 600; color: var(--gray-400); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1.5px; transition: all 0.15s; white-space: nowrap; }
.ptab:hover { color: var(--black); }
.ptab.active { color: var(--black); border-bottom-color: var(--black); }

/* ============ COMPARISON ROW ============ */
.comp-highlight { background: #F0FDF4; border: 1.5px solid #BBF7D0; border-radius: var(--radius-lg); padding: 20px 24px; }

/* ============ FOOTER ============ */
footer { background: var(--gray-900); padding: 72px 0 40px; }
/* Explicit 6-column grid (Brand + 5 link columns) — using fixed track counts
   per breakpoint, not flex-wrap, so a column can never wrap onto its own row
   by itself: 6 divides cleanly into 6/3/2/1 columns at every breakpoint below. */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr; gap: 32px 24px; margin-bottom: 56px; }
.footer-brand { max-width: 300px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.4); margin: 16px 0 24px; max-width: 260px; line-height: 1.65; }
.footer-col { min-width: 0; }
.footer-logo img { height: clamp(52px, 6vw, 72px); width: auto; object-fit: contain; border-radius: 10px; }
.footer-col h5 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.flink { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 0.875rem; padding: 5px 0; transition: color 0.15s; }
.flink:hover { color: var(--white); }

/* In-card content links (light backgrounds) — e.g. Help Center card link lists */
.card-link { display: flex; align-items: center; gap: 4px; color: var(--accent); text-decoration: none; font-size: 0.875rem; font-weight: 600; padding: 3px 0; transition: gap 0.15s ease, color 0.15s; }
.card-link:hover { gap: 8px; color: var(--accent-mid); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 32px; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.footer-legal { font-size: 0.75rem; color: rgba(255,255,255,0.3); line-height: 1.85; max-width: 660px; }
.footer-legal a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }
.footer-links-row { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links-row a { font-size: 0.75rem; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-links-row a:hover { color: var(--white); }

/* ============ VALUE SECTION ============ */
.value-item { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--gray-100); align-items: flex-start; }
.value-item:last-child { border-bottom: none; }
.value-num { font-size: 2.8rem; font-weight: 900; color: var(--gray-100); letter-spacing: -0.04em; flex-shrink: 0; width: 70px; line-height: 1; margin-top: 2px; }

/* ============ BRAND LOGO STRIP ============ */
.brand-strip { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; padding: 40px 0; }
.brand-item {
  display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 700;
  color: var(--gray-300); letter-spacing: -0.01em;
}
.brand-item span { font-size: 1.3rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  /* 6 footer items (brand counts as one) / 3 columns = exactly 2 even rows. */
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { max-width: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero { padding: 110px 0 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-200); padding: 20px; }
  .stat-item:last-child { border-bottom: none; }
  .cta-block { padding: 48px 24px; }
  .cta-block .btn-group { flex-direction: column; align-items: stretch; }
  .cta-block .btn-group .btn { width: 100%; }
  .section { padding: 72px 0; }
  /* 6 footer items / 2 columns = exactly 3 even rows, never an orphan. */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .footer-bottom { flex-direction: column; }
  .mock-badge { display: none; }
  .nav-actions .btn-primary { min-height: 44px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .nav-actions .btn-outline { display: none; }
}

/* ============ INTEGRATION LOGO PILLS ============ */
.logo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 8px 14px; border-radius: var(--radius-full);
  font-size: 0.83rem; font-weight: 600; color: var(--gray-700);
  transition: all 0.15s; box-shadow: var(--shadow-sm);
}
.logo-pill:hover {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 4px 12px rgba(14,165,233,0.15);
  transform: translateY(-1px);
}
.logo-pill svg, .logo-pill img { flex-shrink: 0; border-radius: 4px; object-fit: contain; }
.logo-pill span { white-space: nowrap; }

/* ============ FOOTER FIX ============ */
/* Ensure footer stays at bottom consistently */
footer {
  background: var(--gray-900);
  padding: 72px 0 40px;
  margin-top: 0;
  position: relative;
  clear: both;
}

/* Ensure all pages properly contain their content */
.page {
  display: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.page.active {
  display: block;
}

/* Make sure the last section in any page doesn't push footer awkwardly —
   preserve bottom padding so the CTA section doesn't visually merge into the footer */
.section:last-child,
.section-sm:last-child {
  margin-bottom: 0;
  padding-bottom: 80px;
}

/* Override any unintended margin/padding on page-hero */
.page-hero {
  padding: 120px 0 60px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 0;
}

/* Ensure CTA block at end of pages has proper spacing */
.cta-block {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}