/* ═══════════════════════════════════════════════════
   NikWin Konsult AB — Main Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────── */
:root {
  --teal:        #2BC4A4;
  --teal-dark:   #1EA88B;
  --teal-light:  #4DD9BE;
  --teal-alpha:  rgba(43, 196, 164, 0.12);
  --teal-glow:   rgba(43, 196, 164, 0.25);

  --dark:        #0B1220;
  --dark-2:      #111C2E;
  --dark-3:      #162035;
  --dark-card:   #1A2740;
  --dark-border: rgba(255,255,255,0.08);

  --white:       #FFFFFF;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --gray-900:    #0F172A;

  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.16);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── 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(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.nav-shop-highlight[hidden] { display: none !important; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: var(--font); }

/* ── Utilities ──────────────────────────────────────*/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ────────────────────────────────────────*/
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--teal-glow);
}

.btn--outline {
  border-color: var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn--outline:hover {
  background: var(--teal);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn--ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

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

/* ── Section commons ────────────────────────────────*/
.section {
  padding: 6rem 0;
}
.section--dark {
  background: var(--dark);
  color: var(--white);
}
.section--alt {
  background: var(--dark-2);
  color: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.section-label--light { color: var(--teal-light); }

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
}
.section-sub--light { color: rgba(255,255,255,0.6); }

/* ── Scroll animations ──────────────────────────────*/
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11, 18, 32, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 1px 0 var(--dark-border);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

/* ── Coded SVG logo component ───────────────────── */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  transform-origin: left center;
}
.navbar:not(.scrolled) .logo-wrap {
  transform: scale(1.15);
}

.logo-icon {
  height: 38px;
  width: auto;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-text__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-text__sub {
  font-size: 0.6rem;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  margin-top: 1px;
}

/* ── Hero decorative visual (right column) ───────── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.hero__visual-glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(43,196,164,0.18) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__deco-bars {
  position: relative;
  z-index: 1;
  width: min(300px, 90%);
  height: auto;
  filter: drop-shadow(0 0 22px rgba(43,196,164,0.65))
          drop-shadow(0 0 50px rgba(43,196,164,0.22));
  animation: deco-float 8s ease-in-out infinite;
}

@keyframes deco-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* ── Bar base style ──────────────────────────────── */
.lb {
  fill: #23b2a3;
  transform-box: fill-box;
  transform-origin: center;
}

/* Navbar: completely static — always looks like the real logo */
.navbar__logo .lb { animation: none; }

/* Decorative hero bars — subtle, organic movement */
.hero__deco-bars .lb1 { animation: bar-eq 4.0s ease-in-out -0.20s infinite; }
.hero__deco-bars .lb2 { animation: bar-eq 3.6s ease-in-out -1.10s infinite; }
.hero__deco-bars .lb3 { animation: bar-eq 4.5s ease-in-out -2.10s infinite; }
.hero__deco-bars .lb4 { animation: bar-eq 3.8s ease-in-out -0.60s infinite; }
.hero__deco-bars .lb5 { animation: bar-eq 4.2s ease-in-out -1.80s infinite; }
.hero__deco-bars .lb6 { animation: bar-eq 3.7s ease-in-out -0.40s infinite; }
.hero__deco-bars .lb7 { animation: bar-eq 4.1s ease-in-out -1.50s infinite; }
.hero__deco-bars .lb8 { animation: bar-eq 3.9s ease-in-out -0.90s infinite; }

@keyframes bar-eq {
  0%, 100% { transform: scaleY(1); }
  50%       { transform: scaleY(0.88); }
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar__nav a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  transition: var(--transition);
}
.navbar__nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.navbar__nav .btn--outline {
  margin-left: 0.5rem;
  padding: 0.45rem 1.25rem;
  font-size: 0.88rem;
}

/* ── Webbshop highlight (pilar + badge) ────────── */
.nav-shop-highlight {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  gap: 0.15rem;
  padding: 0.3rem 0.4rem !important;
  background: none !important;
}

.nav-shop-badge {
  background: #EF4444;
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  animation: shop-pulse 2s ease-in-out infinite;
}

.nav-shop-arrow {
  width: 26px;
  height: 18px;
  flex-shrink: 0;
}

.nav-shop-arrow--left {
  animation: arrow-nudge-left 1.4s ease-in-out infinite;
}

.nav-shop-arrow--right {
  animation: arrow-nudge-right 1.4s ease-in-out infinite;
  animation-delay: 0.1s;
}

.nav-shop-tooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #EF4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(239,68,68,0.35);
  animation: tooltip-bob 2.5s ease-in-out infinite;
}

.nav-shop-tooltip::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #EF4444;
}

/* Settled state: stop animations, keep red badge */
.nav-shop-highlight.settled .nav-shop-arrow { display: none; }
.nav-shop-highlight.settled .nav-shop-tooltip { display: none; }
.nav-shop-highlight.settled .nav-shop-badge {
  animation: none;
  background: #EF4444;
}

@keyframes shop-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(239,68,68,0); }
  50% { transform: scale(1.07); box-shadow: 0 0 16px rgba(239,68,68,0.45); }
}

@keyframes arrow-nudge-left {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(4px); opacity: 0.7; }
}

@keyframes arrow-nudge-right {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(-4px); opacity: 0.7; }
}

@keyframes tooltip-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(4px); }
}

/* Mobile: simpler treatment */
@media (max-width: 600px) {
  .nav-shop-arrow { display: none; }
  .nav-shop-tooltip { display: none; }
  .nav-shop-badge {
    animation: shop-pulse 2s ease-in-out infinite;
  }
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  pointer-events: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(43,196,164,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43,196,164,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(43,196,164,0.18) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(43,196,164,0.1) 0%, transparent 70%);
  bottom: 0;
  left: 10%;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 7rem;
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__text { /* left column — no extra styles needed */ }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal-alpha);
  border: 1px solid rgba(43,196,164,0.25);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero__stats {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}
.hero__stat-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.65em;
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 800;
  color: var(--teal);
  line-height: 1.1;
  white-space: nowrap;
}
.hero__stat-label {
  font-size: clamp(0.65rem, 1.4vw, 0.78rem);
  color: rgba(255,255,255,0.45);
  margin-top: 0.25rem;
  line-height: 1.25;
  min-height: 2.5em;
}
.hero__stat-divider {
  flex-shrink: 0;
  align-self: center;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(43,196,164,0.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─────────────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover {
  border-color: rgba(43,196,164,0.4);
  box-shadow: 0 12px 40px rgba(43,196,164,0.1);
  transform: translateY(-4px);
  background: rgba(43,196,164,0.04);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43,196,164,0.1);
  border-radius: 10px;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.service-card__icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.service-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  flex: 1;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.service-card__list li {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  padding-left: 1rem;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--teal);
  border-radius: 50%;
}

.service-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  margin-top: auto;
  transition: var(--transition);
}
.service-card__link:hover { color: var(--teal-dark); letter-spacing: 0.02em; }

