/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --white:       #FFFFFF;
  --bg-light:    #EFF8FF;
  --primary:     #0284C7;
  --primary-dk:  #0369A1;
  --primary-lt:  #BAE6FD;
  --accent:      #059669;
  --accent-dk:   #047857;
  --text:        #0F172A;
  --text-muted:  #64748B;
  --border:      #E2E8F0;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 16px rgba(2,132,199,.10);
  --shadow-lg:   0 12px 40px rgba(2,132,199,.14);
  --radius-card: 16px;
  --radius-btn:  12px;
  --radius-pill: 50px;
  --section-pad: 96px;
  --font:        'Plus Jakarta Sans', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,h2,h3,h4 { line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

em { font-style: italic; color: var(--primary); }

.section-label {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title { margin-bottom: 16px; }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 56px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--primary-dk);
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--primary);
  transition: background .2s, transform .18s;
}
.btn-outline:hover {
  background: var(--bg-light);
  transform: scale(1.02);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(6px);
  transition: background .2s, transform .18s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.25);
  transform: scale(1.02);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 32px));
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  padding: 20px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-content { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; width: 100%; }
.cookie-content p { flex: 1; min-width: 200px; font-size: .88rem; color: var(--text-muted); }
.cookie-content a { color: var(--primary); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btns .btn-primary,
.cookie-btns .btn-outline { padding: 9px 18px; font-size: .84rem; }

/* ============================================================
   MODALS
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.55);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  width: min(480px, 100%);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-box h3 { font-size: 1.35rem; margin-bottom: 8px; }
.modal-sub { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: var(--border); }

.modal-form-box { max-width: 500px; }

.cookie-option { margin-bottom: 16px; }
.cookie-option label { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; margin-bottom: 4px; }
.cookie-option p { font-size: .82rem; color: var(--text-muted); padding-left: 24px; }

/* Form Success Box */
.form-success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 20px;
  text-align: center;
  color: var(--accent);
}
.success-icon {
  width: 56px; height: 56px;
  background: #D1FAE5;
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.form-success-box p { color: var(--text); font-weight: 600; font-size: 1rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 800; color: var(--text);
  white-space: nowrap;
}
.nav-logo span { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 600;
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--primary); background: var(--bg-light); }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: var(--radius-btn) !important;
  padding: 9px 20px !important;
}
.nav-cta:hover {
  background: var(--primary-dk) !important;
  color: var(--white) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px; width: 32px; padding: 4px;
}
.burger span {
  display: block; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ============================================================
   SECTION 1: WHY US
   ============================================================ */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
  text-align: center;
}
.why-us .section-label,
.why-us .section-title,
.why-us .section-sub { text-align: center; }
.why-us .section-sub { margin: 0 auto 56px; }

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow .25s, border-left .25s;
  border-left: 4px solid transparent;
}
.why-card:hover {
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--primary);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   SECTION 2: HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,73,110,.85) 0%, rgba(5,150,105,.55) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(6px);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #34D399;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:.6; transform: scale(1.3); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}
.hero-accent { color: #6EE7B7; }
.hero-desc {
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   SECTION 3: PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.phil-text .section-label { display: block; }
.phil-text h2 { margin-bottom: 20px; }
.phil-text p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.75; }
.phil-text .btn-primary { margin-top: 8px; }

.phil-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: visible;
}
.phil-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
}
.phil-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-card);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.phil-badge-num { font-size: 2rem; font-weight: 800; line-height: 1; }
.phil-badge-lbl { font-size: .75rem; font-weight: 600; opacity: .85; margin-top: 4px; }

/* ============================================================
   SECTION 4: STATS
   ============================================================ */
.stats {
  padding: 64px 0;
  background: var(--primary);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 24px 16px;
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-suffix {
  font-size: 1rem;
  color: var(--primary-lt);
  font-weight: 600;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  font-weight: 500;
}
.stats .stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
}

