/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
html:has(.demo-banner:not([hidden])) {
  scroll-padding-top: calc(5rem + var(--demo-banner-height, 2.25rem));
}
@media (max-width: 768px) {
  html:has(.demo-banner:not([hidden])) {
    scroll-padding-top: calc(4rem + var(--demo-banner-height, 2.25rem));
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-text { animation: none; }
  .btn-primary:hover, .service-card:hover, .contact-card:hover { transform: none; }
  .why-card:hover, .why-card:hover .why-icon { transform: none; box-shadow: var(--shadow-card); }
  .reviews-track { transition: none !important; }
  .carousel-btn:active { transform: translateY(-50%); }
  .hero-slide img { animation: none !important; }
  .hero-rotating-word.hero-word-exit,
  .hero-rotating-word.hero-word-enter { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--body-bg);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
::selection {
  background: hsla(174, 55%, 42%, 0.18);
  color: inherit;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }

/* ===== VARIABLES ===== */
:root {
  --primary: hsl(174, 62%, 38%);
  --primary-light: hsl(174, 55%, 60%);
  --primary-fg: #fff;
  --foreground: hsl(210, 25%, 15%);
  --muted: hsl(210, 15%, 50%);
  --border: hsl(210, 20%, 90%);
  --secondary-bg: hsl(174, 35%, 96%);
  --card-bg: #fff;
  --body-bg: #fff;
  --gold: hsl(45, 93%, 58%);
  --section-gradient: linear-gradient(180deg, hsl(174, 30%, 98%), #fff);
  --hero-overlay: linear-gradient(
    115deg,
    hsla(174, 50%, 15%, 0.88) 0%,
    hsla(210, 28%, 12%, 0.75) 45%,
    hsla(210, 25%, 18%, 0.45) 100%
  );
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 1px 3px rgba(15, 23, 42, 0.06), 0 4px 12px rgba(15, 23, 42, 0.04);
  --radius: 0.75rem;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --foreground: hsl(210, 20%, 92%);
  --muted: hsl(210, 12%, 65%);
  --border: hsl(210, 18%, 22%);
  --secondary-bg: hsl(210, 22%, 14%);
  --card-bg: hsl(210, 22%, 12%);
  --body-bg: hsl(210, 25%, 8%);
  --section-gradient: linear-gradient(180deg, hsl(210, 22%, 11%), hsl(210, 25%, 8%));
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
}
html[data-theme="dark"] body { background: var(--body-bg); color: var(--foreground); }
html[data-theme="dark"] .navbar {
  background: rgba(15, 23, 30, 0.94);
  border-bottom-color: var(--border);
}
html[data-theme="dark"] .mobile-menu { background: hsl(210, 22%, 12%); border-bottom-color: var(--border); }
html[data-theme="dark"] .mobile-menu-toolbar { border-bottom-color: var(--border); }
html[data-theme="dark"] .btn-secondary {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.92);
}
html[data-theme="dark"] .cta-strip { background: linear-gradient(135deg, hsl(174, 35%, 22%), hsl(210, 25%, 16%)); }
html[data-theme="dark"] .theme-toggle .icon-sun { display: none; }
html[data-theme="dark"] .theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-moon { display: none; }
.theme-toggle .icon-sun { display: block; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-primary { color: var(--primary); }
.text-center { text-align: center; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius); font-weight: 600;
  font-size: 0.875rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, filter 0.2s; border: none;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: 0 2px 8px hsla(174, 62%, 38%, 0.25); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 20px hsla(174, 62%, 38%, 0.3); }
.btn-primary:active { transform: translateY(0); }
.btn-hero-outline {
  background: transparent; color: var(--primary-fg);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 0.9rem; font-size: 0.8125rem; }
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem;
  cursor: pointer; font-family: inherit;
  background: transparent; color: var(--primary-fg);
  border: 1.5px solid rgba(255,255,255,0.45);
  transition: background 0.2s, border-color 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.65); }
.btn-outline {
  background: transparent; color: var(--primary); border: 1.5px solid var(--primary);
  padding: 0.5rem 1.1rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem;
  cursor: pointer; font-family: inherit; transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--secondary-bg); }
