/* ============================================================
   VORM VISUAL COMMUNICATION — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:           #1A1A18;
  --card:         #222220;
  --card-deep:    #1E1E1C;
  --card-hover:   #272725;
  --accent:       #1AAEDC;
  --accent-glow:  rgba(26,174,220,0.25);
  --green:        #5DCAA5;
  --purple:       #A78BFA;
  --text:         #F0F0EE;
  --text-muted:   #8A8A87;
  --text-dim:     #5A5A58;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(26,174,220,0.25);
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
h1 { font-size: clamp(2.8rem,7vw,5.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem,4.5vw,3.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.25rem,2.5vw,1.625rem); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.0625rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

.accent {
  background: linear-gradient(135deg, #1AAEDC 0%, #5DCAA5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.green   { color: var(--green); }
.purple  { color: var(--purple); }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section    { padding: 110px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--accent);
  border-radius: 2px;
}

.section-head { margin-bottom: 64px; }
.section-head p { margin-top: 16px; max-width: 560px; font-size: 1.0625rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  border: none;
  white-space: nowrap;
  position: relative;
}
.btn-primary {
  background: linear-gradient(135deg, #1AAEDC 0%, #18aad6 100%);
  color: #0a0a08;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #22c4f5 0%, #5DCAA5 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,174,220,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(26,174,220,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }

/* ── Navigation ─────────────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(26,26,24,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
}
.nav-logo .dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(26,174,220,0.2);
  box-shadow: 0 8px 32px rgba(26,174,220,0.12), 0 24px 64px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset;
}

/* ── Scroll Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-up-d1 { transition-delay: 0.08s; }
.fade-up-d2 { transition-delay: 0.16s; }
.fade-up-d3 { transition-delay: 0.24s; }
.fade-up-d4 { transition-delay: 0.32s; }
.fade-up-d5 { transition-delay: 0.40s; }
.fade-up-d6 { transition-delay: 0.48s; }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 990;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 8px 40px rgba(37,211,102,0.6);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 44px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-size: 1.0625rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.footer-logo .dot { color: var(--accent); }
.footer-tagline { font-size: 0.8125rem; color: var(--text-dim); margin-top: 2px; }
.footer-copy { font-size: 0.8125rem; color: var(--text-dim); margin-top: 6px; }
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* Hero */
.hero {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A18 0%, #0D2A33 40%, #0A1F26 70%, #1A1A18 100%);
  background-size: 400% 400%;
  animation: heroBgShift 12s ease-in-out infinite;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26,174,220,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93,202,165,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,174,220,0.1);
  border: 1px solid rgba(26,174,220,0.2);
  color: var(--accent);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.hero-eyebrow::before { content:'●'; font-size:0.5rem; opacity:0.7; }
.hero h1 { max-width: 900px; }
.hero-sub {
  margin-top: 28px;
  font-size: 1.1875rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.stats-bar {
  display: flex;
  gap: 0;
  margin-top: 64px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 140px;
  padding: 0 32px 0 0;
}
.stat:not(:last-child) {
  border-right: 1px solid var(--border);
  margin-right: 32px;
}
.stat-value {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-value span { color: var(--accent); }
.stat-label { font-size: 0.8125rem; color: var(--text-dim); margin-top: 4px; letter-spacing: 0.04em; }

/* Who We Work With */
.who-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.who-card { padding: 40px; }
.who-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.25rem;
}
.who-card-icon.blue  { background: rgba(26,174,220,0.12); }
.who-card-icon.green { background: rgba(93,202,165,0.12); }
.who-card h3 { margin-bottom: 16px; }
.who-card p  { margin-bottom: 20px; }
.client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.client-tag {
  font-size: 0.8rem;
  font-weight: 500;
  padding: 5px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-muted);
}

