/* ============================================================
   New London Business Phone Systems — Main Stylesheet
   New London, CT Business Phone Systems
   ============================================================ */

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

:root {
  --navy: #0C2340;
  --navy-mid: #14325A;
  --teal: #0E7490;
  --teal-light: #22D3EE;
  --teal-pale: #ECFEFF;
  --anchor: #B45309;
  --anchor-light: #F59E0B;
  --white: #FFFFFF;
  --off-white: #F8FAFD;
  --gray: #64748B;
  --gray-light: #E2EBF4;
  --success: #059669;
  --font-head: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); background: var(--white); overflow-x: hidden; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(12,35,64,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(14,116,144,0.25);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 38px; height: 38px; background: var(--teal); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-text { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: white; line-height: 1; }
.logo-text small {
  display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 400;
  color: rgba(255,255,255,0.45); letter-spacing: 0.07em; text-transform: uppercase; margin-top: 1px;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: color .2s; }
.nav-links a:hover { color: white; }
.nav-phone {
  color: var(--teal-light); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
}
.nav-cta {
  background: var(--anchor); color: white; border: none; padding: 0.6rem 1.3rem;
  border-radius: 6px; font-size: 0.88rem; font-weight: 600; font-family: var(--font-body);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s; margin-left: 1rem;
}
.nav-cta:hover { background: var(--anchor-light); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh; background: var(--navy);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 0; padding: 7rem 5vw 4rem; position: relative; overflow: hidden;
}
.hero-waves {
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px; opacity: 0.07;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 20px,
    rgba(14,116,144,1) 20px, rgba(14,116,144,1) 22px
  );
}
.hero-glow {
  position: absolute; top: 10%; right: 5%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,116,144,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left { position: relative; z-index: 1; }
.location-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(14,116,144,0.15); border: 1px solid rgba(14,116,144,0.35);
  color: var(--teal-light); padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: 0.04em;
}
.location-pin { width: 14px; height: 14px; }
h1 {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: white; line-height: 1.08; margin-bottom: 1.25rem;
}
h1 .accent { color: var(--teal-light); }
h1 .underline-anchor { color: var(--anchor-light); }
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.6); line-height: 1.75;
  margin-bottom: 2rem; font-weight: 300; max-width: 520px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-main {
  background: var(--teal); color: white; padding: 0.9rem 1.9rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; border: none;
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-main:hover { background: #0C6B87; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: white; padding: 0.9rem 1.9rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2); font-family: var(--font-body); font-size: 0.98rem;
  font-weight: 400; cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); }
.btn-eval {
  display: inline-block; background: var(--anchor-light); color: var(--navy); padding: 1rem 2rem;
  border-radius: 10px; font-family: var(--font-body); font-size: 1.05rem; font-weight: 700;
  text-decoration: none; text-align: center; line-height: 1.3; cursor: pointer;
  transition: all .25s; box-shadow: 0 4px 16px rgba(245,158,11,0.35);
  animation: evalPulse 2.5s ease-in-out infinite;
}
.btn-eval:hover { background: #E8930A; transform: translateY(-3px); box-shadow: 0 6px 24px rgba(245,158,11,0.45); }
@keyframes evalPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(245,158,11,0.35); }
  50% { box-shadow: 0 4px 24px rgba(245,158,11,0.55); }
}
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: white; line-height: 1; }
.hero-stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 3px; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.12); align-self: center; }

/* HERO RIGHT — Yealink product showcase */
.hero-right { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.phone-showcase {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(14,116,144,0.2);
  border-radius: 20px; padding: 2rem; width: 100%; max-width: 460px; position: relative;
}
.phone-showcase-label {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-light); margin-bottom: 1rem; font-weight: 600;
}
.phone-showcase img {
  width: 100%; max-width: 360px; display: block; margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
  border-radius: 8px;
}
.phone-model-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(14,116,144,0.2); border: 1px solid rgba(14,116,144,0.4);
  color: var(--teal-light); padding: 5px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; margin-top: 1rem;
}
.hero-phone-pills { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.phone-pill {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55); padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; cursor: pointer; transition: all .2s;
}
.phone-pill:hover,
.phone-pill.active {
  background: rgba(14,116,144,0.25); border-color: rgba(14,116,144,0.6); color: var(--teal-light);
}

/* ─── LOCAL STRIP ─── */
.local-strip {
  background: #071929; padding: 1.5rem 5vw;
  border-top: 1px solid rgba(14,116,144,0.15);
  border-bottom: 1px solid rgba(14,116,144,0.15);
}
.local-strip-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.local-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: rgba(255,255,255,0.35); white-space: nowrap; }
.local-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.local-tag {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); padding: 5px 13px; border-radius: 6px; font-size: 0.78rem;
}
.local-tag.featured {
  background: rgba(14,116,144,0.15); border-color: rgba(14,116,144,0.35); color: rgba(34,211,238,0.85);
}