/* ============================================================
   SECTION 5: SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}
.services .section-title,
.services .section-sub,
.services .section-label { text-align: center; }
.services .section-sub { margin: 0 auto 72px; }

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.service-row:last-child { margin-bottom: 0; }
.service-row-reverse { direction: rtl; }
.service-row-reverse > * { direction: ltr; }

.service-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-img:hover img { transform: scale(1.04); }

.service-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--primary);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--primary-lt);
  margin-bottom: 14px;
}
.service-text h3 { font-size: 1.75rem; margin-bottom: 14px; }
.service-text p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.75; }

.service-list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
}
.service-list li::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.price-from { font-size: .82rem; color: var(--text-muted); font-weight: 500; }
.price-amount { font-size: 1.8rem; font-weight: 800; color: var(--primary); }

/* ============================================================
   SECTION 6: FAQ
   ============================================================ */
.faq-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.faq-section .section-title,
.faq-section .section-label { text-align: center; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow .2s, border-left .2s;
  border-left: 4px solid transparent;
}
.faq-item:hover {
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}
.faq-item.open {
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 22px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: transparent;
  transition: background .15s;
}
.faq-q:hover { background: var(--bg-light); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--bg-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 400;
  transition: transform .25s, background .2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 22px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 22px 20px;
}
.faq-a p {
  color: var(--text-muted);
  font-size: .9rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   SECTION 7: CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--bg-light);
}
.contact .section-title,
.contact .section-label,
.contact .section-sub { text-align: center; }
.contact .section-sub { margin: 0 auto 56px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 0; }

.info-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:first-child { padding-top: 0; }
.info-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.info-label { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.info-value { font-size: .95rem; font-weight: 500; line-height: 1.55; }
.info-value a { color: var(--primary); }
.info-value a:hover { text-decoration: underline; }

.contact-map {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* Contact form box */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.contact-form-box h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-box > p { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.optional { color: var(--text-muted); font-weight: 400; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(2,132,199,.12);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Modal form */
.request-form { display: flex; flex-direction: column; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-cta-strip {
  background: var(--primary);
  padding: 56px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-inner h3 { color: var(--white); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; }
.footer-cta-inner em { color: #BAE6FD; }
.footer-cta-inner .btn-primary {
  background: var(--white);
  color: var(--primary);
  flex-shrink: 0;
}
.footer-cta-inner .btn-primary:hover { background: var(--bg-light); }

.footer {
  background: #0F172A;
  color: rgba(255,255,255,.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.15rem; font-weight: 800; color: var(--white);
  margin-bottom: 16px;
}
.footer-brand p { font-size: .87rem; line-height: 1.7; margin-bottom: 10px; }
.disclaimer { font-size: .78rem !important; opacity: .6; }
.footer-links h4 { color: var(--white); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--white); }
.cookie-pref-btn {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  transition: color .2s, border-color .2s;
}
.cookie-pref-btn:hover { color: var(--white); border-color: rgba(255,255,255,.4); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-cards { grid-template-columns: 1fr 1fr; }
  .service-row { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

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

  /* Navbar mobile */
  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    max-height: 0;
    overflow: hidden;
    gap: 4px;
    transition: max-height .35s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; width: 100%; padding: 11px 16px; border-radius: 10px; }
  .nav-cta { text-align: center; }

  /* Why us */
  .why-cards { grid-template-columns: 1fr; }

  /* Philosophy */
  .phil-grid { grid-template-columns: 1fr; gap: 40px; }
  .phil-image img { height: 280px; }
  .phil-badge { bottom: -14px; right: -10px; }

  /* Stats */
  .stats-grid { gap: 0; }
  .stat-item { min-width: 140px; padding: 20px 10px; }
  .stats .stat-divider { display: none; }

  /* Services */
  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
  }
  .service-row-reverse > * { direction: ltr; }
  .service-img img { height: 260px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-top: 48px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Cookie banner */
  .cookie-banner { bottom: 12px; padding: 16px; }
  .cookie-btns { flex-direction: column; width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions a { text-align: center; justify-content: center; }
  .stat-number { font-size: 2.2rem; }
  .modal-box { padding: 24px 20px; }
}