/* Service Table */
.service-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; }
.service-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
  cursor: default;
}
.service-table tr:hover { background: rgba(255,255,255,0.025); }
.service-table td {
  padding: 22px 24px;
  font-size: 0.9375rem;
}
.service-table .svc-name { font-weight: 600; color: var(--text); }
.service-table .svc-desc { color: var(--text-muted); font-size: 0.875rem; }
.service-table .svc-price {
  text-align: right;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}
.service-table .svc-price small { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); display: block; }
.service-table tr.featured {
  border-left: 3px solid var(--accent);
}
.service-table tr.featured td:first-child { padding-left: 21px; }
.service-table tr.featured .svc-name { color: var(--accent); }

.ai-strip {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 40px;
}
.ai-chip {
  background: rgba(26,174,220,0.06);
  border: 1px solid rgba(26,174,220,0.16);
  border-radius: var(--radius);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ai-chip:hover {
  background: rgba(26,174,220,0.12);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26,174,220,0.1);
}
.ai-chip-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.ai-chip p { font-size: 0.875rem; }

/* How It Works */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 60px; }
.step-card { padding: 36px 32px; }
.step-num {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.7;
}
.step-card h4 { font-size: 1.0625rem; margin-bottom: 10px; }

.compare-table { width: 100%; border-collapse: collapse; }
.compare-table thead tr { border-bottom: 1px solid var(--border); }
.compare-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.compare-table th.highlight { color: var(--accent); }
.compare-table td {
  padding: 18px 24px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
}
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-table td.yes { color: var(--green); font-weight: 600; }
.compare-table td.no  { color: var(--text-dim); }
.compare-table td.partial { color: var(--text-muted); }
.compare-table tr:hover { background: rgba(255,255,255,0.02); }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.testimonial-card { padding: 36px; }
.testimonial-stars { color: #FFB547; font-size: 0.875rem; margin-bottom: 20px; letter-spacing: 2px; }
.testimonial-body { font-size: 1.0625rem; color: var(--text); line-height: 1.65; font-style: italic; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #0a0a08;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.testimonial-role { font-size: 0.8125rem; color: var(--text-dim); }

/* Trusted By */
.trusted-bg { background: var(--card-deep); }
.trusted-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}
.trusted-pill {
  padding: 9px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.25s;
}
.trusted-pill:hover {
  background: rgba(26,174,220,0.08);
  border-color: rgba(26,174,220,0.25);
  color: var(--text);
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26,174,220,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { max-width: 700px; margin: 0 auto 20px; }
.cta-section p  { max-width: 480px; margin: 0 auto 44px; font-size: 1.0625rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   PRICING PAGE STYLES
   ============================================================ */

.pricing-hero { padding: 110px 0 80px; text-align: center; }
.pricing-hero h1 { max-width: 700px; margin: 0 auto; }
.pricing-hero p  { max-width: 480px; margin: 20px auto 0; font-size: 1.0625rem; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 80px; }
.plan-card {
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
}
.plan-card.popular {
  border-color: rgba(26,174,220,0.4);
  background: linear-gradient(160deg, rgba(26,174,220,0.07) 0%, var(--card) 40%);
  position: relative;
}
.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0a08;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 10px 10px;
}
.plan-name { font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.plan-price { font-size: clamp(2rem,4vw,2.75rem); font-weight: 900; letter-spacing: -0.03em; color: var(--text); line-height: 1; }
.plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.plan-desc { margin: 16px 0 28px; font-size: 0.9375rem; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 28px; }
.plan-features { flex: 1; display: flex; flex-direction: column; gap: 13px; margin-bottom: 32px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text-muted); }
.plan-feature::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.875rem; flex-shrink: 0; margin-top: 1px; }
.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; justify-content: center; }

