/*
Theme Name: NPN Connect
Theme URI: https://npnconnect.com
Author: NPN Connect
Author URI: https://npnconnect.com
Description: Minimalist single-page theme for NPN Connect — telecom consulting for small-to-medium businesses.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: npn-connect
*/

/* ========================================
   VARIABLES
   ======================================== */
:root {
  --navy: #0f2b3c;
  --blue: #1a6fb5;
  --blue-light: #e9f1f8;
  --blue-soft: rgba(26, 111, 181, 0.07);
  --sand: #faf9f7;
  --warm: #f3f1ed;
  --card: #ffffff;
  --text: #3a3a3a;
  --text-light: #777777;
  --border: #ebe9e5;
  --purple: #7c4dc8;
  --teal: #14a08c;
  --amber: #d28232;
  --red: #c0392b;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 2px 8px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.07);
  --radius: 10px;
  --radius-sm: 6px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   LAYOUT
   ======================================== */
.wrap {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.text-center {
  text-align: center;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
  color: var(--navy);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 12px auto 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  padding: 14px 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* ========================================
   SCROLL REVEAL
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NAVIGATION
   ======================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 249, 247, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 28ox;
}

.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 140px;
}

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
}

.nav-logo span {
  color: var(--blue);
}

.nav-logo img {
  height: 300px;
  width: auto;
  display: block;
  padding: 30px 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--blue);
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--navy);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: 220px 0 100px;
  text-align: center;
  background: var(--card);
}

.hero-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
  margin: 0 auto 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.trust-bar p {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  width: 100%;
  margin-bottom: 4px;
}

