/* ============================================
   Solarize - Main Stylesheet
   Colors matched to Solarize logo:
   Sky Blue + Yellow
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Logo colors — deepened */
  --blue: #2196B8;
  --blue-dark: #1A7A96;
  --blue-deep: #146075;
  --yellow: #C9B520;
  --yellow-dark: #A89818;

  /* Primary = deep sky blue */
  --primary: #2196B8;
  --primary-dark: #1A7A96;

  /* Accent = deep gold/yellow */
  --accent: #C9B520;
  --accent-dark: #A89818;

  /* Neutrals */
  --dark: #1B2A3D;
  --dark-blue: #1E3448;
  --navy: #163050;
  --white: #ffffff;
  --light-gray: #f4f7f9;
  --gray: #6c757d;
  --text: #2d3748;
  --text-light: #5a6577;
  --green: #27ae60;

  /* Effects */
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(33, 150, 184, 0.4);
}

.btn-accent {
  background: var(--accent);
  color: var(--dark);
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 181, 32, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

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

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

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ============================================
   Ticker Bar
   ============================================ */
.ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll var(--ticker-duration, 30s) linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  padding: 0 3rem;
}

.ticker-item a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.ticker-item a:hover {
  color: var(--white);
}

.ticker-separator {
  padding: 0;
  color: var(--accent);
}

@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  position: fixed;
  top: 36px;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}


.nav a {
  padding: 8px 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}

.nav a:hover {
  color: var(--primary);
  background: rgba(33, 150, 184, 0.08);
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.header-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  gap: 0;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}

.mobile-toggle span:nth-child(1) {
  transform: translateY(-4px);
}

.mobile-toggle span:nth-child(2) {
  transform: scaleX(1);
}

.mobile-toggle span:nth-child(3) {
  transform: translateY(4px);
}

/* Active state — X animation */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(0.5px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('../images/banner-img.jpg') center/cover no-repeat;
  overflow: hidden;
  padding-top: 116px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 1;
}

.hero-centered .hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-centered .hero-content p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-stars svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.hero-review-text {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 40px;
}

.hero-stat {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, rgba(33, 150, 184, 0.7) 0%, rgba(20, 96, 117, 0.7) 100%);
  backdrop-filter: blur(4px);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 4px;
  opacity: 0.9;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0;
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: var(--accent);
}

.hero p {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 32px;
  max-width: 550px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}


/* ============================================
   Section Header (shared)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  margin-bottom: 12px;
}

.section-header h2 span {
  color: var(--primary);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ============================================
   Certifications Bar
   ============================================ */
.certifications {
  padding: 40px 0;
  background: var(--white);
}

.certifications-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.certifications-row img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
}

.certifications-row img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
  padding: 80px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.about-text h2 {
  font-size: 1.6rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   Stats Section (What Makes Us Better)
   ============================================ */
.stats-section {
  padding: 70px 0;
  background: var(--white);
}

.stats-heading {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background: var(--light);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-height: 190px;
}

.stat-card svg {
  width: 46px;
  height: 46px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 12px;
}

.stat-card .stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-card .stat-label {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-light);
  margin-top: 4px;
}

/* ============================================
   Google Stars
   ============================================ */
.google-stars-section {
  padding: 50px 0;
  background: var(--white);
}

.google-stars-inner {
  text-align: center;
}

.google-stars-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.google-stars-row svg {
  width: 40px;
  height: 40px;
  fill: #f5c518;
}

.google-stars-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
}

/* ============================================
   Services Grid
   ============================================ */
.services-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  display: block;
  background: var(--white);
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: var(--dark);
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.service-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ============================================
   Financing Plans
   ============================================ */
.financing {
  padding: 80px 0;
  background: var(--white);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border: 2px solid #e0e6ed;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan-card.featured {
  border-color: var(--primary);
  position: relative;
  box-shadow: var(--shadow-lg);
}

.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.plan-card h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.plan-card .plan-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 24px;
  min-height: 48px;
}

.plan-features {
  text-align: left;
  margin-bottom: 30px;
  flex-grow: 1;
}

.plan-features li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.plan-features li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-divider {
  height: 1px;
  background: #e0e6ed;
  margin: 16px 0;
}

.plan-detail {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
}

.plan-detail strong {
  color: var(--text);
}

.plan-card .btn {
  margin-top: auto;
  width: 100%;
}

/* ============================================
   Tier Levels
   ============================================ */
