/* ============================================
   ELS ROHRREINIGUNG — styles.css
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #1a56db;
  --orange-dark: #1446c0;
  --dark: #0a1f44;
  --dark2: #0f2a5e;
  --text: #334155;
  --muted: #64748b;
  --light: #f0f5ff;
  --white: #ffffff;
  --border: #d0dff5;
  --sky: #0ea5e9;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --font: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── SECTION LABELS ── */
.section-label {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label.centered { text-align: center; }
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-title.centered { text-align: center; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
}
.topbar-items { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; }
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item.highlight { color: var(--orange); font-weight: 600; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.nav-logo strong { color: var(--orange); }
.logo-img { height: 40px; width: auto; display: block; object-fit: contain; }
.logo-img--footer { height: 36px; filter: brightness(0) invert(1); }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { flex-shrink: 0; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: url('images/header.png') center center / 100% 100% no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,15,30,0.25) 30%, rgba(0,0,0,0.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  max-width: 640px;
  margin-left: max(24px, calc((100vw - 1200px)/2 + 24px));
}
.hero-tagline {
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-avatars {
  display: flex;
}
.trust-avatars img {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
}
.trust-avatars img:first-child { margin-left: 0; }
.trust-text {
  display: flex;
  flex-direction: column;
  color: var(--white);
}
.trust-text strong { font-size: 1.1rem; font-weight: 800; }
.trust-text span { font-size: 0.82rem; opacity: 0.75; }
.hero-badge {
  position: absolute;
  bottom: 40px;
  right: max(24px, calc((100vw - 1200px)/2 + 24px));
  z-index: 2;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ============================================
   QUICK BOOK
   ============================================ */
.quickbook {
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.quickbook-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.quickbook-text {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.quickbook-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--dark);
}
.quickbook-text span { font-size: 0.85rem; color: var(--muted); }
.quickbook-form {
  display: flex;
  gap: 12px;
  flex: 1;
  flex-wrap: wrap;
}
.quickbook-form input {
  flex: 1;
  min-width: 180px;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.quickbook-form input:focus { border-color: var(--orange); }
.quickbook-form input::placeholder { color: var(--muted); }

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/3;
}
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 100%;
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-image-badge strong { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.about-image-badge span { font-size: 0.78rem; font-weight: 600; opacity: 0.9; }
.about-tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
}
.tab-btn {
  background: none;
  border: none;
  padding: 10px 20px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  margin-bottom: -2px;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.tab-btn.active { color: var(--orange); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-content p { color: var(--text); margin-bottom: 20px; line-height: 1.75; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
.check-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 100px 0; background: var(--light); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}
.services-nav { padding: 8px 0; border-right: 1px solid var(--border); }
.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.service-item svg { opacity: 0.4; transition: opacity 0.2s; flex-shrink: 0; }
.service-item:hover { color: var(--dark); background: var(--light); }
.service-item.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: #eef3ff;
}
.service-item.active svg { opacity: 1; stroke: var(--orange); }
.services-panel { position: relative; min-height: 520px; }
.service-panel {
  display: none;
  position: absolute;
  inset: 0;
}
.service-panel.active { display: block; }
.service-panel img { width: 100%; height: 100%; object-fit: cover; }
.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.92) 40%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--white);
}
.panel-overlay h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 10px; }
.panel-overlay p { font-size: 0.9rem; opacity: 0.85; margin-bottom: 20px; max-width: 420px; line-height: 1.65; }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--white);
  padding: 96px 0;
}

.why-header {
  text-align: center;
  margin-bottom: 64px;
}
.why-header .section-title { margin-bottom: 0; }

