/* ═══════════════════════════════════════════════════════
   A CLASS ENERJİ — Global Stylesheet
   Tam sayfa, çift kaydırma yok, profesyonel tasarım
   ═══════════════════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
  --ac-green-900: #052e16;
  --ac-green-800: #0a4a28;
  --ac-green-700: #0f6c3c;
  --ac-green-600: #15803d;
  --ac-green-500: #18a66a;
  --ac-green-400: #35c485;
  --ac-green-300: #6ee7a8;
  --ac-green-200: #a7f3cc;
  --ac-green-100: #dcfce7;
  --ac-green-50:  #f0fdf4;
  --ac-dark: #0c1f13;
  --ac-text: #1a2e22;
  --ac-text-secondary: #4a6355;
  --ac-text-muted: #6b8578;
  --ac-border: #d4e8dc;
  --ac-border-light: #e8f3ec;
  --ac-surface: #ffffff;
  --ac-surface-alt: #f7fbf9;
  --ac-bg: #fafdfb;
  --ac-radius: 16px;
  --ac-radius-sm: 10px;
  --ac-radius-lg: 24px;
  --ac-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
  --ac-shadow-lg: 0 4px 12px rgba(0,0,0,.06), 0 20px 48px rgba(0,0,0,.08);
  --ac-font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --ac-font-display: 'DM Serif Display', Georgia, serif;
  --ac-nav-height: 72px;
  --ac-max-width: 1200px;
  --ac-transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  /* TAM SAYFA — çift kaydırma çubuğu yok */
  overflow-y: auto;
}

body {
  font-family: var(--ac-font);
  color: var(--ac-text);
  background: var(--ac-bg);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Çift kaydırma çubuğunu engellemek için */
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ac-green-600); text-decoration: none; transition: color var(--ac-transition); }
a:hover { color: var(--ac-green-500); }

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; color: var(--ac-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); letter-spacing: -.015em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { color: var(--ac-text-secondary); }

/* ── Navigation ── */
.ac-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--ac-nav-height);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--ac-border-light);
  transition: box-shadow var(--ac-transition);
}
.ac-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.ac-nav-inner {
  max-width: var(--ac-max-width); margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
}
.ac-logo {
  font-family: var(--ac-font); font-weight: 800; font-size: 20px;
  color: var(--ac-green-700); display: flex; align-items: center; gap: 10px;
  letter-spacing: .5px; text-transform: uppercase;
}
.ac-logo-icon {
  width: 38px; height: 38px; background: linear-gradient(135deg, var(--ac-green-600), var(--ac-green-400));
  border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: 16px; font-weight: 900;
}
.ac-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.ac-nav-links li { position: relative; }
.ac-nav-links a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--ac-radius-sm);
  font-size: 14px; font-weight: 600; color: var(--ac-text);
  transition: all var(--ac-transition);
}
.ac-nav-links a:hover { background: var(--ac-green-50); color: var(--ac-green-700); }

/* Dropdown */
.ac-dropdown { position: relative; }
.ac-dropdown-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 260px; background: var(--ac-surface);
  border: 1px solid var(--ac-border); border-radius: var(--ac-radius);
  box-shadow: var(--ac-shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: all .25s ease;
}
.ac-dropdown:hover .ac-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.ac-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 500;
}
.ac-dropdown-menu a:hover { background: var(--ac-green-50); }

/* Mobile Nav Toggle */
.ac-nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 36px; height: 36px; position: relative;
}
.ac-nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ac-text);
  border-radius: 2px; position: absolute; left: 7px;
  transition: all .3s ease;
}
.ac-nav-toggle span:nth-child(1) { top: 10px; }
.ac-nav-toggle span:nth-child(2) { top: 17px; }
.ac-nav-toggle span:nth-child(3) { top: 24px; }
.ac-nav-toggle.active span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.ac-nav-toggle.active span:nth-child(2) { opacity: 0; }
.ac-nav-toggle.active span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