.tier-levels {
  padding: 80px 0;
  background: var(--white);
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.tier-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.tier-header {
  background: linear-gradient(135deg, #1a3a4a 0%, #2196B8 100%);
  padding: 32px 24px 28px;
  text-align: center;
  color: var(--white);
}

.tier-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.tier-price {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 8px 0 4px;
  color: var(--white);
}

.tier-price sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: super;
  margin-right: 2px;
}

.tier-period {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  display: block;
  margin-bottom: 12px;
}

.tier-system {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.tier-body {
  padding: 28px 24px 32px;
  background: var(--white);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.tier-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--text);
  border-bottom: 1px solid #eee;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-savings {
  background: #f0f7e8;
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.tier-savings strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #2e7d32;
  margin-bottom: 4px;
}

.tier-savings span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.tier-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.tier-terms-link {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: underline;
}

.tier-terms-link:hover {
  color: var(--primary);
}

.tier-footnote {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   Shield / Protection Plan Intro
   ============================================ */
.shield-intro {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

.shield-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1a3a4a 0%, #2196B8 100%);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(33, 150, 184, 0.25);
}

.shield-badge img {
  height: 56px;
  width: auto;
}

.shield-intro h2 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.shield-intro .shield-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.shield-intro .shield-description {
  font-size: 1.05rem;
  color: var(--text);
  max-width: 750px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.shield-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.shield-benefit {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.shield-benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  color: var(--primary);
}

.shield-benefit-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shield-benefit h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.shield-benefit p {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.6;
}

/* ============================================
   Testimonials / Reviews
   ============================================ */
.testimonials {
  padding: 80px 0;
  background: var(--light-gray);
}

.testimonials .section-header h2 {
  color: var(--dark);
}

.testimonials .section-header p {
  color: var(--text-light);
}

/* ============================================
   Steps / Process
   ============================================ */
.steps {
  padding: 80px 0;
  background: var(--white);
}

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-step {
  text-align: center;
  flex: 1;
  max-width: 260px;
}

.timeline-marker {
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: 0 4px 15px rgba(33, 150, 184, 0.3);
}

.timeline-connector {
  height: 3px;
  flex: 0 1 80px;
  background: var(--primary);
  opacity: 0.35;
  margin-top: 27px;
  border-radius: 2px;
}

.timeline-step h3 {
  margin-bottom: 8px;
  color: var(--dark);
}

.timeline-step p {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--text);
}

/* ============================================
   Highlight Banner
   ============================================ */
.highlight-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, #1a3a4a 0%, #0d2a38 100%);
  text-align: center;
}

.highlight-banner .highlight-stat {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 12px;
}

.highlight-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.highlight-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   Specs Table
   ============================================ */
.specs-table {
  padding: 80px 0;
  background: var(--light-gray);
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  max-width: 920px;
  margin: 0 auto;
}

.specs-table th {
  background: var(--primary);
  color: var(--white);
  padding: 16px 24px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
}

.specs-table td {
  padding: 14px 24px;
  border-bottom: 1px solid #e0e6ed;
  font-size: 0.95rem;
  color: var(--text);
}

.specs-table tr:nth-child(even) td {
  background: var(--light-gray);
}

.specs-table td:first-child {
  font-weight: 600;
  color: var(--dark);
}

.specs-table-scroll {
  position: relative;
}

.comparison-cards-mobile {
  display: none;
}

.comparison-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #d7e2ea;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.comparison-card + .comparison-card {
  margin-top: 16px;
}

.comparison-card h3 {
  background: var(--primary);
  color: var(--white);
  padding: 14px 18px;
  font-size: 1rem;
}

.comparison-card table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-card td {
  padding: 12px 18px;
  border-bottom: 1px solid #e0e6ed;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.comparison-card tr:last-child td {
  border-bottom: none;
}

.comparison-card td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 42%;
}

.comparison-card td:last-child {
  color: var(--text);
  text-align: left;
}

/* ============================================
   Checklist Grid
   ============================================ */
.checklist-grid {
  padding: 80px 0;
}

.checklist-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 48px;
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.checklist-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}

.checklist-list li::before {
  content: '✓';
  color: #2e7d32;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--primary) 100%);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.cta-phone:hover {
  color: var(--accent);
}

.cta-final {
  background: var(--primary);
}

.cta-final .btn-white:hover {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(201, 181, 32, 0.4);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 300px;
}

.footer-brand .logo img {
  height: 45px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 0;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(33, 150, 184, 0.4);
}

.footer-social a:hover svg,
.footer-social a:hover img {
  color: var(--white);
}