.reviews-google-btn { margin-top: 1rem; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  padding: 0.75rem 1.25rem; background: var(--primary); color: #fff; font-weight: 600; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; outline: none; }

.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  background: linear-gradient(90deg, hsl(210, 70%, 22%), hsl(174, 50%, 28%));
  color: rgba(255,255,255,0.95); font-size: 0.8125rem; text-align: center; padding: 0.45rem 1rem;
  line-height: 1.35;
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
}
.demo-banner[hidden] { display: none !important; }
.demo-banner-inner { margin: 0 auto; max-width: 1200px; }
body:has(.demo-banner:not([hidden])) { padding-top: var(--demo-banner-height, 2.25rem); }
body:has(.demo-banner:not([hidden])) .navbar {
  top: calc(var(--demo-banner-height, 2.25rem) - 3px);
}
body:has(.demo-banner:not([hidden])) .hero { padding-top: calc(5rem + var(--demo-banner-height, 2.25rem)); }
@media (max-width: 768px) {
  .demo-banner { font-size: 0.72rem; padding: 0.35rem 0.65rem; line-height: 1.4; }
  body:has(.demo-banner:not([hidden])) .hero {
    padding-top: calc(4rem + var(--demo-banner-height, 2.25rem));
  }
}

:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
button:focus:not(:focus-visible) { outline: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 55;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, background 0.25s;
}
.navbar.is-scrolled {
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
  background: rgba(255,255,255,0.97);
}
html[data-theme="dark"] .navbar.is-scrolled {
  background: rgba(15, 23, 30, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-icon { color: var(--primary); flex-shrink: 0; }
.logo-text { font-size: 1.2rem; font-weight: 800; color: var(--foreground); letter-spacing: -0.02em; }
.nav-links {
  display: flex; align-items: center; gap: 0.5rem 1rem; flex-wrap: nowrap; justify-content: flex-end;
  flex: 1; min-width: 0; margin-left: 1rem;
}
.nav-links > a,
.nav-links .nav-link-about {
  font-size: 0.8125rem; font-weight: 500; color: var(--muted); transition: color 0.2s; white-space: nowrap;
}
.nav-links > a:hover,
.nav-links .nav-link-about:hover { color: var(--primary); }

.nav-item--dropdown {
  position: relative;
  display: flex; align-items: center;
}
/* Nevidljivi most — miš ne „ispada“ iz :hover dok prelazi na podstavke */
.nav-item--dropdown::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 100%;
  width: max(100%, 12rem);
  height: 0.85rem;
  z-index: 61;
  pointer-events: none;
}
.nav-item--dropdown:hover::after,
.nav-item--dropdown:focus-within::after {
  pointer-events: auto;
}
.nav-link-about {
  display: inline-flex; align-items: center; gap: 0.2rem;
  text-decoration: none; color: inherit;
}
.nav-link-about::after {
  content: '';
  display: inline-block;
  width: 0.4rem; height: 0.4rem;
  margin-left: 0.05rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.1rem);
  opacity: 0.55;
}
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 12rem;
  padding: 0.35rem 0;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.nav-dropdown a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  padding: 0.5rem 1rem;
  transition: color 0.15s, background 0.15s;
  text-decoration: none;
}
.nav-dropdown a:hover { color: var(--primary); background: var(--secondary-bg); }
.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
html[data-theme="dark"] .nav-dropdown {
  background: hsl(210, 22%, 14%);
  border-color: var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.nav-right { display: flex; align-items: center; gap: 0.75rem; }
.nav-social { display: flex; align-items: center; gap: 0.125rem; }
.nav-social-link {
  display: flex; align-items: center; justify-content: center;
  padding: 0.375rem; border-radius: 0.375rem;
  color: var(--muted); transition: color 0.2s, background 0.2s;
}
.nav-social-link:hover { color: var(--primary); background: var(--secondary-bg); }
.nav-social--in-menu { display: none; }
.phone-link { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--primary); }
.lang-btn {
  display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 500;
  color: var(--muted); background: none; border: none; cursor: pointer; padding: 0.25rem 0.5rem;
  border-radius: 0.375rem; transition: all 0.2s; font-family: inherit;
}
.lang-btn:hover { color: var(--primary); background: var(--secondary-bg); }
.theme-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border: none; border-radius: 0.5rem;
  background: transparent; color: var(--muted); cursor: pointer; transition: background 0.2s, color 0.2s;
}
.theme-toggle:hover { background: var(--secondary-bg); color: var(--primary); }
.theme-toggle--menu { display: none; }
.hamburger { background: none; border: none; cursor: pointer; padding: 0.5rem; color: var(--foreground); }
.mobile-btns { display: none; align-items: center; gap: 0.5rem; }
.mobile-menu {
  display: none; flex-direction: column; gap: 1rem;
  padding: 0 1.5rem 1.5rem; background: #fff; border-bottom: 1px solid var(--border);
}
.mobile-menu a:not(.btn) { font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.mobile-menu a:not(.btn):hover { color: var(--primary); }
.mobile-menu .btn.btn-primary {
  color: var(--primary-fg);
  min-height: 2.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}
.mobile-menu .phone-link { color: var(--primary); font-weight: 600; }
.mobile-menu-toolbar {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding-bottom: 0.75rem; margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .theme-toggle--menu {
  display: inline-flex;
}
.mobile-menu .nav-social--in-menu {
  display: flex; align-items: center; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }

.mobile-nav-group { display: flex; flex-direction: column; gap: 0; padding-bottom: 0.35rem; margin-bottom: 0.15rem; }
.mobile-nav-group-head {
  display: flex; align-items: center; justify-content: space-between; gap: 0.5rem;
}
.mobile-nav-group-link {
  flex: 1;
  padding: 0.25rem 0;
  font-size: 0.875rem; font-weight: 500; color: var(--muted);
}
.mobile-nav-group-link:hover { color: var(--primary); }
.mobile-nav-group-toggle {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border: none; border-radius: 0.5rem;
  background: var(--secondary-bg); color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-group-toggle:hover { color: var(--primary); }
.mobile-nav-group-toggle[aria-expanded="true"] .mobile-nav-chevron { transform: rotate(180deg); }
.mobile-nav-chevron { transition: transform 0.2s ease; }
.mobile-nav-group-panel {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0.5rem 0 0 0.75rem;
  border-left: 2px solid var(--primary);
  margin-left: 0.25rem;
}
.mobile-nav-group-panel[hidden] { display: none !important; }
.mobile-nav-group-panel a { font-size: 0.8125rem; font-weight: 500; }

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-social--desktop { display: none; }
  .mobile-btns { display: flex; }
  .nav-inner { height: 4rem; }
}
@media (min-width: 769px) {
  .nav-inner { height: 5rem; }
}

/* ===== HERO BANNER SLIDER ===== */
.hero {
  position: relative; min-height: 90vh; display: flex; align-items: center; padding-top: 5rem;
  overflow: hidden;
}

.hero-slider {
  position: absolute; inset: 0; z-index: 0;
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-slide.active img {
  animation: heroZoom 6s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: var(--hero-overlay);
}

.hero-slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.75rem;
}

.hero-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.2);
}