/* ─────────────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.badge {
  background: rgba(43,196,164,0.1);
  border: 1px solid rgba(43,196,164,0.2);
  color: var(--teal-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: var(--transition);
}
.about-card:hover {
  border-color: rgba(43,196,164,0.3);
  background: rgba(43,196,164,0.05);
}
.about-card__icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-card strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.about-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────
   PROJECTS
───────────────────────────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: default;
  transition: var(--transition);
}
.project-card:hover { transform: scale(1.02); }
.project-card:hover .project-card__bg { filter: brightness(0.7); }

.project-card--wide {
  grid-column: 1 / 3;
  min-height: 280px;
}

.project-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.4s ease;
}
.project-card__bg--1 { background: linear-gradient(135deg, #0e4d6e 0%, #0a7c6e 100%); }
.project-card__bg--2 { background: linear-gradient(135deg, #1a3a6b 0%, #0d2e5c 100%); }
.project-card__bg--3 { background: linear-gradient(135deg, #2d1b69 0%, #1a1040 100%); }
.project-card__bg--4 { background: linear-gradient(135deg, #1c4a2e 0%, #0f2e1c 100%); }
.project-card__bg--5 { background: linear-gradient(135deg, #3b2667 0%, #1a1040 100%); }

.project-card__content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.project-card__tag {
  display: inline-block;
  background: var(--teal);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}
.project-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.project-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.cta-band p {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

/* ─────────────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: rgba(43,196,164,0.05);
  box-shadow: 0 0 0 3px rgba(43,196,164,0.12);
}
.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.contact-info__card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-info__icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info__item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.3rem;
}
.contact-info__item a {
  display: block;
  color: var(--teal-light);
  font-size: 0.95rem;
  transition: var(--transition);
}
.contact-info__item a:hover { color: var(--white); }
.contact-info__item address {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.social-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-light);
  transition: var(--transition);
}
.social-links a:hover { color: var(--white); }

.map-link { display: block; }
.map-placeholder {
  background: var(--dark-card);
  border: 1px dashed rgba(43,196,164,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--teal-light);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.map-placeholder:hover {
  background: rgba(43,196,164,0.06);
  border-color: rgba(43,196,164,0.5);
}

/* ─────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────── */
.footer {
  background: #060D18;
  color: var(--white);
  padding-top: 4rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__logo {
  height: 44px;
  width: auto;
  margin-bottom: 1rem;
}
.footer__logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}
.footer__logo-wrap .logo-icon {
  height: 44px;
}
.footer__logo-wrap .logo-text__name {
  font-size: 1.1rem;
}
.footer__logo-wrap .logo-text__sub {
  font-size: 0.65rem;
}
.footer__brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1rem;
  max-width: 240px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--teal-light); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
}
.footer__contact a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer__contact a:hover { color: var(--teal-light); }
.footer__contact address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 0.25rem;
}

.footer__bottom {
  padding: 1.25rem 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE — Tablet (≤ 900px)
───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
  .project-card--wide { grid-column: 1 / -1; }

  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ─────────────────────────────────────────────────────
   RESPONSIVE — Mobile (≤ 600px)
───────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .section { padding: 4rem 0; }

  .navbar__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 18, 32, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  }
  .navbar__nav.open { transform: translateX(0); }
  .navbar__nav a {
    font-size: 1.1rem;
    padding: 0.6rem 1.5rem;
  }
  .navbar__hamburger { display: flex; z-index: 1001; }

  .services-grid { grid-template-columns: 1fr; }

  .projects-grid { grid-template-columns: 1fr; }
  .project-card--wide { grid-column: 1; }

  .form-row { grid-template-columns: 1fr; }

  .hero__content { grid-template-columns: 1fr; }
  .hero__visual { display: none; }

  .hero__stats {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .hero__stat-label {
    font-size: 0.68rem;
    min-height: 2.4em;
  }
  .hero__stat-num {
    font-size: 1.15rem;
    min-height: 1.65em;
  }
  .hero__stat-divider {
    align-self: center;
    width: 1px;
    height: 28px;
  }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────
   SHOP — Overlay
───────────────────────────────────────────────────── */
.shop-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(11, 18, 32, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.shop-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.shop-overlay.closing {
  opacity: 0;
  pointer-events: none;
}

.shop-overlay__content {
  text-align: center;
  max-width: 520px;
  padding: 2rem;
}
.shop-overlay__icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.shop-overlay__content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.shop-overlay__content > p {
  color: rgba(255,255,255,0.5);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.shop-overlay__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.shop-overlay__option {
  background: var(--dark-card);
  border: 2px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font);
}
.shop-overlay__option:hover {
  border-color: var(--teal);
  background: rgba(43,196,164,0.06);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(43,196,164,0.15);
}
.shop-overlay__option-icon { font-size: 2.5rem; }
.shop-overlay__option-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.shop-overlay__option-desc {
  font-size: 0.85rem;
  color: var(--teal-light);
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────
   SHOP — Hero
───────────────────────────────────────────────────── */
.shop-hero {
  background: var(--dark);
  padding: 9rem 0 5rem;
  text-align: center;
}
.shop-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}
.shop-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ─────────────────────────────────────────────────────
   SHOP — Toolbar
───────────────────────────────────────────────────── */
.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.shop-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.shop-cat-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}
.shop-cat-btn:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
}
.shop-cat-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--dark);
}

.shop-customer-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.shop-toggle-btn {
  padding: 0.45rem 1rem;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
}
.shop-toggle-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--teal-light);
}
.shop-toggle-label {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-left: 0.25rem;
}

/* ─────────────────────────────────────────────────────
   SHOP — Product grid
───────────────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gray-400);
  font-size: 1rem;
  padding: 4rem 0;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--teal);
  box-shadow: 0 12px 40px var(--teal-glow);
  transform: translateY(-4px);
}

.product-card__img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2740 0%, #0e4d6e 100%);
}
.product-card__img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.4;
}

.product-card__img-count {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  z-index: 2;
}

.product-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.product-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-900);
}
.product-card__desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}
.product-card__price-wrap {
  display: flex;
  flex-direction: column;
}
.product-card__price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-900);
}
.product-card__price-label {
  font-size: 0.72rem;
  color: var(--gray-400);
}

.product-card__btn {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
  white-space: nowrap;
}
.product-card__btn--added {
  background: #16a34a !important;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────
   SHOP — Cart button (navbar)
───────────────────────────────────────────────────── */
.navbar__cart {
  position: relative;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  padding: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  flex-shrink: 0;
}
.navbar__cart:hover { color: var(--white); }
.navbar__cart svg { display: block; }

.navbar__cart-badge {
  position: absolute;
  top: -2px;
  right: -6px;
  background: var(--teal);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ─────────────────────────────────────────────────────
   SHOP — Cart drawer
───────────────────────────────────────────────────── */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1600;
  width: 400px;
  max-width: 100vw;
  background: var(--dark);
  border-left: 1px solid var(--dark-border);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--dark-border);
}
.cart-drawer__header h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.cart-drawer__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem;
  transition: var(--transition);
}
.cart-drawer__close:hover { color: var(--white); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}
.cart-empty {
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 3rem 0;
  font-size: 0.95rem;
}

.cart-item {
  padding: 1rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}
