@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

::selection {
  background: #17A34A;
  color: #fff;
}

:root {
  --font-inter: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --background: 0 0% 99%;
  --foreground: 150 10% 12%;
  --card: 0 0% 100%;
  --card-foreground: 150 10% 12%;
  --popover: 0 0% 100%;
  --popover-foreground: 150 10% 12%;
  --primary: 152 45% 28%;
  --primary-foreground: 0 0% 100%;
  --secondary: 150 15% 95%;
  --secondary-foreground: 150 10% 12%;
  --muted: 150 10% 94%;
  --muted-foreground: 150 5% 45%;
  --accent: 35 80% 52%;
  --accent-foreground: 0 0% 100%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --border: 150 12% 88%;
  --input: 150 12% 88%;
  --ring: 152 45% 28%;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-inter);
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

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

.font-inter { font-family: var(--font-inter); }
.font-display { font-family: var(--font-display); }

.bg-background { background: hsl(var(--background)); }
.bg-foreground { background: hsl(var(--foreground)); }
.bg-card { background: hsl(var(--card)); }
.bg-primary { background: hsl(var(--primary)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-border { background: hsl(var(--border)); }

.text-foreground { color: hsl(var(--foreground)); }
.text-background { color: hsl(var(--background)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }

.border-border { border-color: hsl(var(--border)); }

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.35s ease, box-shadow 0.35s ease;
  height: 64px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .navbar { height: 80px; }
}

.navbar-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .navbar-inner { padding: 0 2rem; }
}

.navbar.transparent {
  background: transparent;
}

.navbar.solid {
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

/* Logo */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.logo-icon {
  width: 2rem;
  height: 2rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.navbar.transparent .logo-text { color: white; }
.navbar.transparent .logo-icon { background: white; border-radius: 0.5rem; }
.navbar.solid .logo-text { color: hsl(var(--foreground)); }

/* Desktop nav */
.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}

.navbar.transparent .nav-link { color: rgba(255,255,255,0.8); }
.navbar.transparent .nav-link:hover { color: white; }
.navbar.solid .nav-link { color: hsl(var(--foreground) / 0.7); }
.navbar.solid .nav-link:hover { color: hsl(var(--primary)); }
.navbar.solid .nav-link.active {
  color: hsl(var(--primary)) !important;
  background: hsl(var(--primary) / 0.1);
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  margin: -0.3rem -0.6rem;
}
.navbar.transparent .nav-link.active {
  color: rgba(255,255,255,0.8) !important;
}

/* CTA button */
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 10px 15px -3px hsl(var(--primary) / 0.25);
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.nav-cta:hover { background: hsl(var(--primary) / 0.9); }

@media (min-width: 768px) {
  .nav-cta { display: inline-flex; }
}

.nav-cta svg { width: 0.875rem; height: 0.875rem; }

/* Mobile hamburger */
.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}

.mobile-toggle svg { width: 1.25rem; height: 1.25rem; }

.navbar.transparent .mobile-toggle { color: white; }
.navbar.solid .mobile-toggle { color: hsl(var(--foreground)); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(var(--card) / 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid hsl(var(--border));
  padding: 1rem 1.25rem 1.5rem;
  animation: slideDown 0.3s ease;
}

.mobile-menu.open { display: block; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a.mobile-link {
  display: block;
  padding: 0.75rem 0;
  color: hsl(var(--foreground) / 0.8);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.mobile-menu a.mobile-link:hover { color: hsl(var(--primary)); }
.mobile-menu a.mobile-link.active { color: hsl(var(--primary)); }

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.75rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.mobile-cta svg { width: 1rem; height: 1rem; }

/* ═══════════════════════════════════════
   PAGE HERO (subpages)
   ═══════════════════════════════════════ */

.page-hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: hsl(var(--secondary) / 0.6);
  border-bottom: 1px solid hsl(var(--border));
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://media.base44.com/images/public/69bff6d5c0e037ad634e2863/5af9d6cab_generated_aa93e49f.png') center/cover no-repeat;
  opacity: 0.05;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  animation: fadeInUp 0.5s ease forwards;
}

@media (min-width: 768px) {
  .page-hero-content { padding: 0 2rem; }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
  font-family: var(--font-inter);
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: hsl(var(--primary)); }

.breadcrumb svg { width: 0.875rem; height: 0.875rem; }

.breadcrumb .current { color: hsl(var(--foreground)); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .page-hero h1 { font-size: 3rem; }
}

.page-hero .subtitle {
  margin-top: 0.75rem;
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  font-family: var(--font-inter);
  font-size: 1rem;
}

/* ═══════════════════════════════════════
   FOOTER — BIG
   ═══════════════════════════════════════ */

/* CTA Banner */
.footer-cta-banner {
  background: hsl(var(--primary));
  position: relative;
  overflow: hidden;
}

.footer-cta-inner {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

@media (min-width: 768px) {
  .footer-cta-inner { padding: 5rem 2rem; }
}

.footer-cta-blob-1 {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 28rem;
  height: 28rem;
  background: rgba(255,255,255,0.06);
  border-radius: 9999px;
  filter: blur(60px);
  pointer-events: none;
}

.footer-cta-blob-2 {
  position: absolute;
  bottom: -30%;
  left: -8%;
  width: 20rem;
  height: 20rem;
  background: rgba(255,255,255,0.04);
  border-radius: 9999px;
  filter: blur(50px);
  pointer-events: none;
}

.footer-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-cta-content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .footer-cta-content h2 { font-size: 2.25rem; }
}

.footer-cta-content > p {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-inter);
}

.footer-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 480px) {
  .footer-cta-buttons { flex-direction: row; }
}

.footer-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: hsl(var(--primary));
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-inter);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.footer-cta-btn-primary svg { width: 1rem; height: 1rem; }