.hero-dot:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.4);
}

.hero-content { position: relative; z-index: 10; }
.hero-text { max-width: 42rem; display: flex; flex-direction: column; gap: 1.5rem; }
.hero-stars { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; color: var(--gold); }
.hero-rating { color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 500; margin-left: 0.5rem; }

.hero-title-animated {
  font-size: 2.5rem; color: var(--primary-fg);
  letter-spacing: -0.03em; line-height: 1.1;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
  display: flex; flex-direction: column; gap: 0.25rem;
}

.hero-title-line {
  display: block;
  animation: heroFadeSlideIn 0.8s ease-out both;
}

.hero-title-line--1 { animation-delay: 0.2s; }

/* Omotač: jednom uvodna animacija. Rotacija ide na unutrašnjem spanu da se heroFadeSlideIn ne bi ponovo pokretao. */
.hero-rotating-line {
  display: block;
  animation: heroFadeSlideIn 0.8s ease-out 0.5s both;
  min-height: 1.15em;
}

.hero-rotating-word {
  display: inline-block;
  color: var(--primary-light);
  vertical-align: top;
  will-change: opacity, transform;
}

/* Samo na elementu koji rotira — nikad heroFadeSlideIn, pa nema duplog ulaska */
.hero-rotating-word.hero-word-exit {
  animation: heroWordOut 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-rotating-word.hero-word-enter {
  animation: heroWordIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroWordOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(0.12em); }
}