.trust-bar span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  background: var(--sand);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: var(--blue);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.icon-blue { background: var(--blue-light); color: var(--blue); }
.icon-purple { background: #f1ebfa; color: var(--purple); }
.icon-teal { background: #e6f7f4; color: var(--teal); }
.icon-amber { background: #fdf3e7; color: var(--amber); }

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ========================================
   STEPS
   ======================================== */
.steps-section {
  background: var(--card);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* ========================================
   WHY US
   ======================================== */
.why-section {
  background: var(--sand);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  transition: all 0.3s ease;
}

.why-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.why-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.why-card h3 {
  margin-bottom: 6px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ========================================
   POSITIONING STRIP
   ======================================== */
.pos-strip {
  background: var(--card);
  padding: 48px 0;
  border-top: 3px solid var(--blue);
}

.pos-pills {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
}

.pill-yes {
  background: #e6f7f4;
  color: var(--teal);
}

.pill-no {
  background: #fde8e6;
  color: var(--red);
  text-decoration: line-through;
}

.pos-strip .tagline {
  font-size: 1rem;
  color: var(--text-light);
  text-align: center;
}

/* ========================================
   AUDIENCE
   ======================================== */
.audience-section {
  background: var(--sand);
}

.audience-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 36px 0;
}

.audience-tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 4px solid var(--blue);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
}

.pain-card:nth-child(2) { border-left-color: var(--purple); }
.pain-card:nth-child(3) { border-left-color: var(--amber); }
.pain-card:nth-child(4) { border-left-color: var(--teal); }

/* ========================================
   ABOUT
   ======================================== */
.about-section {
  background: var(--card);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.about-copy p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px;
}

.about-copy .btn {
  margin-top: 12px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.stat-box .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}

.stat-box .label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ========================================
   LEAD FORM
   ======================================== */
.lead-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lead-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 111, 181, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

.lead-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.lead-copy h2 {
  color: #fff;
  margin-bottom: 16px;
}

.lead-copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-bottom: 28px;
}

.lead-checks {
  list-style: none;
}

.lead-checks li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.lead-checks li::before {
  content: '\2713';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.lead-form-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.lead-form-box h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.lead-form-box .form-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.lead-form-box .wpcf7-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.lead-form-box .wpcf7-form input[type="text"],
.lead-form-box .wpcf7-form input[type="email"],
.lead-form-box .wpcf7-form input[type="tel"],
.lead-form-box .wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  transition: border 0.2s;
}

.lead-form-box .wpcf7-form input:focus,
.lead-form-box .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.lead-form-box .wpcf7-form input::placeholder,
.lead-form-box .wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.lead-form-box .form-row {
  margin-bottom: 16px;
}

.lead-form-box .form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lead-form-box .form-group {
  margin-bottom: 16px;
}

.lead-form-box .checkbox-group {
  margin-bottom: 16px;
}

.lead-form-box .checkbox-group > label {
  margin-bottom: 10px;
}

.lead-form-box .wpcf7-form .wpcf7-list-item {
  display: block;
  margin: 0 0 6px 0;
}

.lead-form-box .wpcf7-form .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.lead-form-box .wpcf7-form input[type="checkbox"] {
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
}

.lead-form-box .wpcf7-form input[type="file"] {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.lead-form-box .wpcf7-form input[type="file"]::file-selector-button {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  cursor: pointer;
  margin-right: 10px;
}

.lead-form-box .wpcf7-form textarea {
  resize: vertical;
  min-height: 80px;
}

.lead-form-box .btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s;
}

.lead-form-box .btn-submit:hover {
  background: #1580d0;
  transform: translateY(-2px);
}

.lead-form-box .form-fine {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 14px;
}

.lead-form-box .wpcf7-response-output {
  border-color: var(--teal) !important;
  color: #fff !important;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ========================================
   FLOATING CTA BAR
   ======================================== */
.float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.float-bar.show {
  transform: translateY(0);
}

.float-bar p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.float-bar .btn-primary {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--sand);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.site-footer .footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.site-footer .footer-brand span {
  color: var(--blue);
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin: 0 auto 12px;
  display: block;
}

.site-footer .footer-tagline {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.site-footer .footer-copy {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ========================================
   RESPONSIVE — TABLET (900px and below)
   ======================================== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lead-inner {
    grid-template-columns: 1fr;
  }
  .about-inner {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   RESPONSIVE — MOBILE (768px and below)
   ======================================== */
@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }

  .wrap {
    padding: 0 18px;
  }

  .burger {
    display: block;
  }

  .nav-inner {
    height: 100px;
  }

  .nav-logo img {
    height: 80px;
    padding: 8px 0;
  }

  .nav-links {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px 22px;
  }

  .hero {
    padding: 150px 0 56px;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 16px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-sub {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .trust-bar {
    gap: 16px;
    padding-top: 28px;
  }

  .trust-bar span {
    font-size: 0.72rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }

  .section-desc {
    font-size: 0.92rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .service-card {
    padding: 24px 20px;
  }

  .service-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .step-card {
    padding: 28px 22px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }

  .why-card {
    padding: 22px 18px;
  }

  .pos-strip {
    padding: 36px 0;
  }

  .pos-pills {
    gap: 8px;
  }

  .pill {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .pos-strip .tagline {
    font-size: 0.88rem;
    padding: 0 12px;
  }

  .audience-tags {
    gap: 8px;
    margin: 24px 0;
  }

  .audience-tag {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .pain-card {
    padding: 20px;
    font-size: 0.9rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-box {
    padding: 18px 14px;
  }

  .stat-box .num {
    font-size: 1.3rem;
  }

  .lead-section {
    padding: 56px 0;
  }

  .lead-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lead-copy h2 {
    font-size: 1.4rem;
  }

  .lead-form-box {
    padding: 24px 18px;
  }

  .lead-form-box .form-row-half {
    grid-template-columns: 1fr;
  }

  .lead-form-box .wpcf7-form input[type="text"],
  .lead-form-box .wpcf7-form input[type="email"],
  .lead-form-box .wpcf7-form input[type="tel"],
  .lead-form-box .wpcf7-form textarea {
    padding: 14px;
    font-size: 16px;
  }

  .lead-form-box .btn-submit {
    padding: 16px;
    font-size: 1rem;
  }

  .float-bar {
    padding: 10px 16px;
  }

  .float-bar p {
    display: none;
  }

  .float-bar .btn-primary {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }

  .site-footer {
    padding: 36px 0;
  }

  .footer-brand img {
    height: 70px;
  }

  .site-footer .footer-tagline {
    font-size: 0.82rem;
    padding: 0 12px;
  }

  .site-footer .footer-copy {
    font-size: 0.72rem;
  }
}

/* ========================================
   RESPONSIVE — SMALL PHONES (480px and below)
   ======================================== */
@media (max-width: 480px) {
  .hero {
    padding: 140px 0 48px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    gap: 12px;
  }

  .trust-bar span {
    font-size: 0.65rem;
  }

  .nav-logo img {
    height: 65px;
  }

  .lead-form-box {
    padding: 20px 14px;
  }

  .stat-box .num {
    font-size: 1.1rem;
  }

  .footer-brand img {
    height: 55px;
  }
}