.addons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.addon-card { padding: 28px 32px; }
.addon-name { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.addon-price { font-size: 0.875rem; color: var(--accent); font-weight: 600; margin-bottom: 10px; }
.addon-desc { font-size: 0.875rem; }

.enterprise-box {
  background: linear-gradient(135deg, var(--card) 0%, rgba(26,174,220,0.07) 100%);
  border: 1px solid rgba(26,174,220,0.2);
  border-radius: var(--radius-xl);
  padding: 64px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.enterprise-box::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26,174,220,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.enterprise-content { flex: 1; min-width: 280px; }
.enterprise-content h2 { font-size: clamp(1.75rem,3vw,2.5rem); margin-bottom: 12px; }
.enterprise-content p { max-width: 480px; font-size: 1.0625rem; }

/* ============================================================
   ABOUT PAGE STYLES
   ============================================================ */

.about-hero { padding: 110px 0 80px; }
.about-hero h1 { max-width: 800px; }
.about-hero p  { max-width: 540px; margin-top: 20px; font-size: 1.125rem; }

.team-grid { display: flex; flex-direction: column; gap: 48px; }
.team-member {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  padding: 48px;
}
.team-avatar-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.team-avatar {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  position: relative;
  overflow: hidden;
}
.team-avatar.gs { background: linear-gradient(135deg, rgba(26,174,220,0.25), rgba(26,174,220,0.08)); color: var(--accent); border: 1px solid rgba(26,174,220,0.25); }
.team-avatar.af { background: linear-gradient(135deg, rgba(167,139,250,0.25), rgba(167,139,250,0.08)); color: var(--purple); border: 1px solid rgba(167,139,250,0.25); }
.team-avatar.sr { background: linear-gradient(135deg, rgba(93,202,165,0.25), rgba(93,202,165,0.08)); color: var(--green); border: 1px solid rgba(93,202,165,0.25); }

.team-nationality {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-dim);
  padding: 5px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.team-role-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.team-name { font-size: 1.875rem; font-weight: 800; margin-bottom: 4px; }
.team-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 24px 0;
}
.team-bio { font-size: 0.9375rem; line-height: 1.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .plans-grid       { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .enterprise-box   { padding: 48px; }
}

@media (max-width: 900px) {
  .who-cards        { grid-template-columns: 1fr; }
  .ai-strip         { grid-template-columns: 1fr 1fr; }
  .steps-grid       { grid-template-columns: 1fr 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .team-member      { grid-template-columns: 1fr; }
  .team-avatar-block{ flex-direction: row; align-items: center; }
  .team-avatar      { width: 100px; height: 100px; font-size: 2rem; border-radius: 14px; }
  .cta-section      { padding: 60px 36px; }
  .addons-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section           { padding: 72px 0; }
  h1                { letter-spacing: -0.02em; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    z-index: 200;
  }
  .nav-links.open   { display: flex; }
  .nav-links li     { padding: 0; }
  .nav-links a      { display: block; padding: 14px 28px; }
  .hamburger        { display: flex; }
  .nav-cta          { display: none; }
  .stats-bar        { gap: 24px; }
  .stat             { min-width: 120px; padding-right: 0; border-right: none !important; margin-right: 0 !important; }
  .steps-grid       { grid-template-columns: 1fr; }
  .ai-strip         { grid-template-columns: 1fr 1fr; }
  .service-table td { padding: 16px 14px; }
  .service-table td:nth-child(2) { display: none; }
  .compare-table th:nth-child(3),
  .compare-table td:nth-child(3) { display: none; }
  .enterprise-box   { padding: 40px 28px; }
  .hero-btns        { flex-direction: column; width: fit-content; }
}

@media (max-width: 500px) {
  .container        { padding: 0 20px; }
  .nav-inner        { padding: 0 20px; }
  .ai-strip         { grid-template-columns: 1fr; }
  .cta-section      { padding: 48px 24px; }
}

/* ── Quote Builder ─────────────────────────────────────────── */
.quote-builder {
  max-width: 760px;
  margin: 0 auto;
  background: #222220;
  border-radius: 20px;
  padding: 48px;
}
.qb-progress-wrap {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-bottom: 10px;
}
.qb-progress-bar {
  height: 3px;
  background: #1AAEDC;
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.4,0,0.2,1);
  width: 0%;
}
.qb-step-indicator {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
}
.qb-question {
  font-size: clamp(1.25rem,2.5vw,1.625rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.25;
}
.qb-hint {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.qb-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}
.qb-options.qb-multi .qb-option { text-align: left; }
.qb-option {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.75);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-align: left;
  line-height: 1.4;
}
.qb-option:hover {
  border-color: #1AAEDC;
  color: #FFFFFF;
  background: rgba(26,174,220,0.08);
}
.qb-option.selected {
  border-color: #1AAEDC;
  background: rgba(26,174,220,0.14);
  color: #1AAEDC;
}
.qb-next-btn {
  background: #1AAEDC;
  color: #0a0a08;
  border: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.qb-next-btn:hover { opacity: 0.87; transform: translateY(-1px); }
.qb-step { display: none; }
.qb-step.active { display: block; animation: qbIn 0.32s ease; }
@keyframes qbIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.qb-result { display: none; animation: qbIn 0.35s ease; }
.qb-result.visible { display: block; }
.qb-result-card {
  border: 1.5px solid #1AAEDC;
  border-radius: 16px;
  padding: 36px;
  background: rgba(26,174,220,0.06);
  margin-bottom: 28px;
}
.qb-result-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1AAEDC;
  margin-bottom: 14px;
}
.qb-result-name {
  font-size: clamp(1.75rem,3.5vw,2.5rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}
.qb-result-price {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.qb-result-note {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 20px;
}
.qb-restart {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
  font-family: inherit;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  transition: color 0.2s;
}
.qb-restart:hover { color: rgba(255,255,255,0.7); }
.svc-quote-link {
  color: var(--accent);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.svc-quote-link:hover { opacity: 0.75; }
.addon-price .svc-quote-link { font-size: 0.875rem; }

@media (max-width: 768px) {
  .quote-builder { padding: 32px 24px; }
  .qb-options { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .qb-options { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM ANIMATION & MOTION SYSTEM — Phase 2
═══════════════════════════════════════════════════════════════ */

/* ── Hero Gradient Animation ─── */
@keyframes heroBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ── Parallax Orbs (injected via JS) ─── */
.hero-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  will-change: transform;
}
.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(26,174,220,0.09) 0%, transparent 68%);
  top: -200px;
  right: -180px;
  filter: blur(1px);
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93,202,165,0.06) 0%, transparent 68%);
  bottom: -80px;
  left: -100px;
  filter: blur(1px);
}

/* ── Hero Eyebrow Entrance + Pulse ─── */
.hero-eyebrow {
  animation: eyebrowIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both,
             eyebrowPulse 3s ease-in-out 0.9s infinite;
}
@keyframes eyebrowIn {
  from { opacity: 0; transform: translateY(10px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes eyebrowPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.8; }
}

/* ── Hero Entry Animations ─── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero .hero-sub  { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both; }
.hero .hero-btns { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.8s both; }
.hero .stats-bar { animation: heroFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 1.0s both; }

/* ── Hero Accent Glow ─── */
.hero h1 .accent {
  filter: drop-shadow(0 0 20px rgba(26,174,220,0.2));
}

/* ── Hero Ring ─── */
.hero-ring {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(26,174,220,0.04);
  border-radius: 50%;
  animation: ringRotate 60s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Word-by-Word Headline Reveal ─── */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  animation: wordReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--delay, 0s);
}
@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Service Table — Left Border Sweep on Hover ─── */
.service-table td:first-child { position: relative; }
.service-table td:first-child::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(180deg, var(--accent), var(--green));
  border-radius: 0 2px 2px 0;
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.service-table tr:hover td:first-child::before { width: 3px; }
.service-table tr:hover { background: rgba(26,174,220,0.025) !important; }

/* ── Nav — Enhanced Blur ─── */
nav {
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
nav.scrolled {
  background: rgba(18,18,16,0.92);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* ── Stat Value Counter ─── */
.stat-num { font-variant-numeric: tabular-nums; }

/* ── Trusted Pill hover upgrade ─── */
.trusted-pill {
  cursor: default;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease),
              color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.trusted-pill:hover {
  box-shadow: 0 4px 16px rgba(26,174,220,0.12);
}

/* ── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .hero                 { animation: none !important; }
  .hero-eyebrow         { animation: none !important; opacity: 1; }
  .hero-ring            { display: none; }
  .word-reveal          { animation: none !important; opacity: 1; transform: none !important; }
  .hero .hero-sub,
  .hero .hero-btns,
  .hero .stats-bar      { animation: none !important; opacity: 1; transform: none !important; }
  .hero-orb             { display: none; }
  .service-table td:first-child::before { transition: none; }
  .card, .ai-chip, .btn { transition: none; }
  @keyframes wordReveal { to { opacity: 1; transform: none; } }
}

/* ── Portfolio Grid ─────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: default;
}
.portfolio-image {
  height: 200px;
  background: #2A2A28;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.portfolio-image span {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.portfolio-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.portfolio-client {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.portfolio-service {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}
.portfolio-result {
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.45;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.portfolio-result::before {
  content: '↑ ';
  opacity: 0.7;
}

/* Portfolio card hover — image area gets a subtle cyan tint */
.portfolio-card:hover .portfolio-image {
  background: #2e3230;
  transition: background 0.35s var(--ease);
}

@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ── Team Photos ─────────────────────────────────────────────── */
.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(26,174,220,0.45);
  box-shadow: 0 0 0 4px rgba(26,174,220,0.08), 0 4px 24px rgba(0,0,0,0.3);
  display: block;
}

/* ── Results Ticker ─────────────────────────────────────────── */
.ticker-wrap {
  background: #1A1A18;
  border-top: 1px solid #2A2A28;
  border-bottom: 1px solid #2A2A28;
  overflow: hidden;
  padding: 0;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: tickerScroll 45s linear infinite;
  width: max-content;
}
.ticker-wrap:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-block;
  padding: 14px 28px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.2s;
}
.ticker-wrap:hover .ticker-item { color: var(--text); }
.ticker-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
  vertical-align: middle;
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}

/* ── Portfolio Image Cards ──────────────────────────────────── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pf-card {
  position: relative;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 22px;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pf-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(26,174,220,0.22), 0 4px 24px rgba(0,0,0,0.45);
}
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.82) 100%);
  transition: background 0.4s var(--ease);
  pointer-events: none;
  border-radius: 12px;
}
.pf-card:hover .pf-overlay {
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.70) 100%);
}
.pf-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1AAEDC;
  background: rgba(26,174,220,0.18);
  border: 1px solid rgba(26,174,220,0.5);
  border-radius: 100px;
  padding: 5px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pf-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
}
.pf-name {
  font-size: 1.1875rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 5px;
}
.pf-result {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1AAEDC;
  line-height: 1.5;
}
.pf-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}
.pf-card:hover .pf-link { color: #fff; }

@media (max-width: 900px) {
  .pf-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pf-grid { grid-template-columns: 1fr; }
  .pf-card { height: 300px; }
}

/* ── Case Study Pages ───────────────────────────────────────── */
.cs-hero-wrap {
  position: relative;
  background: var(--bg);
  line-height: 0;
}
.cs-hero-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── Case Study CTA Section ─── */
.cs-cta-divider {
  height: 1px;
  background: #2A2A28;
}
.cs-cta-section {
  background: #1A1A18;
  padding: 60px 0;
}
.cs-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cs-cta-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}
.cs-cta-body {
  font-size: 0.875rem;
  color: #7A7A78;
  line-height: 1.75;
  max-width: 440px;
}
.cs-cta-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cs-intro { padding: 80px 0 64px; }
.cs-industry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.cs-industry::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--accent); border-radius: 2px; }
.cs-intro h1 { max-width: 820px; margin-bottom: 16px; }
.cs-headline {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-muted);
  max-width: 640px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.cs-stats-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 80px;
}
.cs-stat { display: flex; flex-direction: column; gap: 4px; }
.cs-stat-val {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.cs-stat-lbl { font-size: 0.8125rem; color: var(--text-dim); }
.cs-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.cs-col { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset; }
.cs-col-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.cs-col h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 12px; }
.cs-col p { font-size: 0.9375rem; line-height: 1.75; }
.cs-quote-section { background: var(--card-deep); padding: 80px 0; }
.cs-quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.cs-quote blockquote {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.cs-quote cite {
  font-size: 0.9375rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 600;
}
.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s;
  margin-bottom: 40px;
}
.cs-back:hover { color: var(--accent); }