.cart-item__name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  flex: 1;
  margin-right: 1rem;
}
.cart-item__line {
  color: var(--teal-light);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-item__qty-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.cart-item__qty-btn:hover {
  border-color: var(--teal);
  background: rgba(43,196,164,0.1);
}
.cart-item__qty {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 24px;
  text-align: center;
}
.cart-item__remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.5rem;
  transition: var(--transition);
}
.cart-item__remove:hover { color: #ef4444; }

.cart-drawer__footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--dark-border);
}
.cart-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

/* ─────────────────────────────────────────────────────
   SHOP — Checkout
───────────────────────────────────────────────────── */
.shop-back-btn {
  background: none;
  border: none;
  color: var(--teal-light);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 2rem;
  transition: var(--transition);
}
.shop-back-btn:hover { color: var(--white); }

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 3rem;
  align-items: start;
}
.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.checkout-block {
  margin-bottom: 1rem;
}
.checkout-block h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.shipping-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.shipping-option:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.03);
}
.shipping-option--selected {
  border-color: var(--teal) !important;
  background: rgba(43,196,164,0.06) !important;
}
.shipping-option input[type="radio"] {
  accent-color: var(--teal);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.shipping-option__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.shipping-option__info strong {
  color: var(--white);
  font-size: 0.9rem;
}
.shipping-option__info span {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}
.shipping-option__price {
  color: var(--teal-light);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.checkout-summary-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: 6rem;
}
.checkout-summary-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--dark-border);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
}
.checkout-item:last-child { border-bottom: none; }

.checkout-totals {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-border);
}
.checkout-total-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}
.checkout-total-row--grand {
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--dark-border);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.checkout-note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.5;
}

/* ─────────────────────────────────────────────────────
   SHOP — Confirmation
───────────────────────────────────────────────────── */
.confirmation-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto 2rem;
  animation: confirmPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes confirmPop {
  0%   { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─────────────────────────────────────────────────────
   SHOP — Product detail modal
───────────────────────────────────────────────────── */
.pd-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pd-backdrop.open { opacity: 1; pointer-events: all; }

.pd-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1300;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.pd-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.pd-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}
.pd-modal__close:hover { background: var(--gray-200); }

.pd-modal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pd-gallery { padding: 1.5rem; }
.pd-gallery__main {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a2740, #0e4d6e);
  position: relative;
  margin-bottom: 0.75rem;
}
.pd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-gallery__main-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.3;
}

.pd-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.pd-gallery__thumb {
  width: 64px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}
.pd-gallery__thumb:hover { border-color: var(--gray-400); }
.pd-gallery__thumb--active { border-color: var(--teal); }
.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-info {
  padding: 2.5rem 2rem 2rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pd-info__cat {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.pd-info__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
}
.pd-info__desc {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
}
.pd-info__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.5rem;
}
.pd-info__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
}
.pd-info__price-label {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ─────────────────────────────────────────────────────
   SHOP — Responsive
───────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary-card { position: static; }
  .shop-overlay__options { grid-template-columns: 1fr; }
  .pd-modal__inner { grid-template-columns: 1fr; }
  .pd-info { padding: 1.5rem; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
  .shop-toolbar { flex-direction: column; align-items: stretch; }
  .shop-customer-toggle { justify-content: center; }
  .cart-drawer { width: 100vw; }
  .product-card__footer { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .product-card__btn { text-align: center; justify-content: center; }
  .pd-modal { width: 95%; max-height: 95vh; }
}

/* ─────────────────────────────────────────────────────
   KÖPVILLKOR MODAL
───────────────────────────────────────────────────── */
.terms-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.terms-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.terms-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90%;
  max-width: 680px;
  max-height: 85vh;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.terms-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.terms-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}
.terms-modal__header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
}
.terms-modal__close {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--gray-400);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}
.terms-modal__close:hover { color: var(--gray-900); }

.terms-modal__body {
  padding: 1.5rem 2rem 2rem;
  overflow-y: auto;
  flex: 1;
}
.terms-modal__body .terms-intro {
  font-size: 0.95rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.terms-modal__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 1.5rem 0 0.5rem;
}
.terms-modal__body h3:first-of-type { margin-top: 0; }
.terms-modal__body p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}
.terms-modal__body a {
  color: var(--teal);
  text-decoration: underline;
}

.terms-link {
  color: var(--teal-light) !important;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s;
}
.terms-link:hover { color: var(--white) !important; }

.checkout-terms-note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.checkout-terms-note a {
  color: var(--teal-light);
  text-decoration: underline;
}
.checkout-terms-note a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════
   WOW UPGRADES (Sprint 1) — added 2026-04
   ═══════════════════════════════════════════════════ */

/* ── Display font on headings ───────────────────── */
.hero__title,
.section-title,
.faq-hero h1,
.shop-hero h1,
.faq-cta h2,
.cta-band p,
.hero__stat-num {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.025em;
}

/* ── Scroll progress bar ────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--teal) 0%, var(--teal-light) 100%);
  box-shadow: 0 0 12px var(--teal-glow);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
}

/* ── Grain / noise overlay on dark sections ──────
   NOTE: Only `position: relative` here — never `overflow: hidden`
   on .section (would break .checkout-summary-card sticky in shop). */
.section { position: relative; }
.section > .container { position: relative; z-index: 1; }

.section--dark::before,
.section--alt::before,
.hero::after,
.faq-hero::after,
.shop-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

.faq-hero, .shop-hero { position: relative; overflow: hidden; }
.faq-hero > .container, .shop-hero > .container { position: relative; z-index: 1; }

/* ── Spotlight glow that follows cursor on cards ── */
.service-card,
.about-card,
.contact-info__card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.service-card::after,
.about-card::after,
.contact-info__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    320px circle at var(--mx, 50%) var(--my, 50%),
    rgba(43,196,164,0.18),
    rgba(43,196,164,0.04) 35%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}
.service-card:hover::after,
.about-card:hover::after,
.contact-info__card:hover::after { opacity: 1; }
.service-card > *,
.about-card > *,
.contact-info__card > * { position: relative; z-index: 1; }

/* ── Tilt hover (transform set in JS via custom props) ── */
[data-tilt] {
  transform: perspective(900px)
             rotateX(var(--tilt-x, 0deg))
             rotateY(var(--tilt-y, 0deg))
             translateY(var(--tilt-lift, 0px));
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  transform-style: preserve-3d;
  will-change: transform;
}
[data-tilt]:hover { transition-duration: 0.08s; }

/* Override the built-in service-card hover translateY since tilt handles lift */
[data-tilt].service-card:hover { transform: perspective(900px)
             rotateX(var(--tilt-x, 0deg))
             rotateY(var(--tilt-y, 0deg))
             translateY(var(--tilt-lift, -4px)); }

/* ── Featured service ("Populär" badge) ─────────── */
.service-card { position: relative; }
.service-card--featured {
  background: linear-gradient(140deg, var(--dark-card) 0%, rgba(43,196,164,0.08) 100%);
  border-color: rgba(43,196,164,0.35);
}
.service-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--teal);
  color: var(--dark);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 4px 14px var(--teal-glow);
  z-index: 2;
  animation: badge-pulse 2.5s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(43,196,164,0.25); }
  50%      { box-shadow: 0 4px 22px rgba(43,196,164,0.55); }
}

