/* ============================================================
   DESIGN TOKENS - TEAL + CORAL + CREAM PALETTE
   ============================================================ */
:root {
  --white:       #FFFFFF;
  --cream:       #FEF9F3;
  --primary:     #0D9488;
  --primary-dk:  #0F766E;
  --primary-lt:  #CCFBF1;
  --accent:      #F56565;
  --accent-dk:   #E53E3E;
  --text:        #0F172A;
  --text-muted:  #64748B;
  --border:      #D7C3B1;
  --shadow-sm:   0 1px 3px rgba(13,148,136,.08), 0 1px 2px rgba(13,148,136,.06);
  --shadow-md:   0 4px 16px rgba(13,148,136,.10);
  --shadow-lg:   0 12px 40px rgba(13,148,136,.14);
  --radius-card: 18px;
  --radius-btn:  14px;
  --radius-pill: 50px;
  --section-pad: 110px;
  --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(--cream);
  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 32px;
}

/* ============================================================
   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(2rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

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

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white);
  z-index: 9999;
  padding: 24px 32px;
  box-shadow: 0 -6px 24px rgba(13,148,136,0.15);
}
.cookie-content { max-width: 1000px; margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cookie-content p { flex: 1; font-size: 14px; color: rgba(255,255,255,0.95); }
.cookie-content a { color: var(--white); font-weight: 600; text-decoration: underline; }
.cookie-btns { display: flex; gap: 16px; flex-shrink: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.7);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.modal-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 18px;
  padding: 48px;
  max-width: 520px;
  width: 90%;
  box-shadow: 0 32px 64px rgba(13,148,136,0.12);
  position: relative;
}
.modal-form-box { padding: 52px 48px; }
.modal-box h3 { font-size: 28px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.modal-sub { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.cookie-option { margin-bottom: 20px; }
.cookie-option label { display: flex; align-items: center; gap: 12px; font-weight: 600; cursor: pointer; color: var(--text); }
.cookie-option label input { width: 18px; height: 18px; cursor: pointer; accent-color: var(--primary); }
.cookie-option p { font-size: 13px; color: var(--text-muted); margin-top: 6px; padding-left: 30px; }

.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }

.request-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.request-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.request-form label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.request-form input,
.request-form textarea {
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}
.btn-full { width: 100%; text-align: center; }
.optional { font-size: 12px; font-weight: 400; color: var(--text-muted); text-transform: none; letter-spacing: 0; }

.form-success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 32px;
  text-align: center;
}
.success-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  font-weight: bold;
}
.form-success-box p { font-size: 16px; color: var(--text); font-weight: 500; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white);
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font);
  letter-spacing: 0.4px;
  box-shadow: 0 6px 20px rgba(13,148,136,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(13,148,136,0.35);
}

.btn-outline {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font);
}
.btn-outline:hover {
  background: var(--primary-lt);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  background: rgba(13,148,136,0.08);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: var(--radius-btn);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid var(--primary-lt);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: var(--font);
}
.btn-ghost:hover {
  background: var(--primary-lt);
  transform: translateY(-2px);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.btn-link:hover {
  color: var(--accent);
}

.btn-large { padding: 18px 52px; font-size: 16px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(254,249,243,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 76px;
  box-shadow: 0 2px 12px rgba(13,148,136,0.08);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%) !important;
  color: var(--white) !important;
  padding: 12px 28px;
  border-radius: var(--radius-btn);
  font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 12px rgba(13,148,136,0.25) !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(13,148,136,0.35) !important;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 44px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-links a:not(.nav-cta):hover { color: var(--primary); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 76px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(254,249,243,0.88) 0%, rgba(254,249,243,0.72) 45%, rgba(254,249,243,0.40) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(13,148,136,0.12);
  border: 2px solid var(--primary-lt);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1.2px;
  color: var(--text);
}
.hero-accent { color: var(--accent); font-weight: 800; }
.hero-desc {
  font-size: 17px;
  margin-bottom: 36px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 16px;
  color: var(--text);
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.why-card {
  padding: 40px 32px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
}
.why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(13,148,136,0.12) 0%, rgba(245,101,101,0.08) 100%);
  border: 2px solid var(--primary-lt);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 20px;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.why-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.phil-text .section-label { display: block; }
.philosophy h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
  color: var(--text);
}
.phil-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.phil-text p:last-of-type { margin-bottom: 32px; }
.phil-image {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
}
.phil-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-card);
}
.phil-badge {
  position: absolute;
  bottom: 20px; right: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(13,148,136,0.25);
  text-align: center;
}
.phil-badge-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
}
.phil-badge-lbl {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dk) 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-divider {
  height: 60px;
  background: rgba(255,255,255,0.2);
  margin: auto 0;
}
.stat-item {
  padding: 20px 24px;
}
.stat-number {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -2px;
  color: var(--white);
}
.stat-suffix {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-label {
  font-size: 15px;
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-top: 4px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--section-pad) 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
  margin-top: 68px;
}
.service-row:first-of-type { margin-top: 68px; }
.service-row--reverse {
  direction: rtl;
}
.service-row--reverse > * {
  direction: ltr;
}
.service-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  height: 360px;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-row:hover .service-img img {
  transform: scale(1.06);
}
.service-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,101,101,0.1);
  border: 2px solid var(--accent);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.service-text h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
}
.service-text ul {
  list-style: none;
  margin: 0 0 22px 0;
}
.service-text ul li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}
.service-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--primary);
  font-size: 16px;
}
.service-price {
  margin: 20px 0 24px 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.faq-item {
  padding: 36px 32px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.faq-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}
.faq-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.faq-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 52px;
}
.contact-item {
  text-align: center;
  padding: 40px 32px;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-card);
  transition: border-color 0.2s;
}
.contact-item:hover {
  border-color: var(--primary);
}
.contact-icon {
  font-size: 40px;
  margin-bottom: 16px;
}
.contact-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.contact-item p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-item a {
  color: var(--primary);
  font-weight: 700;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: var(--accent);
}

.map-wrap {
  margin-bottom: 52px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid var(--border);
}

.contact-cta {
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding-top: 80px;
}
.footer-logo {
  color: var(--primary-lt);
  margin-bottom: 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 12px;
}
.footer-brand .disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}
.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
  position: relative;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--primary-lt);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-pref-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font);
}
.cookie-pref-btn:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .why-cards { grid-template-columns: 1fr; gap: 24px; }
  .phil-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-row { grid-template-columns: 1fr; gap: 32px; }
  .service-row--reverse { direction: ltr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 28px; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .hero { margin-top: 76px; padding: 0; }
  .hero-title { font-size: 2rem; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 14px 28px;
    font-size: 14px;
  }
  .nav-links li a::after { display: none; }
  .burger { display: flex; }
  .modal-box { padding: 40px 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .service-row { margin-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-large { padding: 16px 32px; }
  .contact-item { padding: 32px 24px; }
}
