/* ============================================
   AL TAQWAA AC — style.css
   Brand: Teal #3AA6B9, Dark #0F1D2A, White #FFF
   Font: Barlow Condensed (display) + Barlow (body)
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --teal: #3AA6B9;
  --teal-dark: #2a8fa1;
  --teal-light: #6bc8d8;
  --teal-faint: #e8f7fa;
  --dark: #0F1D2A;
  --dark-mid: #1e3344;
  --mid: #4a6275;
  --light: #8fa9bc;
  --white: #ffffff;
  --off-white: #f4f8fa;
  --wa-green: #25D366;
  --wa-dark: #1da851;
  --danger: #e53e3e;
  --warn: #f6802a;
  --gold: #f4c01e;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;

  --radius: 12px;
  --radius-sm: 8px;
  --radius-xl: 20px;
  --shadow: 0 4px 24px rgba(15,29,42,0.12);
  --shadow-md: 0 8px 40px rgba(15,29,42,0.18);
  --shadow-lg: 0 16px 64px rgba(15,29,42,0.24);

  --transition: 0.2s ease;
  --transition-md: 0.35s ease;

  --max-w: 1200px;
  --section-pad: 96px 0;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px; /* room for mobile sticky */
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }

/* ===== BUTTON BASE ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Call Button */
.btn-call {
  background: var(--warn);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(246,128,42,0.4);
  animation: pulse-orange 2.5s ease-in-out infinite;
}
.btn-call:hover {
  background: #e0711e;
  box-shadow: 0 6px 28px rgba(246,128,42,0.55);
}

/* WhatsApp Button */
.btn-whatsapp {
  background: var(--wa-green);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  animation: pulse-green 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}
.btn-whatsapp:hover {
  background: var(--wa-dark);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/* Hero & XL sizes */
.btn-hero {
  padding: 18px 36px;
  font-size: 1.2rem;
}
.btn-xl {
  padding: 20px 40px;
  font-size: 1.25rem;
}

/* ===== KEYFRAMES ===== */
@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 4px 18px rgba(246,128,42,0.4); }
  50% { box-shadow: 0 4px 32px rgba(246,128,42,0.7), 0 0 0 6px rgba(246,128,42,0.15); }
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 18px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65), 0 0 0 6px rgba(37,211,102,0.15); }
}
@keyframes float-up {
  0% { opacity: 0; transform: translateY(32px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes scroll-hint {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.5; }
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar-text { opacity: 0.9; }
.top-bar-cta {
  background: var(--teal);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.top-bar-cta:hover { background: var(--teal-dark); }

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,166,185,0.15);
  transition: box-shadow var(--transition-md);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo-block { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-img {
  width: 200px;
  height: 48px;
  border-radius: 10px;
  object-fit: cover;
  background: transparent;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--dark);
  line-height: 1.1;
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.header-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--mid);
  transition: color var(--transition);
}
.header-nav a:hover { color: var(--teal); }
.header-ctas { display: flex; gap: 10px; }
.header-ctas .btn { padding: 10px 18px; font-size: 0.95rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,29,42,0.92) 0%, rgba(15,29,42,0.65) 60%, rgba(58,166,185,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 100px;
  max-width: 780px;
  animation: float-up 0.8s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229,62,62,0.2);
  border: 1px solid rgba(229,62,62,0.4);
  color: #fc9090;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fc4b4b;
  animation: badge-pulse 1.4s ease-in-out infinite;
  display: inline-block;
}
.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-accent {
  color: var(--teal-light);
  display: block;
}
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.65;
}
.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item { display: flex; flex-direction: column; align-items: flex-start; }
.trust-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.trust-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-disclaimer {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.2rem;
  z-index: 2;
  animation: scroll-hint 2s ease-in-out infinite;
  cursor: default;
}