@keyframes heroWordIn {
  from { opacity: 0; transform: translateY(-0.12em); }
  to { opacity: 1; transform: translateY(0); }
}

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

.hero-subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,0.88);
  max-width: 34rem; line-height: 1.65;
}

.hero-subtitle-animated {
  animation: heroFadeSlideIn 0.8s ease-out 0.7s both;
}

.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-buttons-animated {
  animation: heroFadeSlideIn 0.8s ease-out 0.9s both;
}

.hero-location {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.78); font-size: 0.875rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 0.25rem; padding-top: 1rem; max-width: 34rem;
}

.hero-location-animated {
  animation: heroFadeSlideIn 0.8s ease-out 1.1s both;
}

@media (min-width: 769px) {
  .hero-title-animated { font-size: 3.5rem; }
}

.hero-scroll-hint {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  z-index: 15; color: rgba(255,255,255,0.55); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: heroScrollBounce 2.2s ease-in-out infinite;
}
@keyframes heroScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.55; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-hint { animation: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-strip {
  background: linear-gradient(135deg, hsl(174, 45%, 32%), hsl(210, 35%, 24%));
  color: #fff; padding: 2rem 0;
}
.cta-strip--alt {
  background: linear-gradient(135deg, hsl(210, 32%, 26%), hsl(174, 40%, 30%));
}
.cta-strip-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.25rem;
}
.cta-strip-text { font-size: 1.125rem; font-weight: 700; max-width: 36rem; line-height: 1.4; }
.cta-strip-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.why-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: hsla(174, 55%, 42%, 0.18);
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, hsla(174, 55%, 42%, 0.14), hsla(174, 55%, 42%, 0.04));
  color: var(--primary);
  transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1), background 0.35s ease, box-shadow 0.35s ease;
}
.why-card:hover .why-icon {
  transform: scale(1.06);
  background: linear-gradient(145deg, hsla(174, 55%, 42%, 0.22), hsla(174, 55%, 42%, 0.08));
  box-shadow: 0 8px 20px -8px hsla(174, 55%, 38%, 0.35);
}
.why-svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
html[data-theme="dark"] .why-icon {
  background: linear-gradient(145deg, hsla(174, 45%, 40%, 0.2), hsla(210, 18%, 18%, 0.45));
}
html[data-theme="dark"] .why-card:hover .why-icon {
  background: linear-gradient(145deg, hsla(174, 45%, 40%, 0.28), hsla(210, 18%, 22%, 0.55));
}
.why-title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

.biz-list { list-style: none; max-width: 40rem; margin: 0 auto; display: flex; flex-direction: column; gap: 0.875rem; }
.biz-item {
  display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: var(--muted); line-height: 1.5;
}
.biz-item svg { flex-shrink: 0; color: var(--primary); margin-top: 0.15rem; }

.team-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem; text-align: center; box-shadow: var(--shadow-card);
}
.team-photo {
  width: 8rem; height: 8rem; border-radius: 50%; object-fit: cover; margin: 0 auto 1.25rem;
  border: 3px solid var(--secondary-bg);
}
.team-photo--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--primary), hsl(174, 50%, 28%));
  color: #fff; font-size: 1.75rem; font-weight: 800;
}
.team-name { font-size: 1.125rem; margin-bottom: 0.35rem; }
.team-role { font-size: 0.8125rem; font-weight: 600; color: var(--primary); margin-bottom: 0.75rem; }
.team-bio { font-size: 0.875rem; color: var(--muted); line-height: 1.55; text-align: left; }