@media (max-width: 900px) {
  .cs-cols { grid-template-columns: 1fr; }
  .cs-stats-row { gap: 28px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE STYLES
═══════════════════════════════════════════════════════════════ */

/* ── All buttons: minimum tap target on mobile ─── */
@media (max-width: 768px) {
  .btn { min-height: 44px; }

  /* Hero sizing */
  .hero h1 { font-size: 2.75rem; }
  .hero-sub { font-size: 1rem; }

  /* Service table → stacked cards */
  .service-table,
  .service-table tbody,
  .service-table tr,
  .service-table td { display: block; }
  .service-table tr {
    background: var(--card);
    border-radius: var(--radius);
    margin-bottom: 10px;
    border: 1px solid var(--border) !important;
    padding: 18px 20px;
  }
  .service-table tr.featured { border-left: 3px solid var(--accent) !important; }
  .service-table td { padding: 0 !important; border: none; }
  .service-table td:nth-child(2) {
    display: block !important;
    margin-top: 10px;
    text-align: left;
  }
  .service-table .svc-price { text-align: left; white-space: normal; }

  /* Compare table → hide, show mobile advantages */
  .compare-table-wrap { display: none; }
  .compare-mobile { display: block !important; }

  /* Enterprise box → stack */
  .enterprise-box { flex-direction: column; align-items: flex-start; }

  /* Testimonials: already single-col at 900px but ensure */
  .testimonial-card { padding: 28px 24px; }

  /* WhatsApp float: smaller position */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  /* Case study CTA: stack vertically */
  .cs-cta-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
  .cs-cta-btns { width: 100%; }
}

/* ── Tablet (768px) hero headline ─── */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.75rem; }
}