.ac-nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; background: linear-gradient(135deg, var(--ac-green-600), var(--ac-green-500));
  color: #fff !important; border-radius: var(--ac-radius-sm);
  font-size: 13px; font-weight: 700; transition: all var(--ac-transition);
  box-shadow: 0 2px 8px rgba(24,166,106,.25);
}
.ac-nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(24,166,106,.35); color: #fff !important; }

/* ── Page Content Wrapper (tam sayfa — kaydırma sorunu yok) ── */
.ac-page {
  padding-top: var(--ac-nav-height);
  width: 100%;
  /* min-height YOK — içerik kadar uzar, çift kaydırma oluşmaz */
}

/* ── Container ── */
.ac-container {
  max-width: var(--ac-max-width); margin: 0 auto; padding: 0 24px; width: 100%;
}

/* ── Hero Section ── */
.ac-hero {
  padding: 80px 0 60px;
  background: linear-gradient(165deg, var(--ac-green-50) 0%, #fff 40%, var(--ac-surface-alt) 100%);
  position: relative; overflow: hidden;
}
.ac-hero::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(24,166,106,.06) 0%, transparent 70%);
  pointer-events: none;
}
.ac-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.ac-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ac-green-100); border: 1px solid var(--ac-green-200);
  color: var(--ac-green-700); font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px; text-transform: uppercase;
  letter-spacing: .5px; margin-bottom: 16px;
  animation: fadeInDown .6s ease both;
}
.ac-hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--ac-green-500); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.ac-hero h1 {
  margin-bottom: 20px;
  animation: fadeInUp .6s ease .1s both;
}
.ac-hero p.ac-lead {
  font-size: 17px; line-height: 1.75; color: var(--ac-text-secondary);
  margin-bottom: 28px;
  animation: fadeInUp .6s ease .2s both;
}

/* ── Animations ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ac-animate { opacity: 0; transform: translateY(24px); transition: all .6s ease; }
.ac-animate.visible { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.ac-btns { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeInUp .6s ease .3s both; }
.ac-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--ac-radius-sm);
  font-family: var(--ac-font); font-size: 14px; font-weight: 700;
  cursor: pointer; border: none; transition: all var(--ac-transition);
  text-decoration: none;
}
.ac-btn-primary {
  background: linear-gradient(135deg, var(--ac-green-600), var(--ac-green-500));
  color: #fff; box-shadow: 0 2px 12px rgba(24,166,106,.25);
}
.ac-btn-primary:hover {
  transform: translateY(-2px); box-shadow: 0 6px 24px rgba(24,166,106,.3); color: #fff;
}
.ac-btn-outline {
  background: var(--ac-surface); color: var(--ac-text);
  border: 1.5px solid var(--ac-border);
}
.ac-btn-outline:hover {
  border-color: var(--ac-green-400); background: var(--ac-green-50); color: var(--ac-green-700);
}

/* ── Sections ── */
.ac-section {
  padding: 72px 0;
}
.ac-section-alt {
  background: var(--ac-surface-alt);
}
.ac-section-title {
  text-align: center; margin-bottom: 48px;
}
.ac-section-title h2 { margin-bottom: 12px; }
.ac-section-title p { max-width: 600px; margin: 0 auto; font-size: 16px; }

/* ── Cards ── */
.ac-card {
  background: var(--ac-surface); border: 1px solid var(--ac-border-light);
  border-radius: var(--ac-radius-lg); padding: 28px;
  box-shadow: var(--ac-shadow); transition: all var(--ac-transition);
}
.ac-card:hover { box-shadow: var(--ac-shadow-lg); transform: translateY(-2px); }

.ac-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--ac-green-100), var(--ac-green-50));
  border: 1px solid var(--ac-green-200); display: grid; place-items: center;
  font-size: 20px; margin-bottom: 16px; color: var(--ac-green-600);
}