.gallery-caption {
  font-size: 0.8125rem; color: var(--muted); padding: 0.5rem 0.25rem 0; text-align: center; line-height: 1.35;
}
.reviews-disclaimer {
  font-size: 0.8125rem; color: var(--muted); max-width: 36rem; margin: 1rem auto 0; line-height: 1.5;
  text-align: center;
}

.container--narrow { max-width: 720px; }

.faq-list { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--card-bg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: center;
  position: relative;
  padding: 1rem 2.75rem 1rem 1.25rem;
  text-align: center; font-size: 0.9375rem; font-weight: 600; font-family: inherit;
  background: none; border: none; cursor: pointer; color: var(--foreground);
}
.faq-q > span:first-child {
  flex: 1;
  text-align: center;
  padding: 0 0.25rem;
  line-height: 1.45;
}
.faq-q:hover { background: var(--secondary-bg); }
.faq-chevron {
  position: absolute;
  right: 1.25rem;
  top: 50%;
  margin-top: -0.2rem;
  width: 0.5rem; height: 0.5rem;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg); transition: transform 0.25s; flex-shrink: 0;
}
.faq-item--open .faq-chevron { transform: rotate(-135deg); margin-top: 0.1rem; }
.faq-a {
  padding: 0.5rem 1.5rem 1.35rem;
  font-size: 0.875rem; color: var(--muted); line-height: 1.75;
  text-align: center;
  border-top: 1px solid var(--border);
  background: hsla(174, 35%, 96%, 0.4);
}
html[data-theme="dark"] .faq-a {
  background: hsla(210, 22%, 16%, 0.5);
}
.faq-a p {
  margin: 0 auto;
  max-width: 38rem;
}
.faq-a[hidden] { display: none; }

.blog-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.75rem; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 0.75rem;
  align-items: center; text-align: center;
}
.blog-title { width: 100%; }
.blog-title a { color: var(--foreground); transition: color 0.2s; }
.blog-title a:hover { color: var(--primary); }
.blog-excerpt {
  font-size: 0.875rem; color: var(--muted); flex: 1; line-height: 1.55;
  text-align: center;
}
.blog-more { font-size: 0.875rem; font-weight: 600; color: var(--primary); text-align: center; }

.map-container--section { margin-top: 2rem; }

