/* ═══════════════════════════════════════════════
   ELDA PROTECTION — Shared Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1A6DB5;
  --primary-light: #3A9BD5;
  --primary-dark: #115496;
  --primary-bg: #EEF5FC;
  --black: #111111;
  --text: #1A1A1A;
  --white: #ffffff;
  --off-white: #F8F9FA;
  --gray-100: #EEEEEE;
  --gray-200: #E0E0E0;
  --gray-500: #888580;
  --gray-700: #444240;
  --red: #E31E24;
  --red-dark: #B5181D;
  --green: #44A847;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-primary: 0 8px 32px rgba(26,109,181,0.28);
  --radius: 12px;
  --radius-sm: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ─── UTILITY ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--primary-bg); color: var(--text); }
.section--off { background: var(--off-white); }
.section--black { background: var(--black); color: var(--white); }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section--black .tag { color: var(--primary-light); }

h2.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 48px;
}
.section--black .section-subtitle { color: rgba(255,255,255,0.65); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,109,181,0.4);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: #222;
  transform: translateY(-2px);
}
.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(230,57,70,0.3);
}
.btn--red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ─── ANIMATIONS ─── */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247,183,49,0.5); }
  50% { box-shadow: 0 0 0 20px rgba(247,183,49,0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── HEADER ─── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}
#header.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}
#header.scrolled .header-inner { height: 60px; }

.logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.logo-name span { color: var(--primary); }
.logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 2px;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.desktop-nav a {
  color: var(--gray-700);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s;
  white-space: nowrap;
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--primary);
  background: rgba(26,109,181,0.08);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(227,30,36,0.08);
  border: 1px solid rgba(227,30,36,0.3);
  color: var(--red-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.blink-dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1.5s ease infinite;
}
.header-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header-phone a {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
  transition: color 0.2s;
}
.header-phone a:hover { color: var(--primary-dark); }
.header-phone-label {
  font-size: 0.65rem;
  color: var(--gray-500);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 24px;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .mobile-cta {
  margin: 12px 24px 16px;
  display: block;
  text-align: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  padding: 12px 20px;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--primary);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.85);
}
.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}
.page-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-item .check {
  width: 20px; height: 20px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 11px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 16px 0;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.82rem;
  color: var(--gray-500);
}
.breadcrumb a { color: var(--gray-700); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 8px; }

/* ─── URGENCY BAR ─── */
.urgency-bar {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 20px 0;
}
.urgency-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.urgency-bar-text {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.urgency-icon {
  font-size: 1.5rem;
  animation: blink 1s ease infinite;
}
.urgency-bar a.btn {
  background: var(--white);
  color: var(--red-dark);
  font-weight: 700;
  padding: 12px 28px;
  flex-shrink: 0;
}
.urgency-bar a.btn:hover {
  background: var(--off-white);
  transform: translateY(-1px);
}

/* ─── CARDS ─── */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gray-200);
  transition: background 0.3s;
}
.service-card:hover::before { background: var(--primary); }
.service-card:hover {
  border-color: rgba(26,109,181,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card--featured {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.service-card--featured::before { background: var(--primary-dark); }
.service-card--featured:hover { box-shadow: var(--shadow-primary); }
.service-card--featured .service-desc { color: rgba(255,255,255,0.75); }
.service-card--featured .service-price { color: rgba(255,255,255,0.85); }
.service-card--featured .service-price span { color: var(--white); }

.service-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(26,109,181,0.08);
  border: 1px solid rgba(26,109,181,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}
.service-card--featured .service-icon {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  color: var(--white);
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-price {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 20px;
}
.service-price span {
  color: var(--text);
  font-size: 1rem;
}
.service-card a.btn {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  font-size: 0.9rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ─── PRICING ─── */
.pricing-notice {
  background: rgba(26,109,181,0.07);
  border: 1px solid rgba(26,109,181,0.25);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.pricing-notice-icon { color: var(--primary); }
.pricing-notice-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.5; }
.pricing-notice-text strong { color: var(--text); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pricing-table th {
  background: var(--black);
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-table th:not(:first-child) { text-align: center; }
.pricing-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  background: var(--white);
}
.pricing-table td:not(:first-child) { text-align: center; font-weight: 600; color: var(--text); }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--gray-100); }
.pricing-table tr:hover td { background: rgba(26,109,181,0.05); }
.price-badge {
  display: inline-block;
  background: rgba(26,109,181,0.10);
  color: var(--primary);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.85rem;
}
.price-badge--high { background: rgba(230,57,70,0.08); color: var(--red-dark); }
.pricing-footer { text-align: center; margin-top: 24px; color: var(--gray-500); font-size: 0.85rem; }

/* ─── WHY CARDS ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.3s;
}
.why-card:hover {
  background: var(--white);
  border-color: rgba(26,109,181,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 56px; height: 56px;
  background: rgba(26,109,181,0.08);
  border: 1px solid rgba(26,109,181,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
}
.why-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.why-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(26,109,181,0.35); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: background 0.2s;
  gap: 16px;
}
.faq-question:hover { background: var(--gray-100); }
.faq-item.open .faq-question { background: rgba(26,109,181,0.04); color: var(--primary); }
.faq-chevron {
  width: 28px; height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--gray-700);
}
.faq-item.open .faq-chevron { background: var(--primary); color: var(--white); transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.8;
  background: var(--white);
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ─── FINAL CTA ─── */
.final-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 100px 0;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(26,109,181,0.15) 0%, transparent 70%);
}
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta h2 em { font-style: normal; color: var(--primary-light); }
.final-cta p { color: rgba(255,255,255,0.65); font-size: 1.1rem; margin-bottom: 40px; }
.final-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  padding: 24px 48px;
  border-radius: 50px;
  box-shadow: var(--shadow-primary);
  animation: pulse 2s ease-in-out infinite;
  transition: all 0.25s;
  margin-bottom: 40px;
}
.final-cta-phone:hover { animation: none; background: var(--primary-dark); transform: scale(1.02); }
.final-cta-divider { color: rgba(255,255,255,0.3); margin: 32px 0; font-size: 0.9rem; }

/* ─── CALLBACK FORM ─── */
.callback-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
}
.callback-form h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; text-align: center; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--primary-light); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.25s;
}
.form-submit:hover { background: var(--primary-dark); }
.form-success { display: none; text-align: center; padding: 32px; color: var(--white); }
.form-success h3 { font-size: 1.4rem; color: var(--primary-light); margin-bottom: 8px; }