.footer-social svg {
  width: 22px;
  height: 22px;
  color: var(--dark);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer-social i {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover img {
  filter: brightness(0) saturate(100%);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
  color: var(--accent);
}

.footer-credentials {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-credentials img {
  height: 56px;
}

.footer-credentials span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1rem;
}

/* ============================================
   Page Header (inner pages)
   ============================================ */
.page-header {
  padding: 176px 0 60px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}

/* ============================================
   Product Pages (FranklinWH, EV, SPAN)
   ============================================ */
.product-hero {
  padding: 176px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
}

.product-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.product-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

@media (max-width: 980px) {
  .product-hero-inner {
    gap: 40px;
  }

  .product-hero h1 {
    font-size: 2.4rem;
  }

  .product-hero p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .product-hero-inner img {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .product-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-hero {
    padding: 156px 0 56px;
  }

  .product-hero-inner > div {
    width: 100%;
    text-align: center;
  }

  .product-hero p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  .product-hero-inner img {
    max-width: 100%;
  }

  .product-hero-inner ul,
  .product-hero-inner ol,
  .detail-text ul,
  .detail-text ol {
    width: 100%;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .product-hero-inner li,
  .detail-text li {
    text-align: left;
  }
}

.product-details {
  padding: 80px 0;
  background: var(--light-gray);
}

.detail-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 60px;
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-row-reverse {
  flex-direction: row-reverse;
}

.detail-img {
  flex: 1;
  min-width: 0;
}

.detail-img img {
  width: 100%;
  border-radius: 12px;
}

.detail-text {
  flex: 1;
  min-width: 0;
}

.detail-text h2 {
  color: var(--dark);
  margin-bottom: 16px;
}

.detail-text p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

.detail-text p[style*="font-weight:600"],
.detail-text p[style*="font-weight: 600"] {
  margin-top: 12px !important;
}

@media (max-width: 980px) {
  .detail-row,
  .detail-row-reverse {
    gap: 36px;
  }

  .detail-text p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .detail-img img {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .detail-row,
  .detail-row-reverse {
    flex-direction: column;
    gap: 28px;
    padding: 24px;
  }

  .detail-text,
  .detail-img {
    width: 100%;
  }

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

  .detail-text p {
    text-align: left;
  }

  .detail-img img {
    max-width: 100%;
  }
}

.product-features {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.features-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stats-grid-compact {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background: var(--white);
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 16px;
  background: var(--light-gray);
}

.feature-card h3 {
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--white);
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 24px;
  transition: var(--transition);
}

.feature-row:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.feature-row-img {
  flex-shrink: 0;
}

.feature-row-img img {
  width: auto;
  max-width: 300px;
  max-height: 220px;
  border-radius: 8px;
  object-fit: contain;
}

.feature-row-text h3 {
  color: var(--dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-row-text h3 svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.feature-card h3 svg {
  width: 34px;
  height: 34px;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e0e6ed;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  border: none;
  padding: 20px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-question .faq-icon {
  font-size: 1.5rem;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-question .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h4 {
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-info-card p {
  font-size: 0.9rem;
}

.contact-map {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  box-shadow: var(--shadow);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================
   Get Started / Form Page
   ============================================ */
.get-started-section {
  padding: 80px 0;
}

#service-form,
.form-container {
  scroll-margin-top: 140px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid #e0e6ed;
  border-radius: 12px;
  padding: 50px 40px;
  box-shadow: var(--shadow);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-container > p {
  text-align: center;
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e6ed;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(33, 150, 184, 0.15);
}

.form-group .required {
  color: #e53e3e;
  font-weight: 700;
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 4px;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.15);
}

.form-group .error-message {
  display: block;
  font-size: 0.75rem;
  color: #e53e3e;
  margin-top: 4px;
}

.form-consent {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 20px 0;
  line-height: 1.5;
}

.form-container .btn {
  width: 100%;
}

/* ============================================
   Privacy Policy
   ============================================ */
.privacy-section {
  padding: 80px 0;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--dark);
}

.privacy-content p {
  margin-bottom: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
}

.cookie-banner__inner {
  max-width: 1040px;
  margin: 0 auto;
  background: rgba(12, 17, 24, 0.96);
  color: var(--white);
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cookie-banner__copy h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.cookie-banner__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 760px;
}

.cookie-banner__actions {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner__button {
  width: 100%;
  min-width: 220px;
  white-space: nowrap;
}

/* ============================================
   Responsive — Header compression (1180px)
   ============================================ */
@media (max-width: 1180px) {
  .header-inner {
    padding: 12px 16px;
  }

  .nav {
    gap: 2px;
  }

  .nav a {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .header-actions {
    gap: 10px;
  }

  .header-phone {
    font-size: 0.85rem;
  }

  .btn-sm {
    padding: 10px 20px;
  }
}

/* ============================================
   Responsive — Nav collapse (1120px)
   ============================================ */
@media (max-width: 1120px) {
  .nav {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow);
    gap: 0;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    z-index: 999;
    animation: navSlideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav.active {
    display: flex;
  }

  @keyframes navSlideDown {
    from {
      opacity: 0;
      transform: translateY(-12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav a {
    padding: 12px 16px;
    width: 100%;
    font-size: 0.95rem;
  }

  .mobile-toggle {
    display: flex;
  }

  .header-phone {
    display: none;
  }
}

/* ============================================
   Responsive — Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid-compact {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid,
  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .contact-grid {
    gap: 40px;
  }

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

  .hero .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* ============================================
   Responsive — Mobile (768px)
   ============================================ */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.25rem; }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__inner {
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
    flex-direction: column;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 10px 16px;
  }

  .logo img {
    height: 40px;
  }

  /* Hero */
  .hero::after {
    display: none;
  }

  .ticker-bar {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .header {
    top: 32px;
  }

  .nav {
    top: 96px;
    max-height: calc(100vh - 96px);
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
  }

  .hero-content {
    padding: 40px 0 60px;
  }

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

  .hero p {
    font-size: 1rem;
  }

  .hero-rating {
    flex-direction: column;
    gap: 6px;
  }

  .hero-stars svg {
    width: 20px;
    height: 20px;
  }

  .hero-review-text {
    font-size: 0.9rem;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat {
    width: 110px;
    height: 110px;
  }

  .hero-stat-number {
    font-size: 1.25rem;
  }

  .hero-stat-label {
    font-size: 0.65rem;
  }

  /* Grids go single column */
  .about-grid,
  .stats-grid,
  .features-grid-4,
  .features-grid-3,
  .services-grid,
  .plans-grid,
  .tiers-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    padding: 40px 0;
  }

  .stats-heading {
    font-size: 1.9rem;
    margin-bottom: 28px;
  }

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

  .stats-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .stat-card {
    min-height: auto;
    padding: 24px 22px;
    align-items: center;
    text-align: center;
  }

  .stat-card svg {
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
  }

  .stat-card .stat-number {
    font-size: 2.15rem;
  }

  .stat-card .stat-label {
    font-size: 0.98rem;
  }

  .about-grid {
    gap: 40px;
  }

  .about-section {
    padding: 50px 0;
  }

  .certifications-row {
    gap: 24px;
  }

  .certifications-row img {
    height: 30px;
  }

  .timeline {
    flex-direction: column;
    align-items: center;
  }

  .timeline-connector {
    width: 3px;
    height: 32px;
    flex: none;
    margin-top: 0;
  }

  .product-hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .detail-row,
  .detail-row-reverse {
    flex-direction: column;
    gap: 30px;
  }

  .product-details {
    padding: 50px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .feature-row {
    flex-direction: column;
    text-align: center;
  }

  .feature-row-img img {
    max-width: 100%;
  }

  /* Sections reduced padding */
  .services-section,
  .financing,
  .steps,
  .testimonials,
  .faq-section,
  .contact-section,
  .get-started-section,
  .privacy-section,
  .product-features {
    padding: 50px 0;
  }

  #service-form,
  .form-container {
    scroll-margin-top: 120px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header p {
    text-align: left;
  }

  .product-details > .container > p[style*="text-align:center"],
  .product-features > .container > p[style*="text-align:center"] {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .detail-text p[style*="text-align:center"],
  .detail-text p[style*="margin:0 auto"],
  .detail-text p[style*="margin: 0 auto"] {
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .detail-text p[style*="font-weight:600"],
  .detail-text p[style*="font-weight: 600"] {
    text-align: left !important;
  }

  .cta-section {
    padding: 50px 0;
  }

  /* Page header */
  .page-header {
    padding: 142px 0 40px;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .product-hero {
    padding: 142px 0 50px;
  }

  .product-hero h1 {
    font-size: 2rem;
  }

  /* Cards */
  .partner-card {
    padding: 24px 16px;
  }

  .partner-logo span {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 24px;
  }

  .feature-card h3 svg {
    width: 32px;
    height: 32px;
  }

  .job-card {
    padding: 24px;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 20px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 0;
  }

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

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 16px;
    justify-items: center;
  }

  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .footer-credentials {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-brand .logo img {
    margin: 0 auto;
  }

  .footer-brand p {
    margin: 16px auto 0;
  }

  /* Contact map */
  .contact-map {
    min-height: 300px;
  }

  /* Shield intro */
  .shield-intro {
    padding: 50px 0;
  }

  .shield-benefits {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  /* Highlight banner */
  .highlight-banner {
    padding: 40px 0;
  }

  .highlight-banner .highlight-stat {
    font-size: 3rem;
  }

  /* Specs table */
  .specs-table {
    padding: 50px 0;
  }

  .specs-table .container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .specs-table table {
    display: table;
    min-width: 680px;
  }

  .specs-table thead {
    display: table-header-group;
  }

  .specs-table tbody {
    display: table-row-group;
  }

  .specs-table tr {
    display: table-row;
  }

  .specs-table th,
  .specs-table td {
    display: table-cell;
    white-space: nowrap;
  }

  .specs-table th {
    padding: 14px 18px;
    font-size: 0.9rem;
  }

  .specs-table td {
    padding: 12px 18px;
    font-size: 0.92rem;
  }

  .specs-table td::before {
    content: none;
  }

  .specs-table-stacked-mobile .container {
    overflow-x: visible;
  }

  .specs-table-stacked-mobile table,
  .specs-table-stacked-mobile thead,
  .specs-table-stacked-mobile tbody,
  .specs-table-stacked-mobile tr,
  .specs-table-stacked-mobile th,
  .specs-table-stacked-mobile td {
    display: block;
  }

  .specs-table-stacked-mobile table {
    min-width: 0;
    background: transparent;
    box-shadow: none;
  }

  .specs-table-stacked-mobile thead {
    display: none;
  }

  .specs-table-stacked-mobile tr {
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  }

  .specs-table-stacked-mobile td {
    padding: 10px 16px;
    text-align: right;
    white-space: normal;
    background: var(--white);
  }

  .specs-table-stacked-mobile td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--dark);
  }

  .specs-table-stacked-mobile td:first-child {
    background: var(--primary);
    color: var(--white);
    text-align: left;
    font-weight: 600;
  }

  .specs-table-stacked-mobile td:first-child::before {
    content: none;
  }

  .specs-table-stacked-mobile tr:nth-child(even) td:not(:first-child) {
    background: var(--white);
  }

  .specs-table-stacked-mobile tr td:first-child {
    background: var(--primary) !important;
    color: var(--white) !important;
  }

  .specs-table-desktop {
    display: none;
  }

  .comparison-cards-mobile {
    display: block;
  }

  .comparison-cards-mobile .comparison-card table {
    min-width: 0;
    table-layout: fixed;
  }

  .comparison-cards-mobile .comparison-card td {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  /* Checklist grid */
  .checklist-grid {
    padding: 50px 0;
  }

  .checklist-list {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 560px;
  }

  .checklist-list li {
    font-size: 0.98rem;
  }

}

/* ============================================
   Responsive — Small mobile (480px)
   ============================================ */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }

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

  .section-header p {
    font-size: 1rem;
  }

  .stats-heading {
    font-size: 1.7rem;
  }

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

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

  .stat-card .stat-number {
    font-size: 1.95rem;
  }

  .stat-card .stat-label {
    font-size: 0.92rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
  }

  .cta-phone {
    font-size: 1.6rem;
  }

  .plan-card {
    padding: 30px 24px;
  }

  .timeline-marker {
    width: 46px;
    height: 46px;
    font-size: 1.15rem;
  }


  .faq-question {
    padding: 16px;
    font-size: 0.9rem;
  }

  .faq-answer-inner {
    padding: 0 16px 16px;
  }

  .page-header {
    padding: 130px 0 30px;
  }

  .product-hero {
    padding: 130px 0 40px;
  }

  .form-container {
    padding: 24px 16px;
    border: none;
    box-shadow: none;
  }

  .feature-card h3 svg {
    width: 30px;
    height: 30px;
  }

  #service-form,
  .form-container {
    scroll-margin-top: 110px;
  }

  .highlight-banner .highlight-stat {
    font-size: 2.5rem;
  }

  .highlight-banner p {
    font-size: 0.95rem;
  }

  .checklist-list {
    gap: 10px;
  }

  .checklist-list li {
    gap: 8px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .checklist-list li::before {
    font-size: 1rem;
  }
}