.footer-legal-links { margin-top: 0.75rem; }
.link-like {
  background: none; border: none; color: rgba(255,255,255,0.85); cursor: pointer;
  font-size: inherit; font-family: inherit; text-decoration: underline; padding: 0;
}
.link-like:hover { color: #fff; }

.fab-mobile {
  position: fixed; bottom: max(1rem, env(safe-area-inset-bottom)); right: max(1rem, env(safe-area-inset-right));
  z-index: 45; display: none; flex-direction: column; gap: 0.5rem;
}
@media (max-width: 768px) {
  .fab-mobile { display: flex; }
}
.fab-btn {
  width: 3.25rem; height: 3.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.fab-tel { background: var(--primary); }
.fab-wa { background: #25d366; }

.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: var(--card-bg); border-top: 1px solid var(--border);
  padding: 1rem 0; box-shadow: 0 -4px 24px rgba(15, 23, 42, 0.08);
}
.cookie-bar[hidden] { display: none !important; }
.cookie-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.cookie-bar-inner p { font-size: 0.8125rem; color: var(--muted); max-width: 48rem; line-height: 1.5; }
.cookie-bar-actions {
  display: flex; align-items: center; gap: 0.75rem 1rem; flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-bar-btns { display: inline-flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.cookie-bar-reject {
  border-color: var(--border) !important;
  color: var(--foreground) !important;
  background: transparent !important;
}
.cookie-bar-reject:hover {
  background: var(--secondary-bg) !important;
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
html[data-theme="dark"] .cookie-bar-reject {
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
@media (max-width: 768px) {
  .cookie-bar-inner { flex-direction: column; align-items: stretch; }
  .cookie-bar-actions { flex-direction: column; align-items: stretch; justify-content: flex-start; }
  .cookie-bar-btns { width: 100%; justify-content: stretch; }
  .cookie-bar-btns .btn { flex: 1; min-height: 2.5rem; justify-content: center; }
  .cookie-bar-privacy { align-self: center; margin-top: 0.25rem; }
}

.modal {
  position: fixed; inset: 0; z-index: 110; display: flex; align-items: center; justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
}
.modal[hidden] { display: none !important; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.65); cursor: pointer; }
.modal-panel {
  position: relative; z-index: 1; width: min(100%, 36rem); max-height: min(85vh, 640px);
  overflow: auto; background: var(--card-bg); border-radius: var(--radius);
  border: 1px solid var(--border); box-shadow: var(--shadow-md); padding: 2rem 1.5rem 1.5rem;
}
.modal-close {
  position: absolute; top: 0.75rem; right: 0.75rem; width: 2.25rem; height: 2.25rem;
  border: none; background: var(--secondary-bg); border-radius: 50%; font-size: 1.5rem; line-height: 1;
  cursor: pointer; color: var(--foreground);
}
.modal-body { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.legal-p { margin-bottom: 1rem; }
.legal-p code { font-size: 0.8em; background: var(--secondary-bg); padding: 0.1em 0.35em; border-radius: 0.25rem; }

.hero-stars-row { display: inline-flex; gap: 0.15rem; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-gradient { background: var(--section-gradient); }
.section-header { text-align: center; max-width: 40rem; margin: 0 auto 3.5rem; }
.section-header h2 { letter-spacing: -0.03em; }
.section-label { font-size: 0.8125rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 0.75rem; }
.section-subtitle { margin-top: 1rem; color: var(--muted); line-height: 1.65; }
@media (min-width: 769px) { .section { padding: 7rem 0; } }

/* ===== SERVICES ===== */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border); transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow-card);
}
.service-card:hover {
  border-color: hsla(174, 62%, 38%, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--secondary-bg), hsl(174, 30%, 92%));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: all 0.3s ease;
  padding: 0.625rem;
  border: 1px solid hsl(174, 30%, 88%);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, hsl(174, 50%, 90%), hsl(174, 45%, 85%));
  border-color: hsla(174, 62%, 38%, 0.4);
  transform: scale(1.08);
  box-shadow: 0 4px 16px hsla(174, 62%, 38%, 0.15);
}

.service-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ===== ABOUT ===== */
.about-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 769px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-desc { color: var(--muted); line-height: 1.75; margin-bottom: 2rem; max-width: 38rem; }
.features-grid { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
.feature-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; }
.feature-item svg { flex-shrink: 0; color: var(--primary); }
.stats-box {
  aspect-ratio: 1; max-width: 22rem; margin-inline: auto; border-radius: 1rem;
  background: var(--secondary-bg);
  border: 1px solid hsla(174, 30%, 88%, 0.8);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2rem; text-align: center;
}
.stat-number { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; }
.stat-number.text-primary { color: var(--primary); }
.stat-label { font-size: 0.875rem; color: var(--muted); margin-bottom: 1rem; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid; gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 480px) { .gallery-grid { gap: 1rem; } }
@media (min-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.gallery-item {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  background: var(--secondary-bg); transition: box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.gallery-item:hover { box-shadow: var(--shadow-md); border-color: hsl(210, 20%, 88%); }
.gallery-item-btn {
  display: block; width: 100%; padding: 0; border: none;
  cursor: zoom-in; background: transparent; font: inherit; color: inherit;
  aspect-ratio: 4 / 3; flex-shrink: 0; overflow: hidden;
}
.gallery-item-btn:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }
.gallery-item-btn img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease; pointer-events: none;
}
.gallery-item:hover .gallery-item-btn img { transform: scale(1.05); }
@media (prefers-reduced-motion: reduce) {
  .gallery-item:hover .gallery-item-btn img { transform: none; }
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox-backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.92); cursor: pointer; }
.gallery-lightbox-figure {
  position: relative; z-index: 1; margin: 0;
  width: min(96vw, 1200px);
  max-height: min(92vh, 960px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}
.gallery-lightbox-img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: min(68vh, 780px);
  margin: 0 auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}
.gallery-lightbox-caption {
  flex-shrink: 0;
  margin-top: 1rem;
  padding: 0.9rem 1.15rem 1rem;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  max-width: 100%;
  box-sizing: border-box;
}
.gallery-lightbox-caption:empty {
  display: none !important;
}
@media (max-width: 768px) {
  .gallery-lightbox-caption {
    font-size: 0.875rem;
    padding: 0.75rem 0.9rem 0.85rem;
    line-height: 1.5;
  }
  .gallery-lightbox-img { max-height: min(58vh, 640px); }
}
.gallery-lightbox-close {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top));
  right: max(0.75rem, env(safe-area-inset-right));
  z-index: 2; width: 2.75rem; height: 2.75rem;
  display: flex; align-items: center; justify-content: center;
  border: none; border-radius: 50%; background: rgba(255,255,255,0.12);
  color: #fff; cursor: pointer; transition: background 0.2s;
}
.gallery-lightbox-close:hover { background: rgba(255,255,255,0.22); }
.gallery-lightbox-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ===== REVIEWS CAROUSEL ===== */
.reviews-carousel {
  position: relative;
  padding: 0 2.75rem;
  margin: 0 -0.5rem;
}
@media (min-width: 769px) {
  .reviews-carousel {
    padding: 0 clamp(3.25rem, 5vw, 4.5rem);
    margin: 0;
  }
}
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; flex-wrap: wrap; }
.stars-gold { display: flex; color: var(--gold); }
.reviews-score { color: var(--muted); font-size: 0.9rem; text-align: center; }
.reviews-score strong { color: var(--foreground); font-size: 1.125rem; }

