:root {
  --red: #e74c3c;
  --red-dark: #c0392b;
  --dark: #2c3e50;
  --dark-bar: #34495e;
  --text: #2c3e50;
  --muted: #7f8c8d;
  --bg-grey: #f5f5f5;
  --border: #e5e5e5;
  --bg: #fff;
  --card: #fff;
  --heading: #2c3e50;
}
[data-theme="dark"] {
  --dark: #0f1419;
  --dark-bar: #1a2332;
  --text: #e0e6ed;
  --muted: #8a99a8;
  --bg-grey: #1a2332;
  --border: #2c3e50;
  --bg: #0f1419;
  --card: #1a2332;
  --heading: #fff;
}
[data-theme="dark"] body { background: var(--bg); color: var(--text); }
[data-theme="dark"] .intro, [data-theme="dark"] .storitve, [data-theme="dark"] .why { background: var(--bg); }
[data-theme="dark"] .cenik, [data-theme="dark"] .zavarovalnice { background: var(--bg-grey); }
[data-theme="dark"] .section-title, [data-theme="dark"] .bar-heading, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] h4 { color: var(--heading); }
[data-theme="dark"] .price-table, [data-theme="dark"] .calc-box, [data-theme="dark"] .why-card, [data-theme="dark"] .zav-card, [data-theme="dark"] .icon-card, [data-theme="dark"] .insurance-names { background: var(--card); color: var(--text); }
[data-theme="dark"] .price-row, [data-theme="dark"] .price-head { border-color: var(--border); }
[data-theme="dark"] select, [data-theme="dark"] .calc-box select { background: var(--bg); color: var(--text); border-color: var(--border); }
.theme-toggle { background:none; border:1px solid rgba(255,255,255,0.3); color:#fff; padding:4px 10px; border-radius:4px; cursor:pointer; margin-left:10px; font-size:13px; }
.theme-toggle:hover { background:rgba(255,255,255,0.1); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* TOPBAR */
.topbar {
  background: var(--dark-bar);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}
.topbar-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; align-items: center; }
.topbar-right { display: flex; gap: 16px; align-items: center; }
.topbar strong { font-weight: 600; }
.lang-switch { display: flex; gap: 4px; }
.lang-switch button {
  background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #fff;
  font-size: 11px; padding: 3px 8px; border-radius: 3px; cursor: pointer;
  font-weight: 600; transition: all 0.2s;
}
.lang-switch button:hover { background: rgba(255,255,255,0.15); }
.lang-switch button.active { background: var(--red); border-color: var(--red); }

/* CALCULATOR */
.calc-box {
  max-width: 700px; margin: 50px auto 0;
  background: #fff; border: 2px solid var(--red); border-radius: 10px;
  padding: 30px;
}
.calc-box h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.calc-sub { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.calc-row label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; }
.calc-row select {
  padding: 10px 12px; border: 1px solid var(--border); border-radius: 4px;
  font-size: 14px; background: #fff;
}
.calc-result {
  background: var(--bg-grey); padding: 16px; border-radius: 6px;
  text-align: center; font-size: 16px;
}
.calc-result strong { color: var(--red); font-size: 24px; font-weight: 800; margin-left: 8px; }

/* NAVBAR */
.navbar { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; gap: 24px; }
.logo {
  font-size: 24px; font-weight: 800; letter-spacing: 0.06em;
  color: var(--dark);
}
.logo-red { color: var(--red); }
.navbar nav { display: flex; gap: 32px; }
.navbar nav a {
  font-size: 15px; font-weight: 500; color: var(--text);
  transition: color 0.2s; padding: 6px 0;
}
.navbar nav a:hover { color: var(--red); }
.btn-cta {
  background: var(--red); color: #fff;
  padding: 12px 24px; border-radius: 4px; font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; transition: background 0.2s;
}
.btn-cta:hover { background: var(--red-dark); }
.hamburger { display: none; background: none; border: none; font-size: 26px; cursor: pointer; }

/* HERO SLIDER */
.hero { position: relative; height: 540px; overflow: hidden; background: #1a1a1a; }
.slides { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }
.slide-content { text-align: center; max-width: 900px; padding: 0 24px; }
.slide-content h1 {
  background: rgba(44,62,80,0.85); color: #fff;
  display: inline-block; padding: 22px 38px;
  font-size: clamp(26px, 4vw, 44px); font-weight: 800;
  letter-spacing: 0.04em; line-height: 1.15;
  margin-bottom: 18px;
}
.hero-tag {
  display: inline-block; background: #fff; color: var(--dark);
  padding: 12px 26px; font-weight: 700; font-size: 15px;
  letter-spacing: 0.1em;
}
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.2); color: #fff; border: none;
  width: 50px; height: 50px; border-radius: 50%;
  font-size: 28px; cursor: pointer; transition: background 0.2s;
}
.slide-arrow:hover { background: rgba(255,255,255,0.4); }
.slide-arrow.left { left: 20px; }
.slide-arrow.right { right: 20px; }
.slide-dots {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px;
}
.dot {
  width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5);
  cursor: pointer; transition: background 0.2s;
}
.dot.active { background: var(--red); }