/* ===== URGENCY BAND ===== */
.urgency-band {
  background: linear-gradient(90deg, #1e3344 0%, #0f4a5a 100%);
  padding: 20px 0;
  border-top: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}
.urgency-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.urgency-inner p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  max-width: 700px;
}
.urgency-inner strong { color: var(--teal-light); }
.urgency-icon { font-size: 1.5rem; flex-shrink: 0; }

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--teal-faint);
  color: var(--teal-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--dark);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services { padding: var(--section-pad); background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition-md), box-shadow var(--transition-md);
  position: relative;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--teal);
}
.service-card:not(.service-card--highlight) {
  border: 2px solid transparent;
  transition: transform var(--transition-md), box-shadow var(--transition-md), border-color var(--transition-md);
}
.service-card--highlight {
  border: 2px solid var(--teal);
}
.service-badge-popular {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 1;
}
.service-img-wrap { height: 200px; overflow: hidden; }
.service-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-img { transform: scale(1.05); }
.service-body { padding: 24px; }
.service-icon { font-size: 1.8rem; margin-bottom: 10px; }
.service-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.6;
  margin-bottom: 18px;
}
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap var(--transition), color var(--transition);
}
.service-cta:hover { color: var(--teal-dark); gap: 10px; }

/* Annual Plan Card */
.annual-plan-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.annual-plan-content { display: flex; align-items: center; gap: 20px; }
.annual-plan-icon { font-size: 2.5rem; flex-shrink: 0; }
.annual-plan-content h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 6px;
}
.annual-plan-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  max-width: 540px;
}

/* ===== OFFER SECTION ===== */
.offer {
  padding: var(--section-pad);
  position: relative;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}
.offer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(58,166,185,0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(246,128,42,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.offer-inner { position: relative; z-index: 1; }
.offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f6802a, #f4c01e);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(246,128,42,0.5);
}
.offer-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.offer-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Timer */
.offer-timer-wrap { margin-bottom: 40px; }
.timer-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.offer-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.timer-block {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(58,166,185,0.3);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  text-align: center;
  min-width: 80px;
}
.timer-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
}
.timer-unit {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  display: block;
}
.timer-sep {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
}