/* ─── STATS ─── */
.stats-section {
  background: var(--off-white);
  padding: 60px 0;
  border-bottom: 1px solid var(--gray-200);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--primary);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--primary); }
.stat-label { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(26,109,181,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(26,109,181,0.10);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--primary); font-size: 0.9rem;
}
.author-name { font-weight: 700; color: var(--text); font-size: 0.9rem; }
.author-detail { font-size: 0.75rem; color: var(--gray-500); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .logo-name { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; margin-bottom: 16px; }
.footer-phones { display: flex; flex-direction: column; gap: 6px; }
.footer-phones a { color: var(--primary-light); font-weight: 700; font-size: 1.05rem; transition: color 0.2s; }
.footer-phones a:hover { color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary-light); }
.footer-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.brand-pill {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px; border-radius: 50px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary-light); }

/* ─── GENERIC CONTENT BLOCKS ─── */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.content-block h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.content-block p { color: var(--gray-500); line-height: 1.8; margin-bottom: 16px; font-size: 0.95rem; }
.content-block ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.content-block ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--gray-700);
}
.content-block ul li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.content-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
}
.content-box h3 { color: var(--white); margin-bottom: 16px; }
.content-box p { color: rgba(255,255,255,0.8); }

/* ─── ICON FEATURE LIST ─── */
.feature-list { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: all 0.25s;
}
.feature-item:hover {
  border-color: rgba(26,109,181,0.35);
  box-shadow: var(--shadow-sm);
}
.feature-item-icon {
  width: 44px; height: 44px;
  background: rgba(26,109,181,0.1);
  border: 1px solid rgba(26,109,181,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.feature-item-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.feature-item-text p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.5; }

/* ─── STEPS ─── */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step-item { text-align: center; padding: 32px 20px; }
.step-number {
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step-desc { font-size: 0.85rem; color: var(--gray-500); }

/* ─── CERT BADGES ─── */
.cert-grid { display: flex; flex-wrap: wrap; gap: 16px; }
.cert-badge {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  min-width: 120px;
}
.cert-badge .cert-level {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.cert-badge .cert-name { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-500); margin-top: 4px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .header-badge { display: none; }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .header-phone a { font-size: 1.05rem; }
  .final-cta-phone { font-size: 1.6rem; padding: 18px 28px; }
  .page-hero-ctas { flex-direction: column; }
  .page-hero-ctas .btn { width: 100%; justify-content: center; }
  .urgency-bar-inner { justify-content: center; }
  .urgency-bar a.btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-item { padding: 20px 12px; }
  .stat-number { font-size: 2.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--hero-call, .final-cta-phone, .blink-dot, .urgency-icon { animation: none !important; }
  .fade-in { transition: none !important; }
}