.footer-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.8rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-inter);
  transition: background 0.2s ease;
}

.footer-cta-btn-secondary:hover { background: rgba(255,255,255,0.2); }
.footer-cta-btn-secondary svg { width: 1rem; height: 1rem; }

/* Main Footer */
.footer-main {
  background: hsl(var(--foreground));
  color: hsl(var(--background) / 0.6);
  padding: 4rem 0 3rem;
}

.footer-main-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  gap: 3rem 2rem;
}

@media (min-width: 640px) {
  .footer-main-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-main-inner {
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .footer-main-inner {
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
}

/* Brand column */
.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  background: white;
  border-radius: 0.5rem;
}

.footer-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  color: hsl(var(--background) / 0.9);
  letter-spacing: -0.025em;
}

.footer-brand-desc {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: hsl(var(--background) / 0.45);
  font-family: var(--font-inter);
  max-width: 22rem;
}

.footer-social-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: hsl(var(--background) / 0.06);
  border: 1px solid hsl(var(--background) / 0.08);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-family: var(--font-inter);
  font-weight: 500;
  color: hsl(var(--background) / 0.55);
  letter-spacing: 0.01em;
}

.footer-badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: hsl(152 45% 45%);
  border-radius: 9999px;
}

/* Column titles */
.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: hsl(var(--background) / 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

/* Link columns */
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-col-links a {
  font-size: 0.8125rem;
  font-family: var(--font-inter);
  color: hsl(var(--background) / 0.45);
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: block;
}

.footer-col-links a:hover {
  color: hsl(var(--background) / 0.85);
  padding-left: 0.25rem;
}

/* Contact column */
.footer-col-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsl(var(--background) / 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: hsl(152 45% 50%);
}

.footer-col-contact li div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-col-contact li div a,
.footer-col-contact li div span {
  font-size: 0.8125rem;
  font-family: var(--font-inter);
  color: hsl(var(--background) / 0.55);
  transition: color 0.2s ease;
  display: block;
}

.footer-col-contact li div a:hover {
  color: hsl(var(--background) / 0.9);
}

/* Bottom Bar */
.footer-bottom {
  background: hsl(150 12% 10%);
  border-top: 1px solid hsl(var(--background) / 0.06);
}

.footer-bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-family: var(--font-inter);
  color: hsl(var(--background) / 0.3);
}

@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    padding: 1.25rem 2rem;
  }
}