/* ── Magnetic buttons (transform set in JS) ─────── */
[data-magnetic] {
  transition: transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

/* ── Toast notifications ────────────────────────── */
#toastHost {
  position: fixed;
  top: 90px;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 10000;
  pointer-events: none;
  max-width: 360px;
}
.toast {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 14px 44px rgba(0,0,0,0.45);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 240px;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast.hide { transform: translateX(120%); opacity: 0; }

.toast--success { border-color: rgba(43,196,164,0.5); }
.toast--success .toast__icon { color: var(--teal-light); }
.toast--error   { border-color: rgba(239,68,68,0.5); }
.toast--error   .toast__icon { color: #EF4444; }
.toast--info    .toast__icon { color: var(--teal-light); }

.toast__icon {
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}
.toast__msg {
  flex: 1;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
}
.toast__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 1.15rem;
  padding: 0 0 0 0.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.toast__close:hover { color: var(--white); }

/* ── Scroll-reveal upgraded variants ───────────── */
.reveal { transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
                      transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal--left   { transform: translateX(-32px); opacity: 0; }
.reveal--right  { transform: translateX(32px);  opacity: 0; }
.reveal--scale  { transform: scale(0.94);       opacity: 0; }
.reveal--left.visible,
.reveal--right.visible  { transform: translateX(0); opacity: 1; }
.reveal--scale.visible  { transform: scale(1);     opacity: 1; }

/* ── prefers-reduced-motion safety ───────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-tilt] { transform: none !important; }
  .scroll-progress { transition: none; }
}

/* ── Mobile tweaks for new effects ───────────── */
@media (max-width: 600px) {
  #toastHost {
    top: auto;
    bottom: 1rem;
    right: 0.75rem;
    left: 0.75rem;
    max-width: none;
  }
  .toast { min-width: 0; }
  /* Disable tilt on touch */
  [data-tilt] { transform: none !important; }
  /* Spotlight too — touch hover is weird */
  .service-card::after,
  .about-card::after,
  .contact-info__card::after { display: none; }
}

/* ═══════════════════════════════════════════════════
   PROJECT BUILDER WIZARD (Sprint 3)
   ═══════════════════════════════════════════════════ */

.wizard {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: relative;
  overflow: hidden;
}

.wizard__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ── Progress indicator ────────────────────────── */
.wizard__progress {
  position: relative;
}
.wizard__progress-bar {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  z-index: 0;
}
.wizard__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--teal-glow);
}

.wizard__steps {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.wizard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex: 1;
  cursor: default;
}
.wizard__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Space Grotesk', var(--font);
}
.wizard__step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
  text-align: center;
}
.wizard__step.is-active .wizard__step-num {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--dark);
  box-shadow: 0 0 0 6px rgba(43,196,164,0.15), 0 4px 16px var(--teal-glow);
  transform: scale(1.08);
}
.wizard__step.is-active .wizard__step-label {
  color: var(--teal-light);
}
.wizard__step.is-done .wizard__step-num {
  background: rgba(43,196,164,0.18);
  border-color: var(--teal);
  color: var(--teal);
}
.wizard__step.is-done .wizard__step-num::after {
  content: '✓';
  font-size: 0.95rem;
  font-weight: 700;
}
.wizard__step.is-done .wizard__step-num > * {
  display: none;
}