/* INTRO */
.intro { padding: 80px 0; background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.bar-heading {
  font-size: 32px; font-weight: 800; letter-spacing: 0.04em;
  padding-left: 16px; border-left: 4px solid var(--red);
  margin-bottom: 8px;
}
.subtitle { color: var(--red); font-weight: 600; font-size: 18px; margin-bottom: 22px; }
.lead { font-size: 15px; color: #555; line-height: 1.8; }

.icon-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.icon-card {
  background: #fff; border: 1px solid var(--border); border-radius: 6px;
  padding: 22px; display: flex; gap: 16px; align-items: flex-start;
  transition: all 0.2s;
}
.icon-card:hover { border-color: var(--red); transform: translateY(-2px); }
.icon-circle {
  width: 50px; height: 50px; border-radius: 50%;
  background: #fce8e6; color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.icon-circle svg { width: 24px; height: 24px; }
.icon-card h4 { font-size: 14px; font-weight: 800; letter-spacing: 0.05em; margin-bottom: 6px; }
.icon-card p { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ZAKAJ NAS */
.why { background: #fff; padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  background: var(--bg-grey); border-radius: 10px; padding: 28px 22px;
  text-align: center; transition: all 0.3s;
  border-top: 4px solid var(--red);
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.why-num {
  font-size: 44px; font-weight: 900; color: var(--red);
  line-height: 1; margin-bottom: 14px;
}
.why-card h4 { font-size: 14px; font-weight: 800; letter-spacing: 0.06em; margin-bottom: 10px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* CENIK */
.cenik { background: var(--bg-grey); padding: 80px 0; }
.section-title {
  text-align: center; font-size: 36px; font-weight: 800;
  letter-spacing: 0.05em; margin-bottom: 50px;
}
.section-title.light { color: #fff; }
.sub-title {
  text-align: left; font-size: 18px; font-weight: 800; letter-spacing: 0.06em;
  margin: 50px 0 16px; max-width: 700px; margin-left: auto; margin-right: auto;
}
.price-table {
  max-width: 700px; margin: 0 auto;
}
.price-head, .price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px;
}
.price-head {
  font-weight: 800; letter-spacing: 0.08em; font-size: 13px;
  border-bottom: 2px solid var(--red);
}
.price-row {
  border-bottom: 1px solid var(--border); font-size: 15px;
}
.price-row strong { color: var(--red); font-weight: 700; font-size: 16px; }
.price-note {
  text-align: center; color: var(--muted); font-size: 13px;
  margin-top: 24px; max-width: 700px; margin-left: auto; margin-right: auto; padding-left: 4px;
}

/* STORITVE */
.storitve { padding: 80px 0; background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  height: 260px; border-radius: 6px; overflow: hidden;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-4px); }
.service-info { padding: 22px; color: #fff; width: 100%; }
.service-info h3 {
  font-size: 18px; font-weight: 800; letter-spacing: 0.05em; margin-bottom: 6px;
}
.service-info p { font-size: 13px; opacity: 0.9; line-height: 1.5; }

/* ZAVAROVALNICE */
.zavarovalnice { padding: 80px 0; background: var(--bg-grey); text-align: center; }
.center-text { color: #555; max-width: 720px; margin: 0 auto 40px; font-size: 15px; line-height: 1.8; }
.logos-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.logos-row span {
  background: #fff; padding: 14px 28px; border: 1px solid var(--border);
  border-radius: 4px; font-weight: 700; letter-spacing: 0.1em;
  font-size: 14px; color: var(--dark);
}

/* ZAV CARDS */
.zav-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; margin-top: 30px; }
.insurance-names {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 18px 40px; margin: 35px 0 45px; padding: 30px 20px;
  background: #fff; border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.ins-name-pulse {
  font-family: 'Arial Black', sans-serif;
  font-weight: 900; font-size: 22px; letter-spacing: 0.12em;
  color: var(--c, var(--dark));
  animation: insPulse 2.4s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  transition: transform 0.3s;
}
.ins-name-pulse:hover { transform: scale(1.15); }
@keyframes insPulse {
  0%,100% { opacity: 0.55; text-shadow: none; }
  50% { opacity: 1; text-shadow: 0 0 12px var(--c); }
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.zav-card { text-align: center; padding: 20px; }
.zav-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: #fce8e6; color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 18px;
}
.zav-card h4 { font-size: 15px; font-weight: 800; letter-spacing: 0.06em; margin-bottom: 10px; }
.zav-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* CTA BAND */
.cta-band { background: var(--dark); padding: 70px 0; text-align: center; color: #fff; }
.cta-band h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  letter-spacing: 0.04em; margin-bottom: 30px;
}
.btn-large {
  display: inline-block; background: var(--red); color: #fff;
  padding: 18px 42px; font-weight: 800; letter-spacing: 0.08em;
  border-radius: 6px; transition: background 0.2s;
}
.btn-large:hover { background: var(--red-dark); }

/* KONTAKT */
.kontakt {
  padding: 90px 0; position: relative;
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  color: #fff;
}
.kontakt .section-title { color: #fff; }
.kontakt .section-title::after { background: var(--red); }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.kontakt-info {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 35px; border-radius: 10px;
}
.kontakt-lead { color: #cfd8dc; font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.info-line { display: flex; gap: 16px; align-items: center; margin-bottom: 20px; }
.info-ico {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(231,76,60,0.12); color: var(--red);
  border: 1px solid rgba(231,76,60,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.info-line small { font-size: 11px; font-weight: 800; letter-spacing: 0.12em; color: #ff8a7a; }
.info-line p { font-size: 16px; margin-top: 4px; color: #fff; font-weight: 600; }
.info-line a { color: #fff; text-decoration: none; }
.info-line a:hover { color: var(--red); }

.kontakt-form {
  background: #fff; padding: 35px; border-radius: 10px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.kontakt-form label { font-size: 13px; font-weight: 700; color: #1a2332; display: flex; flex-direction: column; gap: 6px; letter-spacing: 0.04em; }
.kontakt-form input, .kontakt-form select, .kontakt-form textarea {
  padding: 13px 14px; border: 1.5px solid #e0e0e0; border-radius: 6px;
  font-family: inherit; font-size: 14px; background: #fafafa; font-weight: 400;
  transition: all 0.2s;
}
.kontakt-form input:focus, .kontakt-form select:focus, .kontakt-form textarea:focus {
  outline: none; border-color: var(--red); background: #fff;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.15);
}
.btn-submit {
  background: var(--red); color: #fff; border: none;
  padding: 16px; font-weight: 800; letter-spacing: 0.1em; font-size: 14px;
  border-radius: 6px; cursor: pointer; transition: all 0.2s; margin-top: 10px;
  box-shadow: 0 4px 14px rgba(231,76,60,0.4);
}
.btn-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(231,76,60,0.5); }

/* FOOTER */
.footer { background: var(--dark); color: #b0bec5; padding: 50px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr 1.1fr 1.2fr; gap: 30px;
  padding-bottom: 40px;
}
.footer-map iframe {
  width: 100%; height: 160px; border: 0; border-radius: 6px;
  filter: grayscale(0.2); transition: filter 0.2s;
}
.footer-map iframe:hover { filter: grayscale(0); }
.footer h5 { color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer p { font-size: 14px; line-height: 1.8; margin-bottom: 6px; }
.footer a { color: #b0bec5; }
.footer a:hover { color: var(--red); }
.muted-sm { font-size: 13px; opacity: 0.7; margin-top: 12px; }
.footer-bottom {
  border-top: 1px solid #3d4d5c; padding: 20px 0;
  text-align: center; font-size: 13px; color: #7f9099;
}

/* TESTIMONIALS */
.testimonials { background: var(--bg); padding: 80px 0; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.testi-card {
  background: #fff; padding: 30px; border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06); border-top: 4px solid var(--red);
  transition: transform 0.25s, box-shadow 0.25s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,0.1); }
.testi-stars { color: #f5b301; font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-style: italic; color: #444; line-height: 1.7; margin-bottom: 14px; font-size: 15px; }
.testi-author { font-weight: 700; color: var(--dark); font-size: 14px; }

/* FAQ */
.faq { background: #fff; padding: 80px 0; }
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  background: var(--bg); border-radius: 8px; margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.faq-item summary {
  padding: 18px 22px; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--dark); font-size: 15px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--red); font-size: 22px; font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 22px 18px; color: #555; line-height: 1.7; font-size: 14.5px; margin: 0; }

[data-theme="dark"] .testi-card { background: #1e2a36; }
[data-theme="dark"] .testi-text { color: #d0d8df; }
[data-theme="dark"] .testi-author { color: #fff; }
[data-theme="dark"] .faq { background: #15202b; }
[data-theme="dark"] .faq-item { background: #1e2a36; border-color: #2d3a47; }
[data-theme="dark"] .faq-item summary { color: #fff; }
[data-theme="dark"] .faq-item p { color: #b0bec5; }

/* HERO SLIDE BACKGROUNDS (brand gradients) */
.slide-tires {
  background:
    radial-gradient(circle at 20% 30%, rgba(231,76,60,0.25), transparent 50%),
    linear-gradient(135deg, #1a242e 0%, #2c3e50 60%, #34495e 100%);
}
.slide-tires::before {
  content: '🛞'; position: absolute; right: 8%; top: 50%; transform: translateY(-50%);
  font-size: 280px; opacity: 0.12; pointer-events: none;
}
.slide-service {
  background:
    radial-gradient(circle at 80% 30%, rgba(231,76,60,0.3), transparent 55%),
    linear-gradient(135deg, #232f3e 0%, #2c3e50 60%, #1a242e 100%);
}
.slide-service::before {
  content: '🔧'; position: absolute; left: 8%; top: 50%; transform: translateY(-50%);
  font-size: 260px; opacity: 0.12; pointer-events: none;
}
.slide-paint {
  background:
    radial-gradient(circle at 30% 70%, rgba(231,76,60,0.35), transparent 55%),
    linear-gradient(135deg, #c0392b 0%, #2c3e50 60%, #1a242e 100%);
}
.slide-paint::before {
  content: '🎨'; position: absolute; right: 10%; top: 50%; transform: translateY(-50%);
  font-size: 260px; opacity: 0.15; pointer-events: none;
}
.slide { position: relative; }

/* SERVICE CARDS (gradients) */
.service-card {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #2c3e50 0%, #1a242e 100%);
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(0,0,0,0.25); }
.sc-paint { background: linear-gradient(135deg, #c0392b 0%, #2c3e50 100%); }
.sc-tires { background: linear-gradient(135deg, #34495e 0%, #1a242e 100%); }
.sc-insurance { background: linear-gradient(135deg, #2c3e50 0%, #c0392b 100%); }
.sc-mech { background: linear-gradient(135deg, #243748 0%, #c0392b 100%); }
.sc-brakes { background: linear-gradient(135deg, #c0392b 0%, #1a242e 100%); }
.sc-glass { background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%); }
.sc-icon {
  position: absolute; right: 18px; top: 18px; font-size: 90px;
  opacity: 0.18; pointer-events: none; line-height: 1;
}

/* FLOATING ACTION BUTTONS */
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
.fab {
  position: fixed; right: 22px; width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff; text-decoration: none; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25); z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
}
.fab:hover { transform: scale(1.1); box-shadow: 0 8px 26px rgba(0,0,0,0.3); }
.fab-call { background: var(--red); bottom: 22px; }
.fab-wa { background: #25d366; bottom: 88px; }
.fab-top { background: var(--dark); bottom: 154px; opacity: 0; pointer-events: none; }
.fab-top.show { opacity: 1; pointer-events: auto; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .topbar-inner { justify-content: center; }
  .intro-grid, .services-grid, .kontakt-grid { grid-template-columns: 1fr; }
  .icon-cards { grid-template-columns: 1fr; }
  .navbar nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 18px 24px;
    border-bottom: 1px solid var(--border); gap: 14px;
  }
  .navbar nav.open { display: flex; }
  .hamburger { display: block; }
  .btn-cta { display: none; }
  .hero { height: 380px; }
  .slide-content h1 { padding: 16px 22px; font-size: 22px; }
}

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