.footer-bottom-tagline {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ═══════════════════════════════════════
   HOME: HERO SECTION
   ═══════════════════════════════════════ */

.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,43,26,0.8), rgba(15,51,32,0.55), rgba(7,26,15,0.85));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 80rem;
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
  width: 100%;
}

@media (min-width: 768px) {
  .hero-content { padding: 6rem 2rem 4rem; }
}

.hero-inner {
  max-width: 42rem;
  animation: heroFadeIn 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}

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

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(20,83,45,0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(34,197,94,0.3);
  color: rgba(187,247,208,0.9);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 0.375rem;
  height: 0.375rem;
  background: #4ade80;
  border-radius: 9999px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 4.5rem; } }

.hero-title .accent { color: #4ade80; }

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 32rem;
  font-family: var(--font-inter);
  font-weight: 300;
}

@media (min-width: 640px) { .hero-desc { font-size: 1.125rem; } }

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) { .hero-buttons { flex-direction: row; } }

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: #16a34a;
  color: white;
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(20,83,45,0.4);
  letter-spacing: 0.025em;
  transition: background 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-hero-primary:hover { background: #15803d; }
.btn-hero-primary svg { width: 1rem; height: 1rem; }

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 1rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.2s ease;
  cursor: pointer;
}

.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 28rem;
}

.hero-stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-inter);
}

@media (min-width: 640px) { .hero-stat-num { font-size: 1.875rem; } }

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  font-family: var(--font-inter);
}

.scroll-chevron {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
  animation: fadeInChevron 1.2s ease forwards;
  opacity: 0;
}

.scroll-chevron:hover { color: rgba(255,255,255,0.7); }

.scroll-chevron svg {
  width: 1.5rem;
  height: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes fadeInChevron {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */

.section-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .section-container { padding: 0 2rem; }
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
  font-family: var(--font-inter);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(var(--foreground));
  letter-spacing: -0.025em;
}

@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-desc {
  margin-top: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 32rem;
  font-size: 1rem;
  font-family: var(--font-inter);
}

/* ═══════════════════════════════════════
   HOME: SERVICES SECTION
   ═══════════════════════════════════════ */

.services-section {
  padding: 6rem 0 6rem;
  background: hsl(var(--background));
}

@media (min-width: 768px) { .services-section { padding: 8rem 0; } }

.services-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.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); gap: 2rem; } }

.service-card {
  position: relative;
  background: hsl(var(--card));
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
  transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.service-card:hover {
  border-color: hsl(var(--primary) / 0.3);
  box-shadow: 0 20px 25px -5px hsl(var(--primary) / 0.05);
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}

.service-card:hover .service-card-img img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.service-card-body p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-family: var(--font-inter);
}

.services-footer-note {
  text-align: center;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-top: 2.5rem;
  font-family: var(--font-inter);
}

.sluzby-extra-note {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  background: hsl(var(--muted) / 0.4);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.sluzby-extra-note h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(var(--foreground));
}
.sluzby-extra-note p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}
.sluzby-extra-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}
.sluzby-extra-note ul li {
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  font-weight: 500;
  padding-left: 1rem;
  position: relative;
}
.sluzby-extra-note ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(var(--primary));
  font-weight: 700;
}

/* ═══════════════════════════════════════
   HOME: BENEFITS SECTION
   ═══════════════════════════════════════ */

.benefits-section {
  padding: 6rem 0;
  background: hsl(var(--secondary) / 0.5);
}

@media (min-width: 768px) { .benefits-section { padding: 8rem 0; } }

.benefits-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

.benefits-left .section-title {
  line-height: 1.15;
}

.benefits-left .section-title .accent {
  color: hsl(var(--primary));
}

.benefits-left .desc {
  margin-top: 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 1rem;
  line-height: 1.7;
  max-width: 28rem;
  font-family: var(--font-inter);
}

.avatar-row {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.avatar-stack {
  display: flex;
}

.avatar-stack > * + * { margin-left: -0.75rem; }

.avatar-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  border: 2px solid hsl(var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--primary));
  font-family: var(--font-inter);
}

.avatar-text {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-inter);
}

