/**
 * GLOBAL / BASE STYLES
 * Foundation styles, resets, and base typography
 */

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */

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

:root {
  --green: #3EBD5A;
  --green-dark: #2a9d46;
  --green-light: #e6f9ec;
  --black: #0c0c0c;
  --white: #ffffff;
  --cream: #f7f6f2;
  --gray: #efefeb;
  --mid: #9a9a92;
  --text: #1a1a1a;
  --border: #e4e4dc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════════ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  margin: 0;
}

h1 {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
}

h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
}

p {
  margin: 0;
  line-height: 1.6;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--green-dark);
}

/* ═══════════════════════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════════════════════ */

input,
select,
textarea,
button {
  font-family: 'DM Sans', sans-serif;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  background: var(--white);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(62, 189, 90, 0.1);
}

button {
  border: none;
  cursor: pointer;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════════ */

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ═══════════════════════════════════════════════════════════
   IMAGE STYLES
═══════════════════════════════════════════════════════════ */

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   LIST STYLES
═══════════════════════════════════════════════════════════ */

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
}

/* ═══════════════════════════════════════════════════════════
   SELECTION STYLES
═══════════════════════════════════════════════════════════ */

::selection {
  background-color: var(--green);
  color: white;
}

::-moz-selection {
  background-color: var(--green);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   SCROLLBAR STYLING
═══════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-dark);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --green: #3EBD5A; --green-dark: #2a9d46; --green-light: #e6f9ec;
    --black: #0c0c0c; --white: #ffffff;
    --cream: #f7f6f2; --gray: #efefeb; --mid: #9a9a92; --text: #1a1a1a;
    --border: #e4e4dc;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 60px;
    background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    overflow: visible;
  }
  .logo { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 45px; font-weight: 800; color: var(--black); text-decoration: none; letter-spacing: 0px; text-transform: lowercase; display: inline-block; }
  .logo em { font-style: normal; color: var(--green); }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a { color: #777; text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--black); }
  .nav-right { display: flex; align-items: center; gap: 16px; }
  .nav-phone { display: flex; align-items: center; gap: 8px; color: #555; font-size: 14px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
  .nav-phone:hover { color: var(--green); }
  .nav-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; flex-shrink: 0; }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
  .nav-btn { background: var(--black); color: #fff; border: none; padding: 12px 24px; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; transition: background 0.2s; }
  .nav-btn:hover { background: #333; }
  .hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0; }
  .hamburger span { width: 24px; height: 2.5px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
  /* Mobile menu styles → see components.css */

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--cream);
    display: grid; grid-template-columns: 55% 45%;
    position: relative; overflow: hidden;
  }
  .hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 85% 40%, rgba(62,189,90,0.1) 0%, transparent 55%); pointer-events: none; }

  .hero-left { padding: 140px 48px 80px 60px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }

  .hero-chip { display: inline-flex; align-items: center; gap: 8px; background: rgba(62,189,90,0.1); border: 1px solid rgba(62,189,90,0.25); color: var(--green-dark); padding: 7px 16px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 32px; width: fit-content; }

  .hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(46px, 5.5vw, 70px); font-weight: 300; color: var(--black); line-height: 1.0; letter-spacing: -2.5px; margin-bottom: 24px; }
  .hero h1 strong { font-weight: 800; }
  .hero h1 .g { color: var(--green); font-weight: 800; }
  .hero h1 .d { color: #bbb; font-weight: 300; }

  .hero-sub { color: #666; font-size: 17px; font-weight: 300; line-height: 1.65; max-width: 420px; margin-bottom: 40px; }

  .hero-btns { display: flex; gap: 12px; margin-bottom: 52px; }
  .btn-dark { background: var(--black); color: #fff; padding: 15px 30px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.15s; display: inline-block; }
  .btn-dark:hover { background: #333; transform: translateY(-2px); }
  .btn-ghost { background: transparent; color: #555; padding: 15px 26px; border-radius: 10px; font-size: 15px; text-decoration: none; border: 1px solid var(--border); font-family: 'DM Sans', sans-serif; transition: border-color 0.2s, color 0.2s; }
  .btn-ghost:hover { border-color: #aaa; color: var(--black); }

  .hero-stats { display: flex; gap: 40px; }
  .stat-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 28px; font-weight: 800; color: var(--black); line-height: 1; }
  .stat-lbl { font-size: 11px; color: #aaa; margin-top: 4px; }

  /* Hero Right – Store Panel */
  .hero-right { border-left: 1px solid rgba(0,0,0,0.07); background: rgba(255,255,255,0.55); padding: 140px 48px 60px; display: flex; flex-direction: column; }
  .open-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(62,189,90,0.1); border: 1px solid rgba(62,189,90,0.3); color: var(--green-dark); padding: 8px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; width: fit-content; margin-bottom: 28px; }
  .open-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 1.5s infinite; }
  .shop-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
  .shop-addr { color: #888; font-size: 14px; line-height: 1.65; margin-bottom: 28px; }

  .hours-list { margin-bottom: 28px; }
  .h-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 13px; }
  .h-row:last-child { border-bottom: none; }
  .h-day { color: #999; }
  .h-time { color: #333; font-weight: 500; }
  .h-time.closed { color: #ccc; font-weight: 400; }
  .h-today { background: rgba(62,189,90,0.07); border-radius: 7px; padding: 9px 12px; margin: 0 -12px; }
  .h-today .h-day { color: var(--green-dark); font-weight: 600; }
  .h-today .h-time { color: var(--green-dark); }

  .contact-links { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
  .contact-link { display: flex; align-items: center; gap: 12px; background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 14px 18px; color: #444; text-decoration: none; font-size: 14px; transition: all 0.2s; }
  .contact-link:hover { background: #fff; border-color: var(--green); color: var(--black); }
  .cl-icon { font-size: 18px; flex-shrink: 0; }
  .cl-label { font-weight: 500; color: #222; }
  .cl-sub { font-size: 11px; color: #aaa; }

  /* ── TRUST STRIP ── */
  .trust { background: var(--black); display: flex; }
  .trust-item { display: flex; align-items: center; gap: 8px; padding: 13px 0; font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.6); flex: 1; justify-content: center; border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-right: none; }

  /* ══════════════════════════════════
     KONTAKTFORMULAR SEKTION
  ══════════════════════════════════ */
  .contact-section {
    padding: 90px 60px;
    background: var(--white);
    position: relative; overflow: hidden;
  }
  .contact-section::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(62,189,90,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .contact-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }

  .contact-left {}
  .eyebrow { font-size: 11px; color: var(--green); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
  .contact-left h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(30px, 3.5vw, 44px); font-weight: 300; letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 16px; color: var(--black); }
  .contact-left h2 strong { font-weight: 800; }
  .contact-left p { color: #777; font-size: 15px; line-height: 1.65; margin-bottom: 36px; }

  .response-promise {
    display: flex; align-items: flex-start; gap: 16px;
    background: var(--green-light); border: 1px solid rgba(62,189,90,0.25);
    border-radius: 14px; padding: 20px 22px; margin-bottom: 32px;
  }
  .rp-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
  .rp-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
  .rp-text { font-size: 13px; color: #555; line-height: 1.5; }

  .alt-contacts { display: flex; flex-direction: column; gap: 10px; }
  .alt-contact { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #555; }
  .alt-contact a { color: var(--green-dark); font-weight: 600; text-decoration: none; }
  .alt-contact a:hover { text-decoration: underline; }
  .alt-icon { font-size: 16px; }

  /* THE FORM */
  .repair-form {
    background: var(--cream); border: 1px solid var(--border);
    border-radius: 20px; padding: 36px;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block; font-size: 12px; font-weight: 600; color: #555;
    letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 7px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%; padding: 13px 16px;
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 10px; font-size: 14px; color: var(--text);
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none; outline: none;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #bbb; }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(62,189,90,0.1);
  }
  .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 14px; cursor: pointer; color: #666; }
  .form-group select option { color: var(--text); }
  .form-group textarea { resize: vertical; min-height: 100px; line-height: 1.5; }

  .device-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
  .device-chip {
    padding: 7px 14px; border-radius: 100px; font-size: 13px; font-weight: 500;
    border: 1.5px solid var(--border); background: var(--white); color: #666;
    cursor: pointer; transition: all 0.2s; user-select: none;
  }
  .device-chip:hover { border-color: var(--green); color: var(--green-dark); }
  .device-chip.selected { background: var(--green); border-color: var(--green); color: #fff; }

  .device-chip-label { font-size: 11px; font-weight: 600; color: #888; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }

  .form-submit {
    width: 100%; padding: 16px;
    background: var(--green); color: #fff; border: none;
    border-radius: 10px; font-size: 15px; font-weight: 600;
    cursor: pointer; font-family: 'DM Sans', sans-serif;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(62,189,90,0.35); }
  .form-submit:active { transform: translateY(0); }

  .form-footer-note { text-align: center; margin-top: 14px; font-size: 12px; color: #aaa; }

  /* Success state */
  .form-success {
    display: none; text-align: center; padding: 40px 20px;
  }
  .form-success.visible { display: block; }
  .form-success .success-icon { font-size: 56px; margin-bottom: 16px; }
  .form-success h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 10px; color: var(--black); }
  .form-success p { color: #777; font-size: 14px; line-height: 1.6; }

  /* ── SERVICES ── */
  .services-section { padding: 90px 60px; background: var(--cream); }
  .services-inner { max-width: 1100px; margin: 0 auto; }
  .services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
  .services-header h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 300; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 0; }
  .services-header h2 strong { font-weight: 800; }
  .services-header p { color: #777; font-size: 15px; line-height: 1.6; max-width: 360px; margin-bottom: 0; }

  .svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .svc-card { background: var(--white); border-radius: 18px; padding: 30px; border: 1.5px solid transparent; transition: all 0.22s; cursor: pointer; position: relative; overflow: hidden; }
  .svc-card::after { content: '→'; position: absolute; bottom: 24px; right: 24px; font-size: 18px; color: var(--green); opacity: 0; transform: translateX(-6px); transition: all 0.2s; }
  .svc-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(62,189,90,0.1); }
  .svc-card:hover::after { opacity: 1; transform: translateX(0); }
  .svc-card.featured { background: var(--black); grid-column: span 2; display: flex; align-items: center; gap: 36px; }
  .svc-card.featured::after { display: none; }
  .svc-card.featured:hover { border-color: rgba(62,189,90,0.5); }
  .svc-icon { font-size: 36px; margin-bottom: 16px; display: block; }
  .svc-card.featured .svc-icon { font-size: 60px; margin-bottom: 0; flex-shrink: 0; }
  .svc-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 7px; }
  .svc-card.featured .svc-title { color: #fff; font-size: 24px; }
  .svc-desc { font-size: 13px; color: #888; line-height: 1.55; }
  .svc-card.featured .svc-desc { color: rgba(255,255,255,0.45); font-size: 14px; }
  .svc-tag { display: inline-block; margin-top: 12px; background: var(--green-light); color: var(--green-dark); font-size: 10px; font-weight: 700; letter-spacing: 0.5px; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; }
  .svc-card.featured .svc-tag { background: rgba(62,189,90,0.2); color: var(--green); }

  /* ── PRICES ── */
  .prices-section { padding: 90px 60px; background: var(--white); }
  .prices-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 300px 1fr; gap: 60px; }
  .prices-nav { margin-top: 36px; }
  .pnav-item { display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: 10px; cursor: pointer; font-size: 14px; font-weight: 500; color: #666; margin-bottom: 4px; transition: background 0.2s; }
  .pnav-item:hover, .pnav-item.active { background: var(--cream); color: var(--black); }
  .pnav-item.active { font-weight: 700; }
  .pnav-icon { font-size: 18px; }
  .pnav-count { margin-left: auto; font-size: 11px; color: var(--mid); background: var(--gray); padding: 2px 8px; border-radius: 100px; }
  .prices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .price-item { display: flex; justify-content: space-between; align-items: center; background: var(--cream); border-radius: 12px; padding: 16px 20px; border: 1.5px solid transparent; cursor: pointer; transition: all 0.2s; }
  .price-item:hover { background: var(--white); border-color: var(--green); }
  .pi-name { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
  .pi-device { font-size: 12px; color: var(--mid); }
  .pi-price { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; text-align: right; }
  .pi-from { font-size: 10px; color: var(--mid); font-weight: 400; display: block; font-family: 'DM Sans', sans-serif; }
  .prices-more { text-align: center; margin-top: 20px; }
  .prices-more a { color: var(--green); font-size: 14px; font-weight: 600; text-decoration: none; }

  /* ── WALK-IN ── */
  .walkin-section { padding: 90px 60px; background: var(--black); position: relative; overflow: hidden; }
  .walkin-section::before { content: ''; position: absolute; top: -200px; right: -150px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(62,189,90,0.1) 0%, transparent 60%); }
  .walkin-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
  .walkin-left .eyebrow { color: var(--green); }
  .walkin-left h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(30px, 4vw, 46px); font-weight: 300; color: #fff; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 18px; }
  .walkin-left h2 strong { font-weight: 800; }
  .walkin-left h2 em { font-style: normal; color: var(--green); font-weight: 800; }
  .walkin-left p { color: rgba(255,255,255,0.45); font-size: 15px; line-height: 1.65; margin-bottom: 28px; }
  .walkin-chips { display: flex; flex-wrap: wrap; gap: 10px; }
  .walkin-chip { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); padding: 8px 16px; border-radius: 100px; font-size: 13px; }

  .map-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 22px; overflow: hidden; }
  .map-visual { height: 200px; background: linear-gradient(145deg, #161616, #1e1e1e); display: flex; align-items: center; justify-content: center; position: relative; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .map-visual::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 28px 28px; }
  .map-pin-wrap { position: relative; z-index: 1; text-align: center; }
  .map-pin-emoji { font-size: 38px; display: block; margin-bottom: 8px; filter: drop-shadow(0 4px 14px rgba(62,189,90,0.5)); }
  .map-pin-lbl { background: var(--green); color: #fff; padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 700; }
  .map-info { padding: 22px 26px; }
  .map-info h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 5px; }
  .map-info p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 18px; }
  .map-btns { display: flex; gap: 10px; }
  .map-btn { flex: 1; padding: 11px; border-radius: 9px; font-size: 13px; font-weight: 600; text-decoration: none; text-align: center; transition: all 0.2s; font-family: 'DM Sans', sans-serif; }
  .map-btn-green { background: var(--green); color: #fff; }
  .map-btn-green:hover { background: var(--green-dark); }
  .map-btn-outline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); }
  .map-btn-outline:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

  /* ── REVIEWS ── */
  .reviews-section { padding: 90px 60px; background: var(--cream); }
  .reviews-inner { max-width: 1100px; margin: 0 auto; }
  .reviews-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
  .rating-block { display: flex; align-items: center; gap: 20px; }
  .rating-num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 60px; font-weight: 800; line-height: 1; color: var(--black); }
  .rating-stars { color: #FFBE00; font-size: 20px; }
  .rating-sub { font-size: 12px; color: var(--mid); margin-top: 4px; }
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .review-card { background: var(--white); border-radius: 18px; padding: 26px; border: 1.5px solid transparent; transition: border-color 0.2s; }
  .review-card:hover { border-color: rgba(62,189,90,0.3); }
  .rv-stars { font-size: 13px; color: #FFBE00; margin-bottom: 12px; }
  .rv-text { font-size: 14px; color: #444; line-height: 1.65; margin-bottom: 18px; font-style: italic; }
  .rv-author { display: flex; align-items: center; gap: 10px; }
  .rv-av { width: 36px; height: 36px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: #fff; flex-shrink: 0; }
  .rv-name { font-size: 13px; font-weight: 600; }
  .rv-repair { font-size: 11px; color: var(--mid); }

  /* ── FOOTER CTA ── */
  .fcta { padding: 90px 60px; background: var(--black); text-align: center; }
  .fcta h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(34px, 5vw, 60px); font-weight: 300; color: #fff; letter-spacing: -2px; line-height: 1.0; margin-bottom: 16px; }
  .fcta h2 strong { font-weight: 800; }
  .fcta p { color: rgba(255,255,255,0.4); font-size: 16px; margin-bottom: 36px; }
  .btn-green { background: var(--green); color: #fff; padding: 15px 34px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; display: inline-block; font-family: 'DM Sans', sans-serif; transition: background 0.2s, transform 0.15s; }
  .btn-green:hover { background: var(--green-dark); transform: translateY(-2px); }