/* Offer checklist */
.offer-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}
.offer-check {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
}
.offer-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: var(--section-pad);
  background: var(--white);
  overflow: hidden;
}
.why-us-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}
.why-us-image-col { position: relative; }
.why-us-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.why-us-stat-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}
.why-stat { text-align: center; }
.why-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--teal-light);
  line-height: 1;
}
.why-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-top: 4px;
  display: block;
}
.why-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
}
.why-us-content-col { padding: 20px 0; }
.why-title {
  text-align: left !important;
  margin-top: 12px;
  margin-bottom: 16px;
}
.why-us-intro {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.why-feature-list { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--off-white);
  border-left: 4px solid var(--teal);
  transition: background var(--transition), transform var(--transition);
}
.why-feature:hover {
  background: var(--teal-faint);
  transform: translateX(4px);
}
.why-feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.why-feature-text h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.why-feature-text p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-pad);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(58,166,185,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 20%, rgba(58,166,185,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.how-it-works .container { position: relative; z-index: 1; }
.how-it-works .section-tag { background: rgba(58,166,185,0.2); color: var(--teal-light); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.6); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 60px;
  position: relative;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(58,166,185,0.2);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: background var(--transition-md), border-color var(--transition-md), transform var(--transition-md);
  margin: 0 12px;
}
.step-card:hover {
  background: rgba(58,166,185,0.1);
  border-color: var(--teal);
  transform: translateY(-6px);
}
.step-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(58,166,185,0.2);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.step-connector {
  position: absolute;
  top: 50%;
  right: -36px;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(58,166,185,0.3));
  z-index: 2;
}
.step-connector::after {
  content: '→';
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 1rem;
  line-height: 1;
}
.how-cta-wrap { text-align: center; }
.how-cta-nudge {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.how-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== REVIEWS ===== */
.reviews { padding: var(--section-pad); background: var(--off-white); }
.review-stars-total {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.4rem;
  margin-top: 8px;
}
.review-stars-total span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--mid);
  font-weight: 600;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition-md);
}
.review-card:hover { transform: translateY(-4px); }
.review-card--featured {
  border: 2px solid var(--teal);
  background: linear-gradient(135deg, #f0fbfd 0%, var(--white) 100%);
}
.review-stars { font-size: 1.1rem; margin-bottom: 14px; }
.review-text {
  font-size: 0.95rem;
  color: var(--dark-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
}
.review-author span {
  font-size: 0.82rem;
  color: var(--light);
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
}
.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.final-cta-text h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}
.final-cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 480px;
  line-height: 1.6;
}
.final-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.final-cta .btn-call {
  background: var(--white);
  color: var(--warn);
  animation: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.final-cta .btn-call:hover {
  background: var(--off-white);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* ===== FOOTER ===== */
.site-footer { background: var(--dark); padding: 56px 0 0; }
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img {
  width: 200px; height: 50px;
  border-radius: 8px;
  ;
}
.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
}
.footer-brand span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--teal-light); }
.footer-copy {
  padding: 20px 0;
  background: rgba(0,0,0,0.2);
}
.footer-copy p {
  text-align: center;
  color: white;
  font-size: 0.82rem;
}
.footer-copy a {
  color: var(--teal);
  transition: color var(--transition);
}
.footer-copy a:hover { color: var(--teal-light); }

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  gap: 10px;
}
.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.mobile-sticky-call {
  background: var(--warn);
  box-shadow: 0 3px 12px rgba(246,128,42,0.4);
  animation: pulse-orange 2.5s ease-in-out infinite;
}
.mobile-sticky-wa {
  background: var(--wa-green);
  box-shadow: 0 3px 12px rgba(37,211,102,0.4);
  animation: pulse-green 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .header-nav { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  body { padding-bottom: 80px; }

  .mobile-sticky-bar { display: flex; }

  .header-ctas { display: none; }

  .hero { min-height: auto; padding: 20px 0; }
  .hero-content { padding-top: 40px; padding-bottom: 60px; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-trust-bar { gap: 12px; }
  .trust-divider { display: none; }

  .urgency-inner { flex-direction: column; gap: 8px; }
  .urgency-icon:last-child { display: none; }

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

  .annual-plan-card { flex-direction: column; text-align: center; }
  .annual-plan-content { flex-direction: column; text-align: center; }

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

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

  .final-cta-inner { flex-direction: column; text-align: center; }
  .final-cta-btns { flex-direction: column; width: 100%; }
  .final-cta-btns .btn { width: 100%; justify-content: center; }

  .offer-cta-group { flex-direction: column; align-items: center; }
  .offer-cta-group .btn { width: 100%; max-width: 360px; }

  .footer-inner { flex-direction: column; gap: 32px; }

  .top-bar { font-size: 0.78rem; gap: 10px; }
  .top-bar-cta { display: none; }
}

@media (max-width: 480px) {
  .offer-timer { gap: 4px; }
  .timer-block { min-width: 64px; padding: 10px 14px; }
  .timer-num { font-size: 2rem; }
}

/* ===== SCROLL ANIMATIONS (progressive enhancement) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE — NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .why-us-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us-image-col { max-width: 560px; margin: 0 auto; }
  .why-us-stat-card { right: 0; bottom: -20px; }
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .step-card { margin: 0; }
  .step-connector { display: none; }
}

@media (max-width: 768px) {
  .why-us-photo { height: 320px; }
  .why-us-stat-card { position: static; margin-top: 20px; justify-content: center; width: 100%; border-radius: var(--radius); }
  .why-feature { padding: 16px; }
  .how-cta-btns { flex-direction: column; align-items: center; }
  .how-cta-btns .btn { width: 100%; max-width: 340px; justify-content: center; }
}