/* ── Grid Layouts ── */
.ac-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.ac-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ac-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Lists ── */
.ac-list { list-style: none; display: grid; gap: 12px; }
.ac-list li {
  position: relative; padding-left: 22px; color: var(--ac-text-secondary); line-height: 1.65;
}
.ac-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ac-green-500);
}

/* ── Mini Cards (içerik kutuları) ── */
.ac-mini {
  background: var(--ac-surface-alt); border: 1px solid var(--ac-border-light);
  border-radius: var(--ac-radius); padding: 24px;
}
.ac-mini h3 { margin-bottom: 8px; }

/* ── Steps ── */
.ac-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.ac-step {
  background: var(--ac-surface); border: 1px solid var(--ac-border-light);
  border-radius: var(--ac-radius); padding: 24px; text-align: center;
  transition: all var(--ac-transition);
}
.ac-step:hover { border-color: var(--ac-green-300); }
.ac-step-num {
  width: 40px; height: 40px; border-radius: 50%; margin: 0 auto 14px;
  background: linear-gradient(135deg, var(--ac-green-600), var(--ac-green-400));
  color: #fff; display: grid; place-items: center;
  font-size: 15px; font-weight: 800;
}
.ac-step h3 { font-size: 15px; margin-bottom: 6px; }
.ac-step p { font-size: 13px; }

/* ── CTA Section ── */
.ac-cta-section {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--ac-green-50), var(--ac-surface-alt));
  border-top: 1px solid var(--ac-border-light);
  border-bottom: 1px solid var(--ac-border-light);
}
.ac-cta-inner {
  text-align: center; max-width: 640px; margin: 0 auto;
}
.ac-cta-inner h2 { margin-bottom: 12px; }
.ac-cta-inner p { margin-bottom: 24px; }
.ac-cta-inner .ac-btns { justify-content: center; }

/* ── Hero Visual (SVG area) ── */
.ac-hero-visual {
  display: flex; align-items: center; justify-content: center;
  animation: fadeIn .8s ease .3s both;
}
.ac-hero-visual svg {
  width: 100%; max-width: 520px; height: auto;
  border-radius: var(--ac-radius-lg); border: 1px solid var(--ac-border-light);
  background: var(--ac-surface);
}

/* ── Info Note ── */
.ac-note {
  padding: 16px 20px; border-radius: var(--ac-radius-sm);
  background: var(--ac-green-50); border: 1px solid var(--ac-green-200);
  color: var(--ac-green-800); font-size: 14px; line-height: 1.65;
}

/* ── KPI Boxes ── */
.ac-kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ac-kpi-box {
  background: var(--ac-surface); border: 1px solid var(--ac-border-light);
  border-radius: var(--ac-radius); padding: 20px; text-align: center;
}
.ac-kpi-box strong {
  display: block; font-size: 28px; color: var(--ac-green-700);
  font-weight: 800; margin-bottom: 4px;
}
.ac-kpi-box span { font-size: 13px; color: var(--ac-text-muted); }

/* ── Tables ── */
.ac-table { width: 100%; border-collapse: collapse; }
.ac-table th, .ac-table td {
  text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--ac-border-light);
}
.ac-table th {
  font-size: 12px; color: var(--ac-text-muted);
  text-transform: uppercase; letter-spacing: .4px; font-weight: 700;
}