/* ── Panels ───────────────────────────────────── */
.wizard__panels {
  position: relative;
  min-height: 380px;
}
.wizard__panel {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  animation: wizard-fade 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.wizard__panel.is-active {
  display: flex;
}
@keyframes wizard-fade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.wizard__title {
  color: var(--white);
  font-size: 1.35rem;
  font-weight: 700;
  font-family: 'Space Grotesk', var(--font);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
.wizard__hint {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  margin: -0.5rem 0 0.25rem;
  line-height: 1.5;
}
.wizard__group-label {
  margin: 1.25rem 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.wizard__group-label:first-of-type {
  margin-top: 0.35rem;
}

/* ── Choice grid (service & time) ─────────────── */
.wizard__choice-grid {
  display: grid;
  gap: 0.75rem;
}
.wizard__choice-grid--services {
  grid-template-columns: repeat(2, 1fr);
}
.wizard__choice-grid--time {
  grid-template-columns: repeat(2, 1fr);
}

.wizard__choice {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  cursor: pointer;
  font-family: var(--font);
  text-align: left;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  color: var(--white);
  overflow: hidden;
}
.wizard__choice:hover {
  border-color: rgba(43,196,164,0.5);
  background: rgba(43,196,164,0.06);
  transform: translateY(-2px);
}
.wizard__choice.is-selected {
  border-color: var(--teal);
  background: linear-gradient(135deg, rgba(43,196,164,0.14), rgba(43,196,164,0.04));
  box-shadow: 0 6px 24px var(--teal-glow);
}
.wizard__choice.is-selected::after {
  content: '✓';
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  width: 22px;
  height: 22px;
  background: var(--teal);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  animation: choice-pop 0.3s cubic-bezier(0.2, 0.7, 0.2, 1.4);
}
@keyframes choice-pop {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.wizard__choice-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}
.wizard__choice-title {
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
}
.wizard__choice-sub {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  margin-top: 0.15rem;
}
.wizard__choice-badge {
  position: absolute;
  top: 0.55rem;
  right: 0.65rem;
  background: var(--teal);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px var(--teal-glow);
}
.wizard__choice--featured {
  background: linear-gradient(135deg, rgba(43,196,164,0.08), rgba(43,196,164,0.02));
  border-color: rgba(43,196,164,0.25);
}
.wizard__choice--featured.is-selected .wizard__choice-badge { display: none; }

.wizard__choice--time {
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.15rem 1.1rem;
}
.wizard__choice--time .wizard__choice-icon {
  font-size: 1.65rem;
  margin-bottom: 0.25rem;
}

.wizard__location-simple {
  margin-bottom: 1.25rem;
}
.wizard__location-simple .wizard__input {
  margin-top: 0.35rem;
}

/* ── Inputs / Textareas ───────────────────────── */
.wizard__input,
.wizard__textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}
.wizard__input::placeholder,
.wizard__textarea::placeholder { color: rgba(255,255,255,0.3); }
.wizard__input:focus,
.wizard__textarea:focus {
  border-color: var(--teal);
  background: rgba(43,196,164,0.05);
  box-shadow: 0 0 0 3px rgba(43,196,164,0.12);
}
.wizard__textarea { resize: vertical; min-height: 90px; }

.wizard__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: -0.5rem;
}

/* ── Map (Leaflet) ────────────────────────────── */
.wizard__map-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.wizard__map-stage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wizard__input--map {
  margin-bottom: 0;
}
.wizard__map-float {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 500;
  pointer-events: none;
}
.wizard__map-float > * {
  pointer-events: auto;
}
.wizard__map-float--top {
  top: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(7, 11, 20, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.wizard__map-top-cluster {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  justify-content: center;
}
.wizard__draw-mode,
.wizard__map-layer-toggle {
  display: inline-flex;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.wizard__draw-mode-btn,
.wizard__layer-btn {
  padding: 0.55rem 0.7rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.wizard__draw-mode-btn.is-active,
.wizard__layer-btn.is-active {
  background: var(--teal);
  color: var(--dark);
}
.wizard__map-float--bottom {
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.85rem 0.75rem calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: rgba(7, 11, 20, 0.94);
  border-top: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.wizard__map-float--side {
  top: 5.5rem;
  right: 0.55rem;
  left: auto;
  width: min(270px, calc(100% - 1rem));
  max-height: calc(100% - 8rem);
  overflow: auto;
  background: rgba(7, 11, 20, 0.94);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 0.65rem 0.55rem;
  backdrop-filter: blur(12px);
}
.wizard__map-layers-head,
.wizard__layers-panel-head {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.wizard__map-layers-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: rgba(43,196,164,0.18);
  color: var(--teal);
  font-size: 0.72rem;
}
.wizard__map-layers-list,
.wizard__layers-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.wizard__layer-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.55rem 0.6rem;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.wizard__layer-item-swatch {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 0.28rem;
  flex-shrink: 0;
}
.wizard__layer-item-body {
  flex: 1;
  min-width: 0;
}
.wizard__layer-item-type {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.wizard__layer-item-value {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  word-break: break-word;
}
.wizard__layer-item-meta {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
}
.wizard__layer-item-delete {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border: none;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1;
}
.wizard__layer-item-delete:hover {
  background: rgba(255, 90, 90, 0.18);
  color: #ff9a9a;
}
.wizard__layers-panel {
  margin-bottom: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.wizard__layers-panel .wizard__area-edit {
  margin-top: 0.75rem;
}
.wizard__area-preview--layers {
  margin-top: 0.75rem;
  height: 140px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.wizard__map-layers-empty {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  padding: 0.35rem 0.15rem 0.15rem;
}
.wizard__map-back {
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  align-self: flex-start;
}
.wizard__map-back:hover {
  background: rgba(255,255,255,0.16);
}
.wizard__map-badge {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(43,196,164,0.15);
  border: 1px solid rgba(43,196,164,0.35);
  color: var(--teal-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.wizard__map-status {
  flex: 1;
  min-width: 140px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.wizard__map-status.has-pin {
  color: var(--teal-light);
  font-weight: 600;
}
.wizard__map-tool-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 0.5rem;
}
.wizard__map-tool {
  padding: 0.85rem 0.65rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.wizard__map-tool:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
}
.wizard__map-tool:active {
  transform: scale(0.98);
}
.wizard__map-tool--primary {
  background: var(--teal);
  border-color: var(--teal-light);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(43,196,164,0.35);
}
.wizard__map-tool--primary:hover {
  background: var(--teal-light);
}
.wizard__map-tool--primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.wizard__map-next {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--dark);
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(43,196,164,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wizard__map-next:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(43,196,164,0.5);
}
.wizard__map-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.wizard.wizard--map-mode .wizard__map-next:not([hidden]) {
  display: flex;
}
.wizard__map-logo {
  display: none;
  align-items: center;
  gap: 0.45rem;
  color: #fff;
  text-decoration: none;
  padding: 0.35rem 0.5rem 0.35rem 0;
  flex-shrink: 0;
}
.wizard.wizard--map-mode .wizard__map-logo {
  display: inline-flex;
}
.wizard__map-logo .logo-icon {
  width: 26px;
  height: auto;
  flex-shrink: 0;
}
.wizard__map-logo-text {
  font-family: 'Space Grotesk', var(--font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ── Helskärmskartläge (vassklippning steg 2) ── */
body.wizard-map-mode {
  overflow: hidden;
}
body.wizard-map-mode .navbar,
body.wizard-map-mode .contact-info,
body.wizard-map-mode .scroll-progress {
  visibility: hidden;
}
.wizard.wizard--map-mode {
  position: fixed;
  inset: 0;
  z-index: 10050;
  width: 100vw;
  height: 100dvh;
  max-width: none;
  border-radius: 0;
  border: none;
  padding: 0;
  gap: 0;
  overflow: hidden;
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
  background: #070b14;
}
.wizard.wizard--map-mode.reveal,
.wizard.wizard--map-mode.reveal.visible {
  opacity: 1 !important;
  transform: none !important;
}
.wizard.wizard--map-mode .wizard__progress,
.wizard.wizard--map-mode .wizard__footer {
  display: none;
}
.wizard.wizard--map-mode .wizard__panels {
  min-height: 0;
  flex: 1;
  display: flex;
}
.wizard.wizard--map-mode .wizard__panel[data-panel="2"] {
  display: flex !important;
  flex: 1;
  flex-direction: column;
  animation: none;
}
.wizard.wizard--map-mode .wizard__map-stage {
  flex: 1;
  gap: 0;
  min-height: 0;
}
.wizard.wizard--map-mode .wizard__map-stage-head,
.wizard.wizard--map-mode .wizard__input--map {
  display: none;
}
.wizard.wizard--map-mode .wizard__map-wrap {
  flex: 1;
  border: none;
  border-radius: 0;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.wizard.wizard--map-mode .wizard__map {
  flex: 1;
  height: auto;
  min-height: 0;
}
.wizard.wizard--map-mode .wizard__map-back {
  display: inline-flex;
}
.wizard.wizard--map-mode .wizard__map .leaflet-bottom.leaflet-left {
  bottom: 9.5rem;
}

/* ── Kartguide (snabbvisning) ── */
.wizard__map-guide {
  position: absolute;
  inset: 0;
  z-index: 650;
  pointer-events: none;
  background: rgba(4, 8, 16, 0.72);
  backdrop-filter: blur(2px);
}
.wizard__map-guide[hidden] {
  display: none !important;
}
.wizard__map-guide-card,
.wizard__map-guide-pin,
.wizard__map-guide-close,
.wizard__map-guide-check {
  pointer-events: auto;
}
.wizard__map-guide-card {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(420px, calc(100% - 2rem));
  padding: 1.25rem 1.35rem 1.1rem;
  border-radius: 16px;
  border: 1px solid rgba(43, 196, 164, 0.35);
  background: rgba(10, 16, 28, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.wizard__map-guide-card h4 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}
.wizard__map-guide-list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.wizard__map-guide-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.wizard__map-guide-icon {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(43, 196, 164, 0.14);
  color: var(--teal);
  font-size: 1rem;
  font-weight: 800;
}
.wizard__map-guide-list strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}
.wizard__map-guide-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}
.wizard__map-guide-tip {
  margin: 0 0 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.4;
}
.wizard__map-guide-tip strong {
  color: rgba(255, 255, 255, 0.82);
}
.wizard__map-guide-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.wizard__map-guide-check {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  cursor: pointer;
}
.wizard__map-guide-check input {
  accent-color: var(--teal);
}
.wizard__map-guide-close {
  margin-left: auto;
  padding: 0.55rem 1.1rem;
  border: none;
  border-radius: 999px;
  background: var(--teal);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.wizard__map-guide-close:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.wizard__map-guide-pin {
  position: absolute;
  max-width: min(220px, 42vw);
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(43, 196, 164, 0.35);
  background: rgba(10, 16, 28, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.wizard__map-guide-pin p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.35;
}
.wizard__map-guide-pin strong {
  color: var(--teal);
}
.wizard__map-guide-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 7px solid transparent;
}
.wizard__map-guide-pin--tools {
  top: 4.5rem;
  right: 0.85rem;
}
.wizard__map-guide-pin--tools .wizard__map-guide-arrow {
  top: -14px;
  right: 2.4rem;
  border-bottom-color: rgba(43, 196, 164, 0.55);
}
.wizard__map-guide-pin--map {
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
}
.wizard__map-guide-pin--map .wizard__map-guide-arrow {
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: rgba(43, 196, 164, 0.55);
}
.wizard__map-guide-pin--save {
  left: 50%;
  bottom: 5.5rem;
  transform: translateX(-50%);
}
.wizard__map-guide-pin--save .wizard__map-guide-arrow {
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-top-color: rgba(43, 196, 164, 0.55);
}
@media (max-width: 720px) {
  .wizard__map-guide-pin {
    display: none;
  }
  .wizard__map-guide-card {
    top: auto;
    bottom: 1rem;
    transform: translateX(-50%);
    width: calc(100% - 1.25rem);
    max-height: calc(100% - 2rem);
    overflow: auto;
  }
}

/* ── Steg 3 — ytsammanfattning ── */
.wizard__area-hero {
  background: linear-gradient(145deg, rgba(43,196,164,0.12), rgba(43,196,164,0.04));
  border: 1px solid rgba(43,196,164,0.28);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.wizard__area-hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}
.wizard__area-hero-value {
  font-family: 'Space Grotesk', var(--font);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--teal-light);
  line-height: 1.1;
}
.wizard__area-hero-meta {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.wizard__area-preview {
  height: 160px;
  margin: 1rem 0 0.75rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.wizard__area-preview .leaflet-control-container {
  display: none;
}
.wizard__area-edit {
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: transparent;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.wizard__area-edit:hover {
  border-color: var(--teal);
  color: var(--teal-light);
}

.wizard__map {
  height: 320px;
  width: 100%;
  background: var(--dark-3);
  cursor: crosshair;
}
.wizard__map.leaflet-grab { cursor: grab; }
.wizard__map.leaflet-dragging { cursor: grabbing; }
/* Force Leaflet attribution to fit dark theme */
.wizard__map .leaflet-control-attribution {
  background: rgba(11,18,32,0.85);
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px 0 0 0;
}
.wizard__map .leaflet-control-attribution a {
  color: var(--teal-light);
}
.wizard__map .leaflet-control-zoom a {
  background: rgba(11,18,32,0.92);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15) !important;
  font-weight: 700;
}
.wizard__map .leaflet-control-zoom a:hover {
  background: var(--teal);
  color: var(--dark);
}
.wizard__map-status.has-pin {
  color: var(--teal-light);
  font-weight: 600;
}

.wizard__map-tools {
  display: none;
}
.wizard__work-area {
  display: none;
}
/* Custom marker pulse */
.wizard-marker {
  width: 28px !important;
  height: 28px !important;
  margin-left: -14px !important;
  margin-top: -28px !important;
  background: none !important;
  border: none !important;
}
.wizard-marker::before {
  content: '';
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  transform: rotate(-45deg);
  box-shadow: 0 4px 16px rgba(43,196,164,0.6);
}
.wizard-marker::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  top: 8px;
  left: 9px;
}

/* ── Size slider ──────────────────────────────── */
.wizard__size {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
}
.wizard__size-display {
  text-align: center;
  margin-bottom: 1.25rem;
}
.wizard__size-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-light);
  font-family: 'Space Grotesk', var(--font);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.wizard__size-compare {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.35rem;
}
.wizard__slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--teal) 0%, var(--teal) var(--slider-pct, 33%), rgba(255,255,255,0.1) var(--slider-pct, 33%));
  outline: none;
  margin: 0.5rem 0;
}
.wizard__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  cursor: grab;
  box-shadow: 0 4px 14px rgba(43,196,164,0.45);
  transition: transform 0.15s ease;
}
.wizard__slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.wizard__slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.05); }
.wizard__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--teal);
  cursor: grab;
  box-shadow: 0 4px 14px rgba(43,196,164,0.45);
}
.wizard__size-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ── Summary card (Step 5) ────────────────────── */
.wizard__summary {
  background: rgba(43,196,164,0.06);
  border: 1px solid rgba(43,196,164,0.25);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.wizard__summary-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.88rem;
}
.wizard__summary-key {
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 96px;
  flex-shrink: 0;
}
.wizard__summary-val {
  color: var(--white);
  font-weight: 500;
  flex: 1;
  word-break: break-word;
}
.wizard__summary-val--empty {
  color: rgba(255,255,255,0.3);
  font-style: italic;
}

/* ── Field rows ───────────────────────────────── */
.wizard__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wizard__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.wizard__field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.wizard__field input,
.wizard__field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}
.wizard__field input::placeholder,
.wizard__field textarea::placeholder { color: rgba(255,255,255,0.3); }
.wizard__field input:focus,
.wizard__field textarea:focus {
  border-color: var(--teal);
  background: rgba(43,196,164,0.05);
  box-shadow: 0 0 0 3px rgba(43,196,164,0.12);
}
.wizard__field input.is-error,
.wizard__field textarea.is-error {
  border-color: #EF4444;
  background: rgba(239,68,68,0.05);
}

.wizard__recaptcha {
  margin-top: 1rem;
  min-height: 0;
}
.wizard__recaptcha:not([aria-hidden="true"]) {
  min-height: 78px;
}
.wizard__field textarea { resize: vertical; min-height: 80px; }

/* ── Footer (back / next / submit) ────────────── */
.wizard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wizard__step-counter {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.wizard__nav {
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  border: 2px solid transparent;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
  white-space: nowrap;
}
.wizard__nav--back {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.15);
}
.wizard__nav--back:hover:not(:disabled) {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.04);
}
.wizard__nav--back:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.wizard__nav--next,
.wizard__nav--submit {
  background: var(--teal);
  color: var(--dark);
  box-shadow: 0 4px 18px rgba(43,196,164,0.3);
}
.wizard__nav--next:hover:not(:disabled),
.wizard__nav--submit:hover:not(:disabled) {
  background: var(--teal-light);
  box-shadow: 0 8px 28px var(--teal-glow);
  transform: translateY(-2px);
}
.wizard__nav--next:disabled {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.3);
  box-shadow: none;
  cursor: not-allowed;
}

.wizard__nav--submit.is-loading {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  cursor: wait;
}
.wizard__nav--submit.is-success {
  background: #16a34a;
  color: var(--white);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .wizard { padding: 1.5rem; }
  .wizard__step-label { display: none; }
  .wizard__progress-bar { top: 18px; }
}
@media (max-width: 600px) {
  .wizard { padding: 1.25rem; gap: 1.25rem; }
  .wizard__choice-grid--services,
  .wizard__choice-grid--time { grid-template-columns: 1fr; }
  .wizard__field-row { grid-template-columns: 1fr; }
  .wizard__title { font-size: 1.15rem; }
  .wizard__map { height: 260px; }
  .wizard__nav { padding: 0.65rem 1.1rem; font-size: 0.85rem; }
  .wizard__step-counter { font-size: 0.7rem; }
  .wizard__panels { min-height: 320px; }
  .wizard__step-num { width: 28px; height: 28px; font-size: 0.75rem; }
  .wizard__progress-bar { top: 14px; left: 14px; right: 14px; }
}

/* ═══════════════════════════════════════════════════
   BENTO PROJECT GRID + LIGHTBOX (Sprint 3)
   ═══════════════════════════════════════════════════ */

/* Bento layout — replaces the old projects-grid layout */
.projects-grid--bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 240px 240px;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Bento placement
   1 = featured (4 cols × 2 rows)
   2 = side-tall  (2 cols × 2 rows)
   3,4,5 = bottom row, but row 3 is added below — keep compact 2-row */
.projects-grid--bento .project-card[data-bento="1"] { grid-column: 1 / span 4; grid-row: 1 / span 2; }
.projects-grid--bento .project-card[data-bento="2"] { grid-column: 5 / span 2; grid-row: 1 / span 1; }
.projects-grid--bento .project-card[data-bento="3"] { grid-column: 5 / span 2; grid-row: 2 / span 1; }
.projects-grid--bento .project-card[data-bento="4"] { grid-column: 1 / span 2; grid-row: 3 / span 1; }
.projects-grid--bento .project-card[data-bento="5"] { grid-column: 3 / span 2; grid-row: 3 / span 1; }
.projects-grid--bento .project-card[data-bento="6"] { grid-column: 5 / span 2; grid-row: 3 / span 1; }
.projects-grid--bento { grid-template-rows: 220px 220px 220px; }

/* Make project-card a proper button (was div) */
.projects-grid--bento .project-card {
  border: none;
  font-family: var(--font);
  text-align: left;
  cursor: pointer;
  width: 100%;
  background: var(--dark-3);
  padding: 0;
  min-height: 0;
}

/* Stronger hover on bento cards */
.projects-grid--bento .project-card { transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease; }
.projects-grid--bento .project-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.45); }
.projects-grid--bento .project-card:hover .project-card__bg { transform: scale(1.06); filter: brightness(0.6); }
.projects-grid--bento .project-card:hover .project-card__cta { color: var(--teal); transform: translateX(4px); }

