:root {
  --red: #b83232;
  --red-dim: rgba(184,50,50,0.12);
  --red-glow: rgba(184,50,50,0.22);
  --dark: #0a0a0a;
  --card: #111111;
  --border: rgba(255,255,255,0.07);
  --text: #c8c8c8;
  --white: #ffffff;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 16px;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--red); }

/* Three-column desktop layout: logo | flex:1 centered links | CTA */
.nav-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.nav-center a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-center a:hover { color: var(--white); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: var(--red);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s;
}
.nav-cta:hover { background: #c93c3c; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.8) 60%, var(--dark) 100%),
    url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 40px, rgba(184,50,50,0.03) 40px, rgba(184,50,50,0.03) 41px);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 860px;
  animation: heroIn 1s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block;
  width: 32px; height: 1px;
  background: var(--red);
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(56px, 10vw, 108px);
  font-weight: 800;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 28px;
}
.hero h1 em { font-style: normal; color: var(--red); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; transition: .25s ease; cursor: pointer;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 8px 30px var(--red-glow); }
.btn-primary:hover { background: #c93c3c; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.hero-badge {
  margin-top: 52px;
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 50px; padding: 10px 24px;
  font-size: 14px; color: var(--text);
}
.hero-badge .stars { color: #ffd166; letter-spacing: 2px; font-size: 16px; }
.hero-badge strong { color: var(--white); }

/* ── STATS ── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0e0e0e;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 36px 20px; text-align: center; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 46px; font-weight: 800;
  color: var(--red); line-height: 1;
}
.stat-label { font-size: 12px; color: var(--text); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* ── SECTIONS ── */
.section { max-width: 1160px; margin: 0 auto; padding: 100px 24px; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px); font-weight: 800;
  text-transform: uppercase; line-height: 1.05; margin-bottom: 20px;
}
.section-sub { color: var(--text); max-width: 600px; margin-bottom: 60px; font-size: 17px; line-height: 1.75; }

/* ── ABOUT ── */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text { font-size: 17px; color: var(--text); line-height: 1.8; }
.about-text p { margin-bottom: 18px; }
.about-text p:last-child { margin-bottom: 0; }
.about-image { border-radius: 20px; overflow: hidden; position: relative; }
.about-image img { width: 100%; display: block; filter: brightness(.85) contrast(1.05); border-radius: 20px; }
.about-image::after { content: ''; position: absolute; inset: 0; border-radius: 20px; border: 1px solid var(--border); }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  transition: .3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0);
  transition: transform .3s ease; transform-origin: left;
}
.service-card:hover { border-color: rgba(184,50,50,0.3); transform: translateY(-4px); background: #141414; }
.service-card:hover::before { transform: scaleX(1); }
.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px;
}
.service-card p { font-size: 15px; color: var(--text); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-section { background: #0e0e0e; }
.reviews-section .section { padding-bottom: 80px; }
.reviews-slider-wrap { position: relative; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.review-page {
  min-width: 100%; display: grid; gap: 20px; flex-shrink: 0;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.review-page.cols-2 { grid-template-columns: repeat(2, 1fr); }
.review-page.cols-1 { grid-template-columns: 1fr; }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  display: flex; flex-direction: column;
}
.review-stars { color: #ffd166; font-size: 18px; letter-spacing: 2px; margin-bottom: 18px; }
.review-card p { font-size: 16px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 24px; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--red-dim); border: 1px solid rgba(184,50,50,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--red); flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 15px; }
.review-source { font-size: 12px; color: #666; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #1a1a1a; border: 1px solid var(--border);
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .25s; font-size: 18px;
}
.slider-btn:hover { background: var(--red); border-color: var(--red); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: #333; cursor: pointer; transition: .25s; border: none; }
.slider-dot.active { background: var(--red); transform: scale(1.3); }

/* ── GUARANTEE ── */
.services-guarantee {
  margin-top: 36px;
  background: var(--card);
  border: 1px solid rgba(184,50,50,0.25);
  border-left: 3px solid var(--red);
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}
.guarantee-icon {
  font-size: 28px;
  color: var(--red);
  font-weight: 800;
  flex-shrink: 0;
}
.services-guarantee strong { color: var(--white); }

/* ── CTA ── */
.cta-inner {
  background:
    linear-gradient(rgba(10,10,10,0.72), rgba(10,10,10,0.82)),
    url('https://pics.vwgroup.se/prod/FKP72X/FKP72X.jpg') center 40%/cover no-repeat;
  border-radius: 24px; padding: 80px 48px; text-align: center;
  border: 1px solid var(--border); max-width: 1160px; margin: 0 auto;
}
.cta-inner h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6vw, 70px); font-weight: 800;
  text-transform: uppercase; line-height: 1; margin-bottom: 28px;
}
.cta-inner h2 em { font-style: normal; color: var(--red); }
.cta-details { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 40px; }
.cta-detail { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.cta-detail-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--red); }
.cta-detail-value { font-size: 18px; font-weight: 500; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  background: #080808;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-logo span { color: var(--red); }

.footer-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: #aaa;
}
.footer-info svg { flex-shrink: 0; color: var(--red); }

.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--white); }