/* ─── SECTIONS ─── */
section { padding: 5rem 5vw; }
.section-tag { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); font-weight: 700; margin-bottom: 0.75rem; }
h2 { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--navy); line-height: 1.12; margin-bottom: 1rem; }
h2 em { font-style: normal; color: var(--teal); }
.section-sub { font-size: 1.02rem; color: var(--gray); line-height: 1.75; max-width: 580px; margin-bottom: 3rem; font-weight: 300; }

/* ─── YEALINK PHONES SECTION ─── */
.phones-bg { background: var(--off-white); }
.phones-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 4rem; }
.phones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.phone-card {
  background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 14px;
  overflow: hidden; transition: all .25s;
}
.phone-card:hover {
  border-color: var(--teal); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(14,116,144,0.12);
}
.phone-card-img {
  background: #F0F7FA; padding: 2rem 1.5rem;
  display: flex; align-items: center; justify-content: center; height: 200px;
}
.phone-card-img img {
  max-height: 140px; max-width: 200px; object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.15));
}
.phone-card-body { padding: 1.25rem; border-top: 1px solid var(--gray-light); }
.phone-card-model { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 0.2rem; }
.phone-card-name { font-size: 0.78rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.phone-card-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.55; margin-bottom: 0.9rem; }
.phone-specs { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.spec-pill { background: var(--teal-pale); color: var(--teal); font-size: 0.7rem; font-weight: 600; padding: 3px 9px; border-radius: 100px; }
.yealink-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white; padding: 8px 16px;
  border-radius: 8px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem;
}

/* ─── LOCAL INDUSTRIES ─── */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.industry-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: 12px;
  padding: 1.5rem; transition: all .2s;
}
.industry-card:hover { border-color: var(--teal); box-shadow: 0 6px 24px rgba(14,116,144,0.09); }
.industry-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.industry-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.industry-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }
.industry-highlight { font-size: 0.75rem; color: var(--teal); font-weight: 600; margin-top: 0.5rem; }

