/*
 * EdmontonSEOs.com - Premium Design System
 * Highly optimized, responsive, and featuring custom glassmorphism, 
 * CSS-grid dynamic structures, and fluid typography.
 */

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

/* --- CSS VARIABLES & TOKENS --- */
:root {
  /* Color Palettes */
  --primary: #1E3A8A;        /* Deep Slate Blue */
  --primary-light: #3B82F6;  /* Accent Blue */
  --secondary: #10B981;      /* SEO Organic Green */
  --accent: #F59E0B;         /* Conversion Amber Orange */
  --dark-bg: #0F172A;        /* Rich Slate Background */
  --light-bg: #F8FAFC;       /* Off-White Readability */
  --card-bg-light: rgba(255, 255, 255, 0.85);
  --card-bg-dark: rgba(15, 23, 42, 0.9);
  --border-light: rgba(226, 232, 240, 0.8);
  --border-glass: rgba(255, 255, 255, 0.1);
  --text-dark: #0F172A;
  --text-light: #F8FAFC;
  --text-muted: #64748B;
  
  /* Typography Tokens */
  --font-family-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-family-heading: 'Outfit', system-ui, sans-serif;
  
  /* Layout Grid Metrics */
  --max-width: 1200px;
  --header-height: 80px;
  --utility-height: 40px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 20px 40px -15px rgba(30, 58, 138, 0.15), 0 1px 5px rgba(30, 58, 138, 0.05);
}

/* --- BASE STYLES & RESET --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family-sans);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

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

/* --- TYPOGRAPHY UTILITIES --- */
h1 { font-size: 2.75rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.25rem; margin-top: 2rem; border-left: 5px solid var(--secondary); padding-left: 12px; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; margin-top: 1.5rem; }
p { margin-bottom: 1.25rem; font-size: 1.05rem; color: #334155; }

/* --- PREMIUM CONTAINER UTILITIES --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- UTILITY BAR (E-E-A-T LOCAL SIGNALS) --- */
.utility-bar {
  background-color: var(--primary);
  color: var(--text-light);
  height: var(--utility-height);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.utility-bar a {
  color: var(--text-light);
}

.utility-bar a:hover {
  color: var(--secondary);
}

.utility-bar-left {
  display: flex;
  gap: 1.5rem;
}

/* --- NAVIGATION & HEADER --- */
.site-header {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.site-header .container {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

/* --- BUTTON & CTA COMPONENT --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-family: var(--font-family-heading);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
  background-color: #d97706;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

.btn-secondary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --- HERO BANNER (CONVERSION INSPIRED) --- */
.hero-banner {
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 40%),
              radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.05), transparent 40%),
              linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border-light);
}

