/* Apex Solutions — B2B SaaS Landing Page */
@import url('../shared.css');

:root {
  --deep-blue: #1e3a5f;
  --light-bg: #f0f4f8;
  --cta-blue: #0ea5e9;
  --cta-hover: #0284c7;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(30, 58, 95, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 58, 95, 0.1);
  --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.15);
}

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ================================
   NAV — Sticky with backdrop blur
   ================================ */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 3rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.1);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--deep-blue);
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--deep-blue);
  color: var(--white);
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-center a {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-cta {
  background: var(--cta-blue);
  color: var(--white);
}
.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--deep-blue);
  background: var(--light-bg);
}
.btn-lg {
  padding: 0.8rem 1.8rem;
  font-size: 1rem;
}

/* ================================
   HERO
   ================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 3rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: #dbeafe;
  color: var(--cta-blue);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--deep-blue);
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero-text p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-avatars {
  display: flex;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border: 2px solid white;
  margin-left: -8px;
}
.avatar:first-child { margin-left: 0; }
.hero-proof-text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ================================
   DASHBOARD MOCKUP (Hero)
   ================================ */
.dashboard-mock {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.mock-dot.red { background: #f87171; }
.mock-dot.yellow { background: #fbbf24; }
.mock-dot.green { background: #34d399; }
.mock-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}
.mock-bell {
  position: relative;
  font-size: 0.9rem;
}
.bell-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  border: 1.5px solid #f8fafc;
}
.mock-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  min-height: 280px;
}
.mock-sidebar {
  background: var(--deep-blue);
  padding: 1rem 0;
}
.sidebar-item {
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  transition: background 0.2s;
}
.sidebar-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-weight: 600;
}
.mock-content {
  padding: 1rem;
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.mock-stat {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
}
.mock-stat-label {
  font-size: 0.55rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mock-stat-num {
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-blue);
  margin: 0.15rem 0;
}

/* Sparkline bars */
.sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 20px;
}
.spark {
  flex: 1;
  background: var(--cta-blue);
  border-radius: 1px;
  min-height: 3px;
  opacity: 0.7;
}
.sparkline.green .spark { background: #10b981; }

/* Mini donut chart (conic-gradient) */
.mini-donut {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: conic-gradient(
    var(--cta-blue) 0deg 281deg,
    #e2e8f0 281deg 360deg
  );
  position: relative;
  margin-top: 0.15rem;
}
.mini-donut::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--light-bg);
  border-radius: 50%;
}

/* Line chart with CSS clip-path */
.mock-line-chart {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 0.6rem;
  overflow: hidden;
}
.chart-label {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.4rem;
}
.line-chart-area {
  height: 60px;
  background: linear-gradient(to bottom, rgba(14, 165, 233, 0.3), rgba(14, 165, 233, 0.02));
  clip-path: polygon(
    0% 80%, 8% 65%, 16% 70%, 24% 50%, 32% 55%, 40% 35%,
    48% 40%, 56% 25%, 64% 30%, 72% 15%, 80% 20%, 88% 10%, 100% 18%,
    100% 100%, 0% 100%
  );
  position: relative;
}

/* ================================
   TRUST BAR
   ================================ */
.trust-bar {
  background: var(--light-bg);
  padding: 2.5rem 3rem;
  text-align: center;
}
.trust-bar p {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.02em;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.trust-name:hover { opacity: 1; }

/* ================================
   FEATURES — 3x2 grid
   ================================ */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.features h2,
.product-section h2,
.integrations h2,
.testimonials h2,
.pricing h2,
.faq h2 {
  text-align: center;
  font-size: 2.2rem;
  color: var(--deep-blue);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 3rem;
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.features .subtitle { margin-bottom: 3.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--deep-blue);
}
.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cta-blue);
  transition: color 0.2s;
}
.feature-link:hover { color: var(--cta-hover); }

/* ================================
   PRODUCT SCREENSHOT SECTION
   ================================ */