/* Two-column layout: image left, features right */
.why-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Feature list */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 58px; height: 58px;
  background: rgba(26,86,219,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.why-feature-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.why-feature-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews { padding: 100px 0; background: var(--light); }
.reviews-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: start;
}
.reviews-score {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: 88px;
  box-shadow: var(--shadow);
}
.reviews-score .section-label { margin-bottom: 20px; }
.score-number {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.score-stars {
  color: #f59e0b;
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.score-count {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.score-cta { width: 100%; justify-content: center; border-radius: var(--radius); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-header > div:nth-child(2) { flex: 1; }
.review-header strong { display: block; font-size: 0.9rem; color: var(--dark); font-weight: 700; }
.review-header span { font-size: 0.78rem; color: var(--muted); }
.review-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 1px; margin-left: auto; align-self: flex-start; }
.review-card > p { font-size: 0.88rem; color: var(--text); line-height: 1.7; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 0; }

/* CTA banner */
.footer-cta {
  padding: 52px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
}
.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 16px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.btn-cta-call:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* Main grid */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 60px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; display: inline-block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; max-width: 280px; }

/* Social icons */
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }

/* Links columns */
.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 22px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.footer-links a { font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

/* Contact items */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--orange); }
.footer-contact-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  padding: 22px 24px;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.5;
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: #16a34a;
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-image { max-width: 100%; aspect-ratio: 16/9; }
  .about-image-badge { bottom: -16px; right: 16px; }
  .why-body { grid-template-columns: 1fr; gap: 48px; }
  .why-image { aspect-ratio: 16/9; }
  .reviews-top { grid-template-columns: 220px 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {

  /* Global section rhythm */
  .about, .services, .reviews { padding: 72px 0; }

  /* TOPBAR — show only phone + 24/7 on mobile */
  .topbar-item:nth-child(2),
  .topbar-item:nth-child(3) { display: none; }
  .topbar-items { justify-content: center; gap: 24px; }
  .topbar-inner { justify-content: center; }

  /* NAVBAR */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { gap: 0; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 8px 0 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    gap: 0;
    z-index: 99;
  }
  .nav-links.open a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open a::after { display: none; }

  /* HERO */
  .hero {
    min-height: 100svh;
    align-items: flex-end;
    background-size: cover;
    background-position: center center;
  }
  .hero-overlay { background: linear-gradient(to top, rgba(10,20,44,0.88) 45%, rgba(0,0,0,0.18) 100%); }
  .hero-content {
    padding: 0 20px 64px;
    margin-left: 0;
    max-width: 100%;
    width: 100%;
  }
  .hero-title { font-size: 2.1rem; line-height: 1.15; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-cta-group { flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }
  .hero-badge { display: none; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { aspect-ratio: 4/3; overflow: visible; }
  .about-image-badge { bottom: -14px; right: 14px; padding: 14px 20px; }
  .about-image-badge strong { font-size: 1.4rem; }
  .check-list { grid-template-columns: 1fr; gap: 10px; }
  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }

  /* SERVICES — accordion on mobile */
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .services-header .btn { width: 100%; justify-content: center; }
  .services-grid { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
  .services-nav { display: flex; flex-direction: column; border-right: none; }
  .services-panel { display: none; }

  .service-item {
    border-left: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
    font-size: 0.97rem;
    white-space: normal;
    justify-content: space-between;
    position: relative;
  }
  .service-item::after {
    content: '';
    width: 18px; height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
    transition: transform 0.25s;
  }
  .service-item.active { color: var(--orange); border-left: none; background: #eef3ff; }
  .service-item.active::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a56db' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    transform: rotate(180deg);
  }
  .service-item svg:first-child { display: none; }

  .accordion-body { display: none; background: var(--dark); overflow: hidden; }
  .accordion-body.open { display: block; }
  .accordion-body img { width: 100%; height: 210px; object-fit: cover; display: block; }
  .accordion-body-text { padding: 24px 20px; color: var(--white); }
  .accordion-body-text p { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; margin-bottom: 18px; }
  .accordion-body-text .btn { border-radius: var(--radius); }

  /* WHY US */
  .why-us { padding: 60px 0; }
  .why-header { margin-bottom: 40px; }
  .why-body { grid-template-columns: 1fr; gap: 32px; }
  .why-image { aspect-ratio: 4/3; }
  .why-features { gap: 28px; }
  .why-feature { gap: 14px; }
  .why-feature-icon { width: 48px; height: 48px; }
  .why-feature-text h3 { font-size: 0.97rem; }
  .why-feature-text p { font-size: 0.87rem; }

  /* REVIEWS */
  .reviews-top { grid-template-columns: 1fr; gap: 36px; }
  .reviews-score { position: static; text-align: center; padding: 32px 24px; }
  .reviews-score .section-label { text-align: center; }
  .score-number { font-size: 3rem; }
  .score-cta { width: 100%; justify-content: center; margin-top: 4px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
  .review-card { padding: 20px; }

  /* FOOTER */
  .footer-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-cta { padding: 36px 0; }
  .footer-cta-inner h2 { font-size: 1.4rem; }
  .btn-cta-call { width: 100%; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 0 32px; }
  .footer-brand p { max-width: 100%; }
}

/* ============================================
   RESPONSIVE — SMALL PHONES
   ============================================ */
@media (max-width: 380px) {
  .hero-title { font-size: 1.85rem; }
  .section-title { font-size: 1.4rem; }
  .nav-logo span { font-size: 1rem; }
  .why-features { gap: 22px; }
  .footer-cta-inner h2 { font-size: 1.25rem; }
  .footer-contact-item { font-size: 0.82rem; }
}