.hero-banner .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.hero-content .subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-badge-item {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge-item svg {
  color: var(--secondary);
}

.hero-graphic {
  position: relative;
}

.hero-card {
  background: var(--card-bg-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.05);
  border-radius: 12px;
  padding: 2rem;
}

.hero-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* --- GEO/AEO EXTRACTION BOX (AI ANSWER BLOCK) --- */
.ai-answer-block {
  background-color: #f0fdf4;
  border: 2px dashed var(--secondary);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.ai-answer-block h4 {
  font-family: var(--font-family-heading);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ai-answer-block p {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
}

/* --- CONTENT GRID & COLUMNS --- */
.content-section {
  padding: 4rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 3.5rem;
}

.content-grid.no-sidebar {
  grid-template-columns: 1fr;
}

/* Left main content adjustments */
.main-content {
  display: flex;
  flex-direction: column;
}

/* Right sidebar container */
.sidebar {
  position: relative;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-widget {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-light);
}

.sidebar-widget h3 {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.sidebar-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--secondary);
}

/* Contact form widget styling */
.widget-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* --- STEP PROCESS COMPONENT (HOWTO) --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.process-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.process-step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(16, 185, 129, 0.15);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.process-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

/* --- CASE STUDIES & TRUST SIGNALS --- */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.case-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
}

.case-card .metrics {
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.case-card .company {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.case-card p {
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Testimonial Quote slider block */
.testimonial-block {
  background: #f8fafc;
  border-left: 4px solid var(--accent);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.testimonial-block blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: #334155;
  margin-bottom: 0.75rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

/* --- FAQ ACCORDION COMPONENT --- */
.faq-accordion {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  position: relative;
}

.faq-question span.icon::before,
.faq-question span.icon::after {
  content: '';
  position: absolute;
  background-color: var(--primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition-smooth);
}

.faq-question span.icon::before {
  width: 12px;
  height: 2px;
}

.faq-question span.icon::after {
  width: 2px;
  height: 12px;
}

.faq-item.active .faq-question span.icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  background-color: #fafbfd;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  margin-bottom: 0;
  color: #475569;
  font-size: 1rem;
}

/* --- TABULAR DATA DESIGN --- */
.data-table-container {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: white;
}

.data-table th,
.data-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}

.data-table th {
  background-color: var(--primary);
  color: white;
  font-family: var(--font-family-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.data-table tr:last-child td {
  border-bottom: none;
}

.data-table tr:nth-child(even) {
  background-color: #f8fafc;
}

/* --- E-E-A-T AUTHOR PROFILE COMPONENT --- */
.author-profile {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 3rem 0 1rem;
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: var(--font-family-heading);
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.author-details h5 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.author-details .credentials {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.author-details p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 0;
}

/* --- COMPLIANCE FOOTER --- */
.site-footer {
  background-color: var(--dark-bg);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: #94a3b8;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: white;
  padding-left: 4px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #64748b;
}

.footer-bottom-links a:hover {
  color: white;
}

.trust-badges-footer {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.trust-badge-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 4px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #e2e8f0;
}

.trust-badge-card svg {
  color: var(--secondary);
}

/* --- MOBILE STYLING & ADAPTIVE STACKS --- */
@media (max-width: 968px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  
  .hero-banner {
    padding: 3rem 0;
  }
  
  .hero-banner .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .sticky-sidebar {
    position: static;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 2rem;
    gap: 1.5rem;
    align-items: stretch;
    border-top: 1px solid var(--border-light);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-links a {
    text-align: center;
  }
  
  .nav-links .btn {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .utility-bar {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- STICKY CONVERSION BOTTOM BAR --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 2px solid var(--secondary);
  color: white;
  padding: 1rem 0;
  z-index: 999;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sticky-cta-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.sticky-cta-text {
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 700;
}

.sticky-cta-text span {
  color: var(--secondary);
}

.sticky-cta-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.sticky-cta-actions .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .sticky-cta-bar {
    padding: 0.75rem 0;
  }
  .sticky-cta-bar .container {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .sticky-cta-text {
    font-size: 0.95rem;
  }
}


/* ==========================================================================
   HOMEPAGE-SPECIFIC SECTIONS — Premium Redesign
   Added below existing base styles. Do NOT modify anything above.
   ========================================================================== */

/* --- 1. SOCIAL PROOF BAR (Below Hero) --- */
.social-proof-bar {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.social-proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.social-proof-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font-family-heading);
}

.social-proof-stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 1.1rem;
}

.social-proof-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.social-proof-logos:hover {
  opacity: 1;
}

.social-proof-logos img {
  height: 22px;
  filter: brightness(0) invert(1);
  transition: var(--transition-smooth);
}

.social-proof-locations {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.location-pill:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--secondary);
  color: var(--secondary);
}


/* --- 2. PROBLEM / SOLUTION SECTION --- */
.problem-solution-section {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.problem-solution-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.problem-solution-section .section-header h2 {
  border-left: none;
  padding-left: 0;
  text-align: center;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-column,
.solution-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.problem-column-header,
.solution-column-header {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.problem-column-header {
  color: #dc2626;
}

.solution-column-header {
  color: var(--secondary);
}

.problem-item,
.solution-item {
  background: white;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.problem-item:hover,
.solution-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.problem-item {
  border-left: 3px solid #fca5a5;
}

.solution-item {
  border-left: 3px solid #6ee7b7;
}

.problem-item .icon,
.solution-item .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.problem-item .text,
.solution-item .text {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}

.problem-item .text strong,
.solution-item .text strong {
  display: block;
  font-family: var(--font-family-heading);
  color: var(--text-dark);
  margin-bottom: 0.2rem;
}


/* --- 3. RESULTS SHOWCASE --- */
.results-showcase {
  padding: 5rem 0;
  background: white;
}

.results-showcase .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.results-showcase .section-header h2 {
  border-left: none;
  padding-left: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto 3rem;
}

.result-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.result-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.result-card:hover img {
  transform: scale(1.015);
}

.result-card .client-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.result-card .before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.result-card .before,
.result-card .after {
  text-align: center;
}

.result-card .before .label,
.result-card .after .label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.result-card .before .label {
  color: #ef4444;
}

.result-card .after .label {
  color: #16a34a;
}

.result-card .before .value {
  font-family: var(--font-family-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #fca5a5;
}

.result-card .after .value {
  font-family: var(--font-family-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #16a34a;
}

.result-card .arrow-divider {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.result-card .result-desc {
  font-size: 0.92rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.55;
}

.results-stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--dark-bg);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.results-stat {
  text-align: center;
  color: white;
}

.results-stat .number {
  font-family: var(--font-family-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.results-stat .stat-label {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}


/* --- 4. PROCESS TIMELINE --- */
.process-timeline {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.process-timeline .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.process-timeline .section-header h2 {
  border-left: none;
  padding-left: 0;
}

.timeline-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--secondary));
  border-radius: 2px;
  z-index: 0;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 1rem;
}

.timeline-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.35rem;
  border: 4px solid var(--light-bg);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
}

.timeline-step:hover .timeline-circle {
  background: var(--secondary);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
  transform: scale(1.1);
}

.timeline-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  width: 100%;
}

.timeline-card:hover {
  box-shadow: var(--shadow-hover);
}

.timeline-card h4 {
  font-family: var(--font-family-heading);
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.timeline-card p {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.5;
}


/* --- 5. E-E-A-T BADGES SECTION --- */
.eeat-section {
  padding: 5rem 0;
  background: white;
}

.eeat-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.eeat-section .section-header h2 {
  border-left: none;
  padding-left: 0;
}

.eeat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto 2.5rem;
}

.eeat-badge-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
}

.eeat-badge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.eeat-badge-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.eeat-badge-card h4 {
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.eeat-badge-card p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.5;
}

.eeat-team-card {
  background: var(--card-bg-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 2rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.eeat-team-card:hover {
  box-shadow: var(--shadow-hover);
}

.eeat-team-card .author-avatar {
  width: 90px;
  height: 90px;
  font-size: 2rem;
}

.eeat-team-card h4 {
  font-family: var(--font-family-heading);
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.eeat-team-card .credentials {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.eeat-team-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 0;
}


/* --- 6. TESTIMONIAL CAROUSEL SECTION --- */
.testimonial-section {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.testimonial-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-section .section-header h2 {
  border-left: none;
  padding-left: 0;
}

.testimonial-carousel {
  display: flex;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  overflow-x: hidden;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-premium);
  min-width: 340px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  position: relative;
}

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

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: rgba(30, 58, 138, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.testimonial-card .stars {
  display: flex;
  gap: 2px;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #334155;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card .client-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-family-heading);
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-card .client-name {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.testimonial-card .client-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* --- 7. LOCATION GRID SECTION --- */
.location-grid-section {
  padding: 5rem 0;
  background: white;
}

.location-grid-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.location-grid-section .section-header h2 {
  border-left: none;
  padding-left: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.location-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 1.75rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.location-card .location-name {
  font-family: var(--font-family-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.location-card .location-name::before {
  content: '\1F4CD';
  font-size: 1rem;
}

.location-card .location-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0;
}

.location-card .location-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-light);
  margin-top: auto;
  transition: var(--transition-smooth);
}

.location-card .location-link:hover {
  gap: 0.6rem;
  color: var(--secondary);
}

.location-card .location-link::after {
  content: '\2192';
  transition: var(--transition-smooth);
}


/* --- 8. SEO PACKAGES SECTION --- */
.packages-section {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.packages-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.packages-section .section-header h2 {
  border-left: none;
  padding-left: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: stretch;
}

.package-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-premium);
  position: relative;
}

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

.package-card.featured {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.15);
  transform: scale(1.04);
}

.package-card.featured:hover {
  transform: scale(1.04) translateY(-5px);
  box-shadow: 0 15px 50px rgba(245, 158, 11, 0.25);
}

.package-card .popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text-dark);
  font-family: var(--font-family-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.package-card .package-name {
  font-family: var(--font-family-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.package-card .package-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.package-price {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.package-price .currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.package-price .amount {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.package-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.45;
}

.package-features li::before {
  content: '\2713';
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

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


/* --- 9. FINAL CTA SECTION --- */
.final-cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1e293b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.06), transparent 50%);
  pointer-events: none;
}

.final-cta-section .container {
  position: relative;
  z-index: 1;
}

.final-cta-section h2 {
  color: white;
  border-left: none;
  padding-left: 0;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.final-cta-section h2 span {
  color: var(--secondary);
}

.final-cta-section .subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.final-cta-form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 0 auto 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta-form input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-smooth);
}

.final-cta-form input::placeholder {
  color: #64748b;
}

.final-cta-form input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.risk-reversal {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.risk-reversal .icon {
  color: var(--secondary);
}

.final-trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.final-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #94a3b8;
  font-weight: 500;
}

.final-trust-badge .badge-icon {
  color: var(--secondary);
  font-size: 1rem;
}


/* --- 10. HOMEPAGE FULL-WIDTH SECTIONS --- */
.hp-section {
  width: 100%;
  padding: 5rem 0;
}

.hp-section:nth-child(odd) {
  background-color: white;
}

.hp-section:nth-child(even) {
  background-color: var(--light-bg);
}

.hp-section .hp-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hp-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hp-section .section-header h2 {
  border-left: none;
  padding-left: 0;
}

.hp-section .section-header .section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}


/* --- 11. METRIC COUNTER BOXES --- */
.metric-box {
  display: inline-flex;
  flex-direction: column;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--secondary);
  background: white;
  border-radius: 0 8px 8px 0;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.metric-box:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.metric-box .metric-number {
  font-family: var(--font-family-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.metric-box .metric-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

.metric-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}


/* --- 12. KORAY 40-WORD ANSWER BLOCKS --- */
.koray-answer {
  background-color: #eff6ff;
  border: 2px dashed var(--primary-light);
  border-radius: 8px;
  padding: 1.15rem 1.35rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.04);
}

.koray-answer h4 {
  font-family: var(--font-family-heading);
  color: var(--primary-light);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.koray-answer p {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.55;
}


/* ==========================================================================
   HOMEPAGE RESPONSIVE — 968px Breakpoint
   ========================================================================== */
@media (max-width: 968px) {
  /* Social Proof Bar */
  .social-proof-bar .container {
    gap: 1.5rem;
  }

  /* Problem / Solution */
  .problem-solution-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Results Showcase */
  .results-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .results-stats-bar {
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  /* Process Timeline — vertical */
  .timeline-track {
    flex-direction: column;
    gap: 2rem;
  }

  .timeline-track::before {
    top: 0;
    bottom: 0;
    left: 32px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .timeline-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 1.25rem;
    padding: 0;
  }

  .timeline-circle {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .timeline-card {
    flex: 1;
  }

  /* E-E-A-T grid */
  .eeat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eeat-team-card {
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2rem;
  }

  /* Testimonials */
  .testimonial-carousel {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }

  .testimonial-card {
    scroll-snap-align: start;
    min-width: 300px;
  }

  /* Location Grid */
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Packages */
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .package-card.featured {
    transform: none;
    order: -1;
  }

  .package-card.featured:hover {
    transform: translateY(-5px);
  }
}


/* ==========================================================================
   HOMEPAGE RESPONSIVE — 640px Breakpoint
   ========================================================================== */
@media (max-width: 640px) {
  /* General HP sections */
  .hp-section {
    padding: 3.5rem 0;
  }

  .social-proof-bar,
  .problem-solution-section,
  .results-showcase,
  .process-timeline,
  .eeat-section,
  .testimonial-section,
  .location-grid-section,
  .packages-section,
  .final-cta-section {
    padding: 3.5rem 0;
  }

  /* Social Proof */
  .social-proof-bar .container {
    flex-direction: column;
    gap: 1rem;
  }

  .social-proof-logos img {
    height: 18px;
  }

  /* Results */
  .results-grid {
    grid-template-columns: 1fr;
  }

  .result-card .before-after {
    gap: 0.5rem;
  }

  .result-card .before .value,
  .result-card .after .value {
    font-size: 1.4rem;
  }

  .results-stats-bar {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    border-radius: 8px;
  }

  .results-stat .number {
    font-size: 2.25rem;
  }

  /* Timeline */
  .timeline-circle {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .timeline-track::before {
    left: 22px;
  }

  /* E-E-A-T */
  .eeat-grid {
    grid-template-columns: 1fr;
  }

  .eeat-team-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }

  .eeat-team-card .author-avatar {
    margin: 0 auto;
  }

  /* Testimonials */
  .testimonial-card {
    min-width: 280px;
    padding: 1.5rem;
  }

  /* Location Grid */
  .location-grid {
    grid-template-columns: 1fr;
  }

  /* Packages */
  .packages-grid {
    max-width: 100%;
  }

  .package-price .amount {
    font-size: 2.5rem;
  }

  /* Final CTA */
  .final-cta-section h2 {
    font-size: 1.75rem;
  }

  .final-cta-form {
    flex-direction: column;
  }

  .final-cta-form input {
    min-width: auto;
    width: 100%;
  }

  .final-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  /* Metric boxes */
  .metric-row {
    flex-direction: column;
    gap: 1rem;
  }

  .metric-box {
    width: 100%;
  }

  .metric-box .metric-number {
    font-size: 1.85rem;
  }

  /* Blog Card Overrides */
  .blog-card-item {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem !important;
  }

  .blog-card-item img {
    height: 180px !important;
    width: 100% !important;
  }
}