/* ── Stats bar 2×2 grid on small mobile ─── */
@media (max-width: 600px) {
  .stats-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 24px 20px;
  }
  .stat {
    min-width: 0 !important;
    padding: 0 !important;
    border-right: none !important;
    margin-right: 0 !important;
  }

  /* Footer: stack and centre */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .footer-links { justify-content: center; }
}

/* ── Small mobile (≤480px) ─── */
@media (max-width: 480px) {
  .hero h1 { font-size: 2.25rem; }
  .hero-sub { font-size: 0.9375rem; }
  .hero { padding: 100px 0 80px; }
  .cta-section { padding: 40px 20px; }
  .pf-card { height: 260px; }
  .pf-name { font-size: 1rem; }
  .enterprise-box { padding: 32px 20px; }
  .cs-cols { gap: 16px; }
  .cs-stats-row { gap: 16px; flex-direction: column; }
  .cs-cta-section { padding: 40px 0; }
}

/* ── 375px micro fixes ─── */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 16px; }
  .cta-section h2 { font-size: 1.5rem; }
  .stat-value { font-size: 1.625rem; }
  .quote-builder { padding: 28px 16px; }
  .plans-grid { max-width: 100%; }
}

/* ── Compare table: desktop only ─── */
.compare-mobile { display: none; }
.compare-table-wrap { display: block; }