.reviews-track-wrapper {
  overflow: hidden;
  border-radius: 0.5rem;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  .reviews-track-wrapper { border-radius: var(--radius); }
}
.reviews-track {
  --pages: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  width: calc(var(--pages, 1) * 100%);
  min-height: min-content;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.reviews-page {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 1rem;
  flex: 0 0 calc(100% / var(--pages, 1));
  min-width: 0;
  box-sizing: border-box;
}
.review-card {
  background: var(--card-bg);
  border-radius: 0.5rem;
  padding: 1rem 1rem 1.15rem;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, border-color 0.25s;
  min-width: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .reviews-carousel {
    padding: 0 1.85rem;
    margin: 0;
  }
  .reviews-page {
    gap: 0.65rem;
  }
  .reviews-track-wrapper {
    margin-inline: auto;
    width: 100%;
    max-width: 100%;
  }
  .review-card {
    padding: 0.95rem 0.75rem 1rem;
    border-radius: 0.625rem;
    justify-content: flex-start;
  }
  .review-quote {
    top: 0.55rem;
  }
  .review-quote svg {
    width: 1.4rem;
  }
  .review-stars {
    margin-bottom: 0.35rem;
  }
  .review-text {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.45rem;
    display: grid;
    place-content: center;
    text-align: center;
    padding-inline: 0;
    text-wrap: balance;
  }
  .review-name {
    padding-top: 0.1rem;
  }
}
@media (min-width: 769px) {
  .review-card {
    border-radius: var(--radius);
    padding: 2rem 1.75rem 2.25rem;
    min-height: min-content;
  }
}
.review-card:hover { box-shadow: var(--shadow-md); border-color: hsl(210, 20%, 88%); }
.review-quote {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  color: hsla(174, 62%, 38%, 0.1);
  pointer-events: none;
}
.review-quote svg {
  width: clamp(1.75rem, 4vw, 2.25rem);
  height: auto;
  display: block;
  margin-inline: auto;
}
@media (min-width: 769px) {
  .review-quote { top: 1.25rem; }
}
.review-stars {
  display: flex; justify-content: center; color: var(--gold); margin-bottom: 0.65rem;
  flex-shrink: 0;
}
@media (min-width: 769px) {
  .review-stars { margin-bottom: 1rem; }
}
.review-text {
  font-size: 0.8125rem; color: var(--muted); line-height: 1.55; margin-bottom: 0.85rem;
  text-align: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  min-height: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
@media (min-width: 769px) {
  .review-text {
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }
}
.review-name {
  font-size: 0.8125rem; font-weight: 700;
  text-align: center;
  color: var(--foreground);
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 769px) {
  .review-name { font-size: 0.875rem; }
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 2.35rem; height: 2.35rem; border-radius: 50%; background: var(--card-bg);
  border: 1px solid var(--border); box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  color: var(--foreground); transition: background 0.2s, box-shadow 0.2s;
}
.carousel-btn:hover { background: var(--secondary-bg); box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12); }
.carousel-btn:active { transform: translateY(-50%) scale(0.96); }
.carousel-prev { left: 0.15rem; }
.carousel-next { right: 0.15rem; }
@media (min-width: 769px) {
  .carousel-btn { width: 2.5rem; height: 2.5rem; }
  .carousel-prev { left: 0; }
  .carousel-next { right: 0; }
}
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.75rem;
  flex-wrap: wrap;
  padding-bottom: 0.25rem;
}
.carousel-dot {
  width: 0.625rem; height: 0.625rem; border-radius: 50%; border: none;
  cursor: pointer; transition: background 0.2s, transform 0.2s; background: var(--border);
  padding: 0;
}
.carousel-dot.active { background: var(--primary); transform: scale(1.15); }
html[data-theme="dark"] .carousel-btn {
  background: hsl(210, 22%, 14%);
  border-color: var(--border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
html[data-theme="dark"] .carousel-btn:hover {
  background: hsl(210, 22%, 18%);
}

/* ===== CONTACT ===== */
.contact-cards { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--card-bg); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--border); text-align: center;
  box-shadow: var(--shadow-card); transition: box-shadow 0.25s, transform 0.25s;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-icon {
  width: 3rem; height: 3rem; border-radius: 0.5rem; background: var(--secondary-bg);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem;
  color: var(--primary);
}
.contact-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.contact-value { color: var(--primary); font-weight: 600; font-size: 1rem; word-break: break-all; }
.contact-value:hover { text-decoration: underline; }
.contact-value-text { color: var(--muted); white-space: pre-line; }
.map-container {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 20rem;
  box-shadow: var(--shadow-card);
}

/* ===== PRICING ===== */
.pricing-disclaimer {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  padding: 0.875rem 1.125rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
  background: var(--secondary-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.pricing-card {
  max-width: 40rem;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pricing-rows { padding: 0.25rem 0; }
.pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-name { color: var(--foreground); font-weight: 500; flex: 1; min-width: 0; }
.pricing-amount {
  color: var(--primary);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .pricing-row { flex-direction: column; align-items: flex-start; gap: 0.35rem; padding: 1rem 1.25rem; }
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, hsl(210, 22%, 14%) 0%, hsl(210, 25%, 11%) 100%);
  color: rgba(255,255,255,0.72); padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
@media (min-width: 769px) { .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; align-items: flex-start; } }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 769px) { .footer-brand { align-items: flex-start; } }
.footer-logo {
  display: inline-flex; align-items: center; gap: 0.4rem; line-height: 1;
  font-size: 1.1rem; font-weight: 800; color: #fff;
}
.footer-logo .logo-icon { color: var(--primary-light); }
.footer-tagline { font-size: 0.875rem; margin-top: 0.625rem; color: rgba(255,255,255,0.55); }
.footer-social {
  display: flex; align-items: center; justify-content: center;
  gap: 0.375rem; margin-top: 1rem;
}
@media (min-width: 769px) { .footer-social { justify-content: flex-start; } }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  color: rgba(255,255,255,0.55); transition: color 0.2s, background 0.2s;
}
.footer-social-link:hover { color: var(--gold); background: rgba(255,255,255,0.06); }
.footer-info { font-size: 0.875rem; line-height: 1.65; }
.footer-info a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.footer-info a:hover { color: #fff; }
@media (min-width: 769px) { .footer-info { text-align: right; } }