.projects-grid--bento .project-card__bg {
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.4s ease;
}

/* CTA hint at bottom of card */
.project-card__cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Featured card heading bigger */
.projects-grid--bento .project-card[data-bento="1"] h3 { font-size: 1.5rem; line-height: 1.2; }
.projects-grid--bento .project-card[data-bento="1"] p { font-size: 0.95rem; }

/* Bento responsive */
@media (max-width: 900px) {
  .projects-grid--bento {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0.85rem;
  }
  .projects-grid--bento .project-card[data-bento="1"] { grid-column: 1 / span 2; grid-row: auto; min-height: 280px; }
  .projects-grid--bento .project-card[data-bento="2"] { grid-column: auto; grid-row: auto; min-height: 220px; }
  .projects-grid--bento .project-card[data-bento="3"] { grid-column: auto; grid-row: auto; min-height: 220px; }
  .projects-grid--bento .project-card[data-bento="4"] { grid-column: auto; grid-row: auto; min-height: 220px; }
  .projects-grid--bento .project-card[data-bento="5"] { grid-column: auto; grid-row: auto; min-height: 220px; }
  .projects-grid--bento .project-card[data-bento="6"] { grid-column: auto; grid-row: auto; min-height: 220px; }
}
@media (max-width: 600px) {
  .projects-grid--bento { grid-template-columns: 1fr; }
  .projects-grid--bento .project-card,
  .projects-grid--bento .project-card[data-bento="1"] { grid-column: 1; min-height: 220px; }
}