.avatar-text strong {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.benefits-cards {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .benefits-cards { grid-template-columns: repeat(2, 1fr); } }

.benefit-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  border-color: hsl(var(--primary) / 0.2);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.benefit-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }

.benefit-card h3 {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-family: var(--font-inter);
  font-size: 0.875rem;
}

.benefit-card p {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
  font-family: var(--font-inter);
}

/* ═══════════════════════════════════════
   HOME: LOCATION SECTION
   ═══════════════════════════════════════ */

.location-section {
  padding: 6rem 0;
  background: hsl(var(--background));
}

@media (min-width: 768px) { .location-section { padding: 8rem 0; } }

.location-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.location-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) { .location-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .location-grid { grid-template-columns: repeat(4, 1fr); } }

.location-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.location-card:hover {
  border-color: hsl(var(--primary) / 0.25);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.location-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: hsl(var(--primary) / 0.1);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }

.location-card h3 {
  font-weight: 600;
  color: hsl(var(--foreground));
  font-family: var(--font-inter);
}

.location-card p {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
  font-family: var(--font-inter);
}

/* ═══════════════════════════════════════
   HOME: CONTACT SECTION
   ═══════════════════════════════════════ */

.contact-section {
  padding: 6rem 0;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) { .contact-section { padding: 8rem 0; } }

.contact-blob-1 {
  position: absolute;
  top: 0; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(255,255,255,0.05);
  border-radius: 9999px;
  filter: blur(48px);
  transform: translate(50%, -50%);
}

.contact-blob-2 {
  position: absolute;
  bottom: 0; left: 0;
  width: 16rem; height: 16rem;
  background: rgba(255,255,255,0.05);
  border-radius: 9999px;
  filter: blur(48px);
  transform: translate(-50%, 50%);
}

.contact-content {
  position: relative;
  z-index: 10;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-header .section-eyebrow {
  color: hsl(var(--primary-foreground) / 0.6);
}

.contact-header .section-title {
  color: hsl(var(--primary-foreground));
}

.contact-header .section-desc {
  color: hsl(var(--primary-foreground) / 0.7);
  margin-left: auto;
  margin-right: auto;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: background 0.3s ease;
  display: block;
}

.contact-card:hover { background: rgba(255,255,255,0.15); }

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.contact-card:hover .contact-card-icon { background: rgba(255,255,255,0.2); }

.contact-card-icon svg { width: 1.25rem; height: 1.25rem; color: white; }

.contact-card .label {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-inter);
  margin-bottom: 0.25rem;
}

.contact-card .value {
  font-weight: 600;
  font-family: var(--font-inter);
  font-size: 0.875rem;
  word-break: break-all;
}

.contact-card .sub {
  font-size: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.5);
  margin-top: 0.25rem;
  font-family: var(--font-inter);
}

/* ═══════════════════════════════════════
   SLUZBY PAGE
   ═══════════════════════════════════════ */

.sluzby-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.sluzby-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .sluzby-container { padding: 0 2rem; } }

.sluzby-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.sluzby-row {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) { .sluzby-row { grid-template-columns: repeat(2, 1fr); } }

.sluzby-row.reverse .sluzby-img-wrap { order: 1; }
@media (min-width: 768px) {
  .sluzby-row.reverse .sluzby-img-wrap { order: 2; }
  .sluzby-row.reverse .sluzby-text { order: 1; }
}

.sluzby-img-wrap {
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
}

.sluzby-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sluzby-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) { .sluzby-text h2 { font-size: 1.875rem; } }

.sluzby-text > p {
  margin-top: 0.75rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.sluzby-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sluzby-details li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: hsl(var(--foreground) / 0.8);
}

.sluzby-details li svg { width: 1rem; height: 1rem; color: hsl(var(--primary)); flex-shrink: 0; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: background 0.2s ease;
}

.btn-primary:hover { background: hsl(var(--primary) / 0.9); }

/* ═══════════════════════════════════════
   PRECO-MY PAGE
   ═══════════════════════════════════════ */

.stats-bar {
  padding: 4rem 0;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); padding: 0 2rem; }
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  margin-top: 0.25rem;
}