.product-section {
  padding: 6rem 3rem;
  background: var(--light-bg);
}
.product-section .subtitle { margin-bottom: 3rem; }
.browser-window {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}
.browser-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.b-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.b-dot.red { background: #f87171; }
.b-dot.yellow { background: #fbbf24; }
.b-dot.green { background: #34d399; }
.browser-address {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.browser-actions {
  color: var(--muted);
  font-size: 1rem;
}
.browser-content {
  padding: 1.5rem;
}

/* Metrics row */
.browser-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.metric-card {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.metric-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}
.metric-value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--deep-blue);
}
.metric-change {
  font-size: 0.75rem;
  font-weight: 600;
}
.metric-change.positive { color: #10b981; }
.metric-change.negative { color: #ef4444; }

/* Area chart (CSS clip-path) */
.browser-area-chart {
  background: var(--light-bg);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}
.area-chart-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 0.8rem;
}
.area-chart {
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(14, 165, 233, 0.35),
    rgba(14, 165, 233, 0.03)
  );
  clip-path: polygon(
    0% 90%, 5% 78%, 10% 80%, 15% 68%, 20% 72%, 25% 60%,
    30% 58%, 35% 50%, 40% 52%, 45% 42%, 50% 38%, 55% 40%,
    60% 32%, 65% 28%, 70% 30%, 75% 22%, 80% 18%, 85% 20%,
    90% 12%, 95% 15%, 100% 8%,
    100% 100%, 0% 100%
  );
  border-radius: 0 0 4px 4px;
  position: relative;
}

/* Data table */
.browser-table {
  overflow-x: auto;
}
.browser-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
.browser-table thead {
  background: var(--deep-blue);
  color: var(--white);
}
.browser-table th {
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sort-indicator {
  font-size: 0.6rem;
  opacity: 0.5;
  margin-left: 0.25rem;
}
.browser-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.browser-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.browser-table tbody tr:hover {
  background: #eef4fb;
}

/* Status badges */
.status-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
}
.status-badge.active {
  background: #d1fae5;
  color: #065f46;
}
.status-badge.warning {
  background: #fef3c7;
  color: #92400e;
}
.status-badge.danger {
  background: #fee2e2;
  color: #991b1b;
}

/* ================================
   INTEGRATIONS
   ================================ */
.integrations {
  padding: 6rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.integrations .subtitle { margin-bottom: 2.5rem; }
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}
.tool-pill {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  transition: all 0.2s;
}
.tool-pill:hover {
  border-color: var(--cta-blue);
  color: var(--cta-blue);
  background: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ================================
   STATS BAND
   ================================ */
.stats {
  background: var(--deep-blue);
  color: var(--white);
  padding: 4.5rem 3rem;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 0.3rem;
  font-weight: 500;
}

/* ================================
   TESTIMONIALS — 3 cards
   ================================ */
.testimonials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 3rem;
}
.testimonials .subtitle { margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--deep-blue);
  display: block;
}
.testimonial-author span {
  display: block;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ================================
   PRICING
   ================================ */
.pricing {
  background: var(--light-bg);
  padding: 6rem 3rem;
}
.pricing .subtitle { margin-bottom: 2rem; }

/* Toggle switch (CSS-only, decorative) */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.toggle-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.toggle-save {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.25rem;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  cursor: pointer;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 26px;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--cta-blue);
}
.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.pricing-card.featured {
  border-color: var(--cta-blue);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
  transform: scale(1.03);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-blue);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  letter-spacing: 0.03em;
}
.pricing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
  color: var(--deep-blue);
}
.pricing-desc {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--deep-blue);
  margin: 0.5rem 0 1.5rem;
}
.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
}
.pricing-btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  transition: all 0.2s;
}
.pricing-btn.primary {
  background: var(--cta-blue);
  color: var(--white);
}
.pricing-btn.primary:hover {
  background: var(--cta-hover);
}
.pricing-btn.secondary {
  background: var(--light-bg);
  color: var(--deep-blue);
}
.pricing-btn.secondary:hover {
  background: #e2e8f0;
}

/* Feature comparison rows */
.pricing-features-list {
  text-align: left;
}
.pricing-feature {
  padding: 0.45rem 0;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid #f1f5f9;
}
.pricing-feature:last-child { border-bottom: none; }
.pricing-feature.muted {
  color: #cbd5e1;
}
.check {
  color: #10b981;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.check.dim { color: #cbd5e1; }

/* ================================
   FAQ ACCORDION
   ================================ */
.faq {
  padding: 6rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq .subtitle { margin-bottom: 3rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--cta-blue);
}
.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep-blue);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}
.faq-item summary:hover {
  background: #f8fafc;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-item[open] summary::after {
  content: '\2212';
  color: var(--cta-blue);
}
.faq-answer {
  padding: 0 1.5rem 1.2rem;
}
.faq-answer p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
  text-align: center;
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #0ea5e9 100%);
  color: var(--white);
}
.cta-section h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 800;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.cta-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
}
.cta-input {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}
.cta-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.cta-input:focus { border-color: rgba(255, 255, 255, 0.7); }
.cta-section .btn-cta {
  background: var(--white);
  color: var(--deep-blue);
  font-weight: 700;
}
.cta-section .btn-cta:hover {
  background: #e0f2fe;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.cta-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ================================
   FOOTER — 4-column grid
   ================================ */
.site-footer {
  background: var(--deep-blue);
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 3rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}
.murikual-footer { background: #152238; }

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .browser-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    padding: 0.8rem 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .nav-center {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2.5rem;
  }
  .hero-text h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .mock-body { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .features, .testimonials, .integrations, .faq { padding: 4rem 1.5rem; }
  .features-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing { padding: 4rem 1.5rem; }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  .stats { padding: 3rem 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 2rem; }
  .browser-metrics { grid-template-columns: 1fr 1fr; }
  .product-section { padding: 4rem 1.5rem; }
  .cta-section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 3rem 1.5rem 2rem; }
  .faq { max-width: 100%; }
}

@media (max-width: 480px) {
  .nav-center { display: none; }
  .browser-metrics { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 1.5rem; }
  .trust-bar { padding: 2rem 1.25rem; }
  .hero-text h1 { font-size: 1.75rem; }
  .features h2,
  .product-section h2,
  .integrations h2,
  .testimonials h2,
  .pricing h2,
  .faq h2 {
    font-size: 1.6rem;
  }
  .cta-section h2 { font-size: 1.6rem; }
  .cta-input { min-width: 0; width: 100%; }
  .pricing-card { padding: 2rem 1.5rem; }
  .stat-num { font-size: 1.6rem; }
  .browser-table th,
  .browser-table td {
    padding: 0.5rem 0.6rem;
    font-size: 0.7rem;
  }
}