/* ── Footer ── */
.ac-footer {
  background: var(--ac-dark); color: rgba(255,255,255,.7); padding: 56px 0 32px;
}
.ac-footer a { color: rgba(255,255,255,.7); }
.ac-footer a:hover { color: var(--ac-green-400); }
.ac-footer h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.ac-footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 40px;
}
.ac-footer-links { list-style: none; display: grid; gap: 8px; }
.ac-footer-links li a { font-size: 14px; display: block; padding: 2px 0; }
.ac-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.ac-footer-logo { color: #fff; font-weight: 800; font-size: 18px; letter-spacing: .5px; }

/* ── Contact Form ── */
.ac-form { display: grid; gap: 16px; }
.ac-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ac-form label { display: block; font-size: 13px; font-weight: 700; color: var(--ac-text); margin-bottom: 6px; }
.ac-form input, .ac-form select, .ac-form textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--ac-border);
  border-radius: var(--ac-radius-sm); background: var(--ac-surface);
  font-family: var(--ac-font); font-size: 15px; color: var(--ac-text);
  outline: none; transition: all var(--ac-transition);
}
.ac-form input:focus, .ac-form select:focus, .ac-form textarea:focus {
  border-color: var(--ac-green-400); box-shadow: 0 0 0 3px rgba(24,166,106,.15);
}
.ac-form input::placeholder, .ac-form textarea::placeholder {
  color: var(--ac-text-muted);
}
.ac-form textarea { resize: vertical; min-height: 120px; }
.ac-form input[readonly] {
  background: var(--ac-surface-alt); color: var(--ac-text-secondary);
}

/* ── TEP Calculator specific ── */
.ac-calc-field {
  background: var(--ac-surface-alt); border: 1px solid var(--ac-border-light);
  border-radius: var(--ac-radius); padding: 20px;
}
.ac-calc-label { font-size: 14px; font-weight: 700; color: var(--ac-text); margin-bottom: 10px; display: block; }
.ac-calc-row { display: grid; grid-template-columns: 1fr 130px 150px; gap: 10px; }
.ac-calc-total {
  background: linear-gradient(135deg, var(--ac-green-50), var(--ac-green-100));
  border: 1.5px solid var(--ac-green-300); border-radius: var(--ac-radius);
  padding: 18px 24px; font-size: 20px; font-weight: 800; color: var(--ac-green-800);
}

/* ── Mobile Responsive ── */
@media (max-width: 1024px) {
  .ac-hero-grid { grid-template-columns: 1fr; }
  .ac-hero-visual { margin-top: 32px; }
  .ac-footer-grid { grid-template-columns: 1fr 1fr; }
  .ac-steps { grid-template-columns: repeat(3, 1fr); }
  .ac-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --ac-nav-height: 64px; }
  
  .ac-nav-links {
    display: none; position: fixed; top: var(--ac-nav-height); left: 0; right: 0;
    background: var(--ac-surface); border-bottom: 1px solid var(--ac-border);
    flex-direction: column; padding: 16px; gap: 2px;
    box-shadow: var(--ac-shadow-lg);
  }
  .ac-nav-links.open { display: flex; }
  .ac-nav-toggle { display: block; }
  .ac-dropdown-menu {
    position: static; transform: none; box-shadow: none;
    border: none; padding: 0 0 0 16px; opacity: 1; visibility: visible;
  }
  
  .ac-hero { padding: 48px 0 40px; }
  h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  
  .ac-grid-2, .ac-grid-3, .ac-grid-4 { grid-template-columns: 1fr; }
  .ac-steps { grid-template-columns: 1fr; }
  .ac-kpi-grid { grid-template-columns: 1fr; }
  .ac-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ac-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .ac-form-row { grid-template-columns: 1fr; }
  .ac-calc-row { grid-template-columns: 1fr; }
  .ac-section { padding: 48px 0; }
  .ac-card { padding: 20px; }
}

@media (max-width: 480px) {
  .ac-container { padding: 0 16px; }
  .ac-hero { padding: 32px 0; }
  .ac-btn { padding: 11px 18px; font-size: 13px; }
}

/* ── Scroll Animations ── */
.ac-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.ac-reveal.revealed {
  opacity: 1; transform: translateY(0);
}
.ac-reveal-delay-1 { transition-delay: .1s; }
.ac-reveal-delay-2 { transition-delay: .2s; }
.ac-reveal-delay-3 { transition-delay: .3s; }
.ac-reveal-delay-4 { transition-delay: .4s; }