/* ── LIGHTBOX ─────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 22, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.lightbox__content {
  position: relative;
  background: var(--dark-card);
  border: 1px solid rgba(43,196,164,0.2);
  border-radius: var(--radius-lg);
  max-width: 920px;
  width: 100%;
  max-height: 90vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.94) translateY(12px);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1.05);
}
.lightbox.is-open .lightbox__content {
  transform: scale(1) translateY(0);
}

.lightbox__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(11,18,32,0.85);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.lightbox__close:hover {
  background: var(--teal);
  color: var(--dark);
  border-color: var(--teal);
  transform: rotate(90deg);
}

.lightbox__media {
  position: relative;
  background: var(--dark);
  min-height: 320px;
  overflow: hidden;
}
.lightbox__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox__body {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
}
.lightbox__tag {
  display: inline-block;
  background: var(--teal);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  align-self: flex-start;
}
.lightbox__title {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', var(--font);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0;
}
.lightbox__desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
.lightbox__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
}
.lightbox__actions .btn { padding: 0.65rem 1.25rem; font-size: 0.88rem; }

/* Lock body scroll when lightbox open */
body.lightbox-open { overflow: hidden; }

@media (max-width: 800px) {
  .lightbox__content {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }
  .lightbox__media { max-height: 38vh; }
}
@media (max-width: 600px) {
  .lightbox { padding: 0.75rem; }
  .lightbox__body { padding: 1.25rem; }
  .lightbox__title { font-size: 1.2rem; }
}

/* ═══════════════════════════════════════════════════
   FLOATING CTA — "Få offert" persistent på alla sidor
   ═══════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.4rem 0.95rem 1.1rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  box-shadow:
    0 12px 28px -10px rgba(43, 196, 164, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.92);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    visibility 0.4s ease,
    box-shadow 0.3s ease;
  isolation: isolate;
}
.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.floating-cta:hover {
  box-shadow:
    0 18px 36px -8px rgba(43, 196, 164, 0.7),
    0 6px 16px rgba(0, 0, 0, 0.22);
  transform: translateY(-3px) scale(1.03);
}
.floating-cta:active {
  transform: translateY(-1px) scale(1.0);
}
.floating-cta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}
.floating-cta__label {
  white-space: nowrap;
}
.floating-cta__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--teal);
  z-index: -1;
  animation: floatingPulse 2.4s ease-out infinite;
}
@keyframes floatingPulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Dölj på de minsta skärmarna när vi är i kontakt-sektionen
   eller när användaren öppnar lightboxen / wizard-input. */
body.lightbox-open .floating-cta,
body.wizard-active .floating-cta,
body.in-contact .floating-cta {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.92);
}

@media (max-width: 600px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
    padding: 0.8rem 1.15rem 0.8rem 0.9rem;
    font-size: 0.88rem;
  }
  .floating-cta__icon { width: 26px; height: 26px; }
  .floating-cta__icon svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .floating-cta__pulse { animation: none; }
  .floating-cta { transition: opacity 0.2s ease, visibility 0.2s ease; }
}

/* ═══════════════════════════════════════════════════
   TRUST / SOCIALA BEVIS — Sprint 4
   ═══════════════════════════════════════════════════ */