/* ─── COMPARISON TABLE ─── */
.compare-bg { background: var(--navy); }
.compare-bg h2 { color: white; }
.compare-bg h2 em { color: var(--teal-light); }
.compare-bg .section-sub { color: rgba(255,255,255,0.5); }
.compare-bg .section-tag { color: var(--teal-light); }
.ctable { width: 100%; border-collapse: collapse; }
.ctable th { font-family: var(--font-body); font-size: 0.82rem; font-weight: 600; padding: 1rem 1.25rem; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ctable th.c-muted { color: rgba(255,255,255,0.3); }
.ctable th.c-us { color: var(--teal-light); }
.ctable td { padding: 0.85rem 1.25rem; font-size: 0.88rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ctable tr:last-child td { border: none; }
.ctable td:first-child { color: rgba(255,255,255,0.55); }
.td-bad { color: rgba(239,68,68,0.8); }
.td-ok { color: rgba(245,158,11,0.85); }
.td-good { color: #34D399; font-weight: 500; }
.td-best { color: var(--teal-light); font-weight: 700; }


/* ─── PRICING ─── */
.pricing-bg { background: var(--off-white); }
.p-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.p-card {
  background: var(--white); border: 1.5px solid var(--gray-light); border-radius: 14px;
  padding: 2rem; position: relative; transition: all .25s;
}
.p-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.p-card.featured { border-color: var(--teal); border-width: 2px; box-shadow: 0 4px 20px rgba(14,116,144,0.15); }
.pop-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: 0.7rem; font-weight: 700;
  padding: 3px 14px; border-radius: 100px; white-space: nowrap; font-family: var(--font-head);
}
.p-name { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); font-weight: 600; margin-bottom: 0.25rem; }
.p-users { font-size: 0.82rem; color: var(--navy); font-weight: 600; margin-bottom: 0.5rem; }
.p-price { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; }
.p-price span { font-size: 0.95rem; font-family: var(--font-body); font-weight: 400; color: var(--gray); }
.p-desc { font-size: 0.84rem; color: var(--gray); margin: 0.75rem 0 1.25rem; line-height: 1.5; }
.p-features { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.75rem; }
.p-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.85rem; color: var(--gray); }
.p-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.btn-p { width: 100%; padding: 0.8rem; border-radius: 8px; font-family: var(--font-body); font-size: 0.93rem; font-weight: 600; cursor: pointer; text-align: center; display: block; text-decoration: none; transition: all .2s; }
.btn-p-outline { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-p-outline:hover { background: var(--navy); color: white; }
.btn-p-fill { background: var(--teal); border: none; color: white; }
.btn-p-fill:hover { background: #0C6B87; }

/* ─── LEAD FORM ─── */
.form-bg { background: linear-gradient(150deg, var(--navy) 0%, #0A2A50 100%); padding: 6rem 5vw; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-bg h2 { color: white; }
.form-bg h2 em { color: var(--teal-light); }
.form-bg .section-sub { color: rgba(255,255,255,0.55); }
.form-perks { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.form-perk { display: flex; align-items: flex-start; gap: 10px; }
.perk-dot {
  width: 20px; height: 20px; border-radius: 50%; background: rgba(5,150,105,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.perk-dot svg { width: 10px; height: 10px; stroke: #34D399; fill: none; stroke-width: 3; }
.form-perk span { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.lead-form { background: white; border-radius: 16px; padding: 2.5rem; }
.lf-title { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: 0.3rem; }
.lf-sub { font-size: 0.85rem; color: var(--gray); margin-bottom: 1.75rem; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-group { margin-bottom: 1.1rem; }
.f-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--navy); margin-bottom: 0.35rem; }
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%; padding: 0.7rem 0.9rem; border: 1.5px solid #D1DDE8;
  border-radius: 8px; font-family: var(--font-body); font-size: 0.9rem; color: var(--navy);
  background: white; outline: none; transition: border .2s;
}
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-color: var(--teal); }
.f-group textarea { resize: vertical; min-height: 85px; }
.submit-btn {
  width: 100%; padding: 1rem; background: var(--anchor); color: white; border: none;
  border-radius: 8px; font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: background .2s; margin-top: 0.5rem;
}
.submit-btn:hover { background: var(--anchor-light); }
.f-disclaimer { font-size: 0.73rem; color: var(--gray); text-align: center; margin-top: 0.75rem; line-height: 1.5; }
#formSuccess { display: none; text-align: center; padding: 2rem 1rem; }
#formSuccess h3 { font-family: var(--font-head); color: var(--navy); font-size: 1.3rem; margin-bottom: 0.5rem; }
#formSuccess p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; }
.success-icon {
  width: 60px; height: 60px; background: rgba(5,150,105,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
}

/* ─── STATS BAR ─── */
.stats-bar { background: var(--teal); padding: 3.5rem 5vw; }
.s-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; }
.s-item { text-align: center; }
.s-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 900; color: white; }
.s-label { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin-top: 4px; }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 3rem 5vw 2rem; border-top: 1px solid rgba(255,255,255,0.08); }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.f-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.38); margin-top: 0.75rem; line-height: 1.65; max-width: 280px; }
.f-col h5 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 1rem; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.f-col a { font-size: 0.85rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color .2s; }
.f-col a:hover { color: rgba(255,255,255,0.85); }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.f-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.f-legal { display: flex; gap: 1.5rem; }
.f-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.28); text-decoration: none; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left > * { animation: fadeUp 0.55s ease both; }
.hero-left > *:nth-child(1) { animation-delay: .1s; }
.hero-left > *:nth-child(2) { animation-delay: .2s; }
.hero-left > *:nth-child(3) { animation-delay: .3s; }
.hero-left > *:nth-child(4) { animation-delay: .4s; }
.hero-left > *:nth-child(5) { animation-delay: .5s; }
.hero-right { animation: fadeUp 0.65s ease .35s both; }

/* ─── HAMBURGER MENU ─── */
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px; z-index: 101;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: white;
  border-radius: 2px; transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: rgba(12,35,64,0.98);
    backdrop-filter: blur(10px); padding: 1rem 5vw;
    border-bottom: 1px solid rgba(14,116,144,0.25);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block; padding: 0.75rem 0; font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-phone { display: none; }
  .nav-cta { padding: 0.5rem 1rem; font-size: 0.82rem; margin-left: 0; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 6rem 5vw 3rem; min-height: auto; gap: 2.5rem; }
  h1 { font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .stat-div { display: none; }
  .phone-showcase { padding: 1.5rem; }
  .phone-showcase img { max-width: 280px; }

  /* Sections */
  .phones-intro { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-bg { padding: 4rem 5vw; }
  .f-grid { grid-template-columns: 1fr 1fr; }

  /* Comparison table */
  .ctable th, .ctable td { padding: 0.65rem 0.75rem; font-size: 0.78rem; white-space: nowrap; }
  .ctable td:first-child { white-space: normal; min-width: 120px; }

  /* Pricing */
  .p-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* Stats bar */
  .s-grid { grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1.5rem; }
  .s-num { font-size: 1.8rem; }
}

@media (max-width: 480px) {
  /* Nav */
  nav { padding: 0.75rem 4vw; }
  .logo-text { font-size: 1rem; }
  .logo-text small { font-size: 0.55rem; }
  .nav-cta { padding: 0.45rem 0.85rem; font-size: 0.78rem; }

  /* Hero */
  .hero { padding: 5.5rem 4vw 2.5rem; }
  h1 { font-size: 1.65rem; }
  .hero-sub { font-size: 0.88rem; }
  .hero-actions { flex-direction: column; }
  .btn-main, .btn-ghost { width: 100%; text-align: center; }
  .hero-stats { flex-direction: column; gap: 1rem; text-align: center; }
  .phone-showcase img { max-width: 220px; }

  /* Sections */
  section { padding: 3rem 4vw; }
  h2 { font-size: 1.55rem; }
  .section-sub { font-size: 0.9rem; }
  .f-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .lead-form { padding: 1.5rem; }
  .form-bg { padding: 3rem 4vw; }

  /* Stats bar */
  .stats-bar { padding: 2.5rem 4vw; }
  .s-grid { grid-template-columns: 1fr 1fr; }
  .s-num { font-size: 1.6rem; }

  /* Footer */
  footer { padding: 2rem 4vw 1.5rem; }
  .f-bottom { flex-direction: column; text-align: center; }
}