.preco-benefits-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.preco-benefits-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .preco-benefits-grid { padding: 0 2rem; } }
@media (min-width: 1024px) { .preco-benefits-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════ */

.gallery-section {
  padding: 6rem 0;
  background: hsl(var(--secondary) / 0.5);
}

@media (min-width: 768px) { .gallery-section { padding: 8rem 0; } }

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease-out;
}

@media (min-width: 640px) {
  .gallery-item img { height: 220px; }
}

@media (min-width: 1024px) {
  .gallery-item img { height: 240px; }
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  animation: lightboxZoom 0.3s ease;
}

@keyframes lightboxZoom {
  from { transform: scale(0.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  font-size: 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
  line-height: 1;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

@media (min-width: 768px) {
  .lightbox-prev { left: 2rem; }
  .lightbox-next { right: 2rem; }
}

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.18); }

.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  font-family: var(--font-inter);
  font-weight: 500;
  background: rgba(0,0,0,0.4);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

/* ═══════════════════════════════════════
   LOKALITA PAGE
   ═══════════════════════════════════════ */

.lokalita-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.lokalita-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .lokalita-container { padding: 0 2rem; } }

.lokalita-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 640px) { .lokalita-grid { grid-template-columns: repeat(2, 1fr); } }

.lokalita-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid hsl(var(--border));
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lokalita-card:hover {
  border-color: hsl(var(--primary) / 0.25);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.lokalita-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.lokalita-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.lokalita-card-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }

.lokalita-card-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.lokalita-card-name h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: hsl(var(--foreground));
}

.lokalita-badge {
  font-size: 0.75rem;
  background: hsl(var(--secondary));
  color: hsl(var(--muted-foreground));
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-family: var(--font-inter);
}

.lokalita-card p {
  margin-top: 0.5rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
}

.lokalita-cta {
  background: hsl(var(--secondary) / 0.7);
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid hsl(var(--border));
}

.lokalita-cta h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(var(--foreground));
}

@media (min-width: 768px) { .lokalita-cta h2 { font-size: 1.875rem; } }

.lokalita-cta > p {
  color: hsl(var(--muted-foreground));
  margin-top: 0.75rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
}

.lokalita-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

@media (min-width: 640px) { .lokalita-cta-buttons { flex-direction: row; } }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s ease;
}

.btn-outline:hover { background: hsl(var(--secondary)); }

.btn-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  transition: background 0.2s ease;
}

.btn-lg:hover { background: hsl(var(--primary) / 0.9); }

/* ═══════════════════════════════════════
   KONTAKT PAGE
   ═══════════════════════════════════════ */

.kontakt-section {
  padding: 5rem 0;
  background: hsl(var(--background));
}

.kontakt-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .kontakt-container { padding: 0 2rem; } }

.kontakt-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) { .kontakt-cards { grid-template-columns: repeat(3, 1fr); } }

.kontakt-card {
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid hsl(var(--border));
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.kontakt-card:hover {
  border-color: hsl(var(--primary) / 0.25);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05);
}

.kontakt-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.1);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kontakt-card-icon svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }

.kontakt-card .label {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.kontakt-card .lines {
  color: hsl(var(--foreground));
  font-weight: 500;
  font-size: 0.875rem;
  word-break: break-all;
}

.kontakt-card .cta-link {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: hsl(var(--primary));
  font-weight: 600;
  font-size: 0.875rem;
  transition: text-decoration 0.2s ease;
}

.kontakt-card .cta-link:hover { text-decoration: underline; }

.kontakt-info-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) { .kontakt-info-grid { grid-template-columns: repeat(2, 1fr); } }

.kontakt-info-card {
  background: hsl(var(--secondary) / 0.5);
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid hsl(var(--border));
}

.kontakt-info-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.kontakt-info-header svg { width: 1.25rem; height: 1.25rem; color: hsl(var(--primary)); }

.kontakt-info-header h3 {
  font-weight: 600;
  color: hsl(var(--foreground));
}

.kontakt-info-card p {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}

.kontakt-info-card ol {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   ANIMATIONS (IntersectionObserver)
   ═══════════════════════════════════════ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.from-left {
  transform: translateX(-30px);
}

.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}

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