.trust-section {
  background: linear-gradient(180deg, #fff 0%, var(--gray-50, #F8FAFC) 100%);
  position: relative;
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 3rem;
  padding: 1.75rem 2rem;
  background: #fff;
  border: 1px solid var(--gray-200, #E2E8F0);
  border-radius: 22px;
  box-shadow: 0 8px 32px -16px rgba(11, 18, 32, 0.08);
}
.trust-stat {
  text-align: center;
  padding: 0.5rem 0.75rem;
  border-right: 1px solid var(--gray-200, #E2E8F0);
}
.trust-stat:last-child { border-right: none; }
.trust-stat__num {
  display: block;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-stat__label {
  display: block;
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: var(--gray-500, #64748B);
  letter-spacing: 0.01em;
}

.trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.trust-badge {
  position: relative;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--gray-200, #E2E8F0);
  border-radius: 18px;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
  cursor: default;
  isolation: isolate;
}
.trust-badge:hover {
  border-color: rgba(43, 196, 164, 0.4);
  box-shadow: 0 18px 32px -18px rgba(43, 196, 164, 0.35);
}
.trust-badge__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  background: var(--teal-bg, rgba(43,196,164,0.08));
  color: var(--teal);
  border-radius: 12px;
}
.trust-badge h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--gray-900, #0F172A);
}
.trust-badge p {
  font-size: 0.88rem;
  color: var(--gray-500, #64748B);
  line-height: 1.5;
  margin: 0;
}

/* Marquee scrollende citat */
.testimonial-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testimonial-marquee__track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marqueeScroll 50s linear infinite;
}
.testimonial-marquee:hover .testimonial-marquee__track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial {
  flex: 0 0 360px;
  margin: 0;
  padding: 1.5rem 1.5rem 1.4rem;
  background: #fff;
  border: 1px solid var(--gray-200, #E2E8F0);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 4px 18px -10px rgba(11, 18, 32, 0.08);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  font-family: 'Space Grotesk', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.25;
}
.testimonial blockquote {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--gray-700, #334155);
  font-style: italic;
}
.testimonial figcaption {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  color: var(--gray-500, #64748B);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; }
  .trust-stat:nth-child(2) { border-right: none; }
  .trust-stat { padding: 0.85rem; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
  }
  .trust-stat { border-right: none !important; padding: 0.6rem 0.4rem; }
  .trust-badges { grid-template-columns: 1fr; }
  .testimonial { flex: 0 0 280px; padding: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee__track { animation-duration: 120s; }
}

/* ═══════════════════════════════════════════════════
   FÖRE / EFTER-SLIDER
   ═══════════════════════════════════════════════════ */
.before-after-section { padding-top: 4rem; padding-bottom: 4rem; }

.before-after {
  --pos: 50%;
  margin-top: 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px -24px rgba(11, 18, 32, 0.45);
  background: var(--dark, #0B1220);
}
.before-after__viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.before-after__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.before-after__before-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  pointer-events: none;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.before-after__before-clip .before-after__img--before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 4px;
  margin-left: -2px;
  background: #fff;
  border: none;
  cursor: ew-resize;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.35);
}
.before-after__handle::before,
.before-after__handle::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.85);
  transform: translateX(-50%);
}
.before-after__handle::before { top: 0; bottom: calc(50% + 26px); }
.before-after__handle::after  { top: calc(50% + 26px); bottom: 0; }
.before-after__handle svg {
  background: #fff;
  color: var(--teal-dark, #1EA88B);
  border-radius: 999px;
  padding: 0.55rem;
  width: 48px;
  height: 48px;
  box-shadow: 0 6px 18px rgba(11, 18, 32, 0.35);
  position: relative;
  z-index: 2;
}
.before-after__handle:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}

.before-after__label {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 0.85rem;
  background: rgba(11, 18, 32, 0.8);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
  pointer-events: none;
}
.before-after__label--before { left: 1rem; }
.before-after__label--after  { right: 1rem; background: rgba(43, 196, 164, 0.85); }

.before-after__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.5rem;
  background: rgba(11, 18, 32, 0.96);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}
.before-after__caption strong {
  color: var(--teal);
  margin-right: 0.35rem;
  font-weight: 700;
}

@media (max-width: 600px) {
  .before-after__viewport { aspect-ratio: 4 / 3; }
  .before-after__handle svg { width: 38px; height: 38px; padding: 0.4rem; }
  .before-after__label { font-size: 0.7rem; padding: 0.3rem 0.65rem; }
  .before-after__caption { font-size: 0.82rem; padding: 1rem; }
  .before-after__caption span[aria-hidden="true"] { display: none; }
}

/* ═══════════════════════════════════════════════════
   HERO TYPEWRITER / ROTATOR
   ═══════════════════════════════════════════════════ */
.hero__rotator {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.25rem;
  margin-bottom: 2rem;
  padding: 0.75rem 1.35rem 0.75rem 1.1rem;
  background: rgba(43, 196, 164, 0.12);
  border: 1px solid rgba(43, 196, 164, 0.35);
  border-radius: 999px;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  max-width: 100%;
  box-shadow: 0 4px 24px rgba(43, 196, 164, 0.12);
}
.hero__rotator-prefix {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 0.95em;
}
.hero__rotator-text {
  color: var(--teal-light, #4DD9BE);
  font-weight: 700;
  font-size: 1.05em;
  white-space: nowrap;
  min-width: 1ch;
  background: linear-gradient(90deg, var(--teal-light, #4DD9BE) 0%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__rotator-cursor {
  display: inline-block;
  width: 2px;
  height: 1.15em;
  background: var(--teal-light, #4DD9BE);
  transform: translateY(2px);
  animation: rotatorBlink 1s steps(2) infinite;
  border-radius: 1px;
}
@keyframes rotatorBlink {
  0%, 50%   { opacity: 1; }
  51%, 100% { opacity: 0; }
}
@media (max-width: 600px) {
  .hero__rotator { font-size: 0.98rem; padding: 0.6rem 1rem 0.6rem 0.85rem; margin-bottom: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__rotator-cursor { animation: none; opacity: 0.6; }
}

/* ═══════════════════════════════════════════════════
   SERVICE PAGES (SEO landningssidor)
   ═══════════════════════════════════════════════════ */
.service-hero {
  background: var(--dark);
  padding: 9rem 0 4.5rem;
  text-align: center;
}
.service-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.025em;
}
.service-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.service-hero__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-light);
  border: 1px solid rgba(77,217,190,0.25);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.25rem;
}
.service-body { padding: 5rem 0; }
.service-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}
.service-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--gray-900);
}
.service-content h2:first-child { margin-top: 0; }
.service-content p,
.service-content li {
  color: var(--gray-500);
  line-height: 1.75;
  font-size: 0.95rem;
}
.service-content ul {
  margin: 0.75rem 0 1rem;
  padding-left: 1.25rem;
}
.service-content li { margin-bottom: 0.35rem; }
.service-sidebar {
  position: sticky;
  top: 6rem;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.service-sidebar h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.service-sidebar a {
  display: block;
  padding: 0.5rem 0;
  color: var(--gray-700);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.2s;
}
.service-sidebar a:last-child { border-bottom: none; }
.service-sidebar a:hover { color: var(--teal); }
.service-sidebar a.is-active { color: var(--teal); font-weight: 600; }
.service-faq {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.service-faq .faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.service-faq .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  gap: 1rem;
  user-select: none;
}
.service-faq .faq-question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--teal);
  flex-shrink: 0;
}
.service-faq .faq-item.open .faq-question::after { transform: rotate(45deg); }
.service-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.25rem;
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
}
.service-faq .faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.25rem 1rem;
}
.service-cta {
  text-align: center;
  padding: 4rem 0;
  background: var(--gray-100);
}
.service-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-cta p { color: var(--gray-500); margin-bottom: 1.5rem; }
@media (max-width: 900px) {
  .service-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