.footer-hours {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}
.footer-hours > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  font-size: 14px;
  color: #aaa;
}
.footer-hours dt { }
.footer-hours dd { text-align: right; }
.footer-hours .closed { color: #555; }

.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: 1160px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #555;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes heroIn {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */

/* ── ≤900px  Tablet + mobile ── */
@media (max-width: 900px) {

  /* Sticky so the open dropdown extends the nav in document flow,
     pushing page content down instead of overlaying it.
     flex-wrap lets .nav-center become a second full-width row. */
  nav {
    position: sticky;
    top: 0;
    height: auto;
    min-height: 68px;
    flex-wrap: wrap;
    padding: 0 20px;
    gap: 0;
    justify-content: space-between;
    align-items: center;
  }

  /* Logo left, hamburger right — both in the first flex row */
  .nav-logo {
    order: 1;
    flex-shrink: 0;
  }

  .hamburger {
    order: 2;
    display: flex;
  }

  /* Nav links: hidden by default, full-width second row when open */
  .nav-center {
    order: 3;
    flex: none;
    flex-basis: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 8px 0 12px;
    border-top: 1px solid var(--border);
  }
  .nav-center.open { display: flex; }

  .nav-center a {
    padding: 13px 24px;
    font-size: 14px;
    width: 100%;
    text-align: center;
  }

  /* Ring Nu: hidden in the top bar; shown as a third row via the
     adjacent-sibling selector when the dropdown opens */
  .nav-cta {
    order: 4;
    flex-basis: 100%;
    display: none;
    width: 100%;
    margin: 4px 0 12px;
    padding: 13px 20px;
    border-radius: 0;
    text-align: center;
    justify-content: center;
  }
  .nav-center.open + .nav-cta { display: block; }

  /* Hero: sticky nav is in document flow, reduce top padding */
  .hero {
    padding-top: 60px;
    min-height: calc(100vh - 68px);
  }

  .section { padding: 72px 20px; }

  /* Stats: 2 × 2 */
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--border); }

  .about-layout { grid-template-columns: 1fr; }
  .about-image {
    display: block;
    width: 100%;
    margin-top: 32px;
    border-radius: 16px;
  }

  .services-grid { grid-template-columns: 1fr; }
  .services-guarantee { flex-direction: column; gap: 12px; }

  .review-page { grid-template-columns: 1fr !important; }

  .cta-inner { padding: 60px 28px; }
  .cta-details { gap: 28px; }

  #kontakt { padding: 72px 20px !important; }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 36px;
    text-align: center;
  }
  .footer-info li { justify-content: center; }
  .footer-hours > div { justify-content: center; }
  .footer-bottom { padding: 16px 24px; justify-content: center; text-align: center; }
}

/* ── ≤768px  Large phones ── */
@media (max-width: 768px) {
  .hero { padding-top: 48px; }
  .section { padding: 64px 20px; }

  .hero-badge { flex-wrap: wrap; justify-content: center; }

  .cta-inner { padding: 52px 24px; }
  .cta-details { flex-direction: column; align-items: center; gap: 20px; }

  #kontakt { padding: 64px 20px !important; }
}

/* ── ≤480px  Small phones ── */
@media (max-width: 480px) {
  nav { padding: 0 16px; }
  .nav-logo { font-size: 14px; letter-spacing: 0.5px; }

  .hero {
    padding: 36px 16px 48px;
    min-height: calc(100vh - 68px);
  }
  .hero h1 { font-size: clamp(42px, 13vw, 68px); }
  .hero-sub { font-size: 15px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn { justify-content: center; }
  .hero-badge { padding: 8px 14px; font-size: 12px; gap: 8px; margin-top: 32px; }

  .section { padding: 56px 16px; }
  .section-title { font-size: clamp(30px, 9vw, 44px); }

  .stat { padding: 22px 10px; }
  .stat-number { font-size: 34px; }
  .stat-label { font-size: 11px; }

  .service-card { padding: 28px 20px; }

  .review-card { padding: 24px 20px; }

  .cta-inner { padding: 40px 20px; border-radius: 16px; }
  .cta-detail-value { font-size: 15px; }
  #kontakt { padding: 48px 16px !important; }

  .btn { padding: 13px 22px; font-size: 14px; }

  .footer-inner { padding: 40px 16px 28px; gap: 28px; }
  .footer-bottom { padding: 14px 16px; flex-direction: column; gap: 4px; }
}