/* ── WhatsApp Floating Button ── */
.ac-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 60px; height: 60px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
  transition: all .3s ease; animation: whatsappPulse 2s infinite;
}
.ac-whatsapp:hover {
  transform: scale(1.1); box-shadow: 0 6px 20px rgba(37,211,102,.5);
}
.ac-whatsapp svg { width: 32px; height: 32px; fill: #fff; }
@keyframes whatsappPulse {
  0%,100% { box-shadow: 0 4px 12px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
}

/* ── Stats / Social Proof Section ── */
.ac-stats {
  padding: 48px 0;
  background: linear-gradient(135deg, var(--ac-green-900), var(--ac-green-700));
  color: #fff;
}
.ac-stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center;
}
.ac-stat-item { padding: 8px 0; }
.ac-stat-num {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--ac-green-300); line-height: 1; margin-bottom: 8px;
}
.ac-stat-label { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 500; }

/* ── FAQ Accordion ── */
.ac-faq-item {
  border: 1px solid var(--ac-border-light); border-radius: var(--ac-radius);
  margin-bottom: 12px; overflow: hidden; background: var(--ac-surface);
}
.ac-faq-q {
  padding: 18px 24px; font-weight: 700; font-size: 15px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--ac-font); color: var(--ac-text); transition: all .2s;
}
.ac-faq-q:hover { background: var(--ac-green-50); }
.ac-faq-q::after {
  content: '+'; font-size: 20px; font-weight: 300;
  color: var(--ac-green-600); transition: transform .3s; flex-shrink: 0;
}
.ac-faq-item.open .ac-faq-q::after { transform: rotate(45deg); }
.ac-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px; color: var(--ac-text-secondary); font-size: 15px; line-height: 1.7;
}
.ac-faq-item.open .ac-faq-a { max-height: 300px; padding: 0 24px 18px; }

/* ── System Etüt Cards (improved) ── */
.ac-system-card {
  background: var(--ac-surface); border: 1px solid var(--ac-border-light);
  border-radius: var(--ac-radius); padding: 20px; text-align: center;
  text-decoration: none; transition: all var(--ac-transition);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.ac-system-card:hover {
  border-color: var(--ac-green-400); box-shadow: var(--ac-shadow); transform: translateY(-2px);
}
.ac-system-card h3 { font-size: 14px; color: var(--ac-text); }
.ac-system-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--ac-green-50); border: 1px solid var(--ac-green-200);
  display: grid; place-items: center; color: var(--ac-green-600); font-size: 18px;
}

/* ── Mobile Phone Bar ── */
.ac-phone-bar {
  display: none;
}
@media (max-width: 768px) {
  .ac-phone-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
    background: linear-gradient(135deg, var(--ac-green-700), var(--ac-green-600));
    padding: 12px 16px; display: flex; align-items: center;
    justify-content: center; gap: 8px; color: #fff;
    font-weight: 700; font-size: 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,.1);
  }
  .ac-phone-bar a { color: #fff; }
  .ac-phone-bar svg { width: 18px; height: 18px; fill: #fff; }
  .ac-whatsapp { bottom: 72px; }
  .ac-footer { padding-bottom: 60px; }
  .ac-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ── Trust Badges ── */
.ac-trust-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap; padding: 24px 0;
  border-bottom: 1px solid var(--ac-border-light);
}
.ac-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--ac-text-muted);
}
.ac-trust-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--ac-green-50); border: 1px solid var(--ac-green-200);
  display: grid; place-items: center; color: var(--ac-green-600); font-size: 16px;
}

/* ── Breadcrumb ── */
.ac-breadcrumb {
  padding: 12px 0; font-size: 13px; color: var(--ac-text-muted);
}
.ac-breadcrumb a { color: var(--ac-text-muted); }
.ac-breadcrumb a:hover { color: var(--ac-green-600); }

/* ── Print ── */
@media print {
  .ac-nav, .ac-footer, .ac-whatsapp, .ac-phone-bar { display: none; }
  .ac-page { padding-top: 0; }
  .ac-hero { background: none; }
}
