/* Leo Consulting Group - shadcn-inspired Dark + Gold Theme (Offline) */

/* Design tokens - refined dark & gold palette (elegant, premium) */
:root {
  --background: #0f0f12;
  --background-elevated: #18181d;
  --foreground: #fafafb;
  --foreground-muted: #d4d4dc;
  --gold: #c9a227;
  --gold-bright: #e5c76b;
  --gold-dark: #a8871e;
  --gold-muted: #9a7b1f;
  --gold-subtle: rgba(201, 162, 39, 0.1);
  --gold-glass: rgba(201, 162, 39, 0.06);
  --card: #1a1a1f;
  --border: #2a2a32;
  --border-subtle: #383842;
  --muted: #52525c;
  --muted-foreground: #b8b8c4;
  --accent: #222228;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --transition-fast: 0.2s var(--ease-out);
  --transition-smooth: 0.35s var(--ease-out);
  --transition-slower: 0.5s var(--ease-in-out);
  /* Shadows - elegant depth, layered */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.2), 0 20px 40px rgba(0, 0, 0, 0.25);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2), 0 40px 60px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 4px 14px rgba(201, 162, 39, 0.18), 0 2px 6px rgba(0, 0, 0, 0.15);
  --shadow-gold-glow: 0 0 24px rgba(201, 162, 39, 0.12), 0 0 48px rgba(201, 162, 39, 0.06);
}

/* Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html {
  overflow-x: clip;
  overflow-y: auto;
  width: 100%;
  scroll-behavior: smooth;
  scrollbar-color: var(--gold-muted) var(--background);
  scrollbar-width: thin;
}
/* Scrollbar - match site colors (gold accent) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--background);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-muted);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-bright);
}
::-webkit-scrollbar-corner {
  background: var(--background);
}
body {
  margin: 0;
  padding-top: 4.5rem;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Gelasio", Georgia, serif;
}

/* Layout utilities */
.container { width: 100%; max-width: 80rem; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .grid.grid-cols-2 { grid-template-columns: repeat(2, 1fr); } }

/* Spacing */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-6 { padding-top: 1.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-14 { margin-top: 3.5rem; }
.mt-16 { margin-top: 4rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }

/* Typography */
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.025em; }
.text-center { text-align: center; }

/* Colors */
.text-white { color: #fff; }
.text-gold { color: var(--gold); }
.text-gold-bright { color: var(--gold-bright); }
.text-muted { color: var(--muted-foreground); }
.text-neutral-300 { color: var(--foreground-muted); }
.text-neutral-400 { color: var(--muted-foreground); }
.text-neutral-500 { color: var(--muted-foreground); }
.bg-card { background-color: var(--card); }
.border-default { border: 1px solid var(--border); }

/* Sizing */
.w-full { width: 100%; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.min-h-90 { min-height: 90vh; }

/* Visibility - mutually exclusive: desktop nav shows on lg+, hamburger on smaller */
.hidden { display: none !important; }
@media (min-width: 768px) {
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
}
@media (max-width: 767px) {
  .md\:flex { display: none !important; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex !important; }
  .lg\:hidden { display: none !important; }
}
@media (max-width: 1023px) {
  .lg\:flex { display: none !important; }
}
/* Effects */
.rounded-lg { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.transition-colors { transition: color 0.2s, background-color 0.2s, border-color 0.2s; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* Buttons - refined gold with elegant animations */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--background);
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--background);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--gold);
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background-color: transparent;
  color: var(--gold-bright);
  transition: background-color var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
  text-decoration: none;
  cursor: pointer;
}
.btn-outline:hover {
  background-color: var(--gold-subtle);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-1px);
}
.btn-outline:active {
  transform: translateY(0);
}
button.btn-outline {
  font-family: inherit;
  line-height: inherit;
}

/* Animation keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.12); }
  50% { box-shadow: 0 0 30px rgba(201, 162, 39, 0.2); }
}
@keyframes zoomIn {
  from { opacity: 0.92; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll-triggered animations - refined with stagger feel */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-hero-image,
  .pricing-hero-image,
  .hero-image img,
  .hero-bg img,
  .about-team-image { animation: none; }
}

/* Fixed header & Nav - refined elegance with shadow */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 15, 18, 0.88);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  border-bottom: 1px solid rgba(42, 42, 50, 0.6);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.02), 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: background var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.sticky-header:hover,
.sticky-header.scrolled {
  background: rgba(18, 18, 22, 0.96);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(255, 255, 255, 0.02);
}

.sticky-header nav {
  min-height: 4.25rem;
}

/* Scroll offset so section titles appear below fixed header */
#hero, #about, #target-audience, #services, #pricing, #comparison, #faq, #contact {
  scroll-margin-top: 5.5rem;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.25rem;
}

.nav-menu a {
  color: var(--foreground-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-md);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--gold-bright);
  background: var(--gold-glass);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transition: transform var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
  transform: translateX(-50%) scale(1);
}

.mobile-menu-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  padding: 0.5rem;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.mobile-menu-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.mobile-menu-btn:active {
  transform: scale(0.97);
}

/* Mobile menu - slide-in from right with fade */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 40;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mobile-menu-backdrop.open {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s var(--ease-out);
}

@media (min-width: 1024px) {
  .mobile-menu-backdrop.lg\:hidden {
    display: none !important;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: linear-gradient(180deg, var(--card) 0%, var(--background-elevated) 100%);
  border-left: 1px solid var(--border);
  padding: 1.5rem;
  padding-top: 1rem;
  z-index: 50;
  right: -100%;
  transition: right var(--transition-slower), box-shadow var(--transition-smooth);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-logo {
  display: block;
}
.mobile-menu-logo .header-logo {
  height: 2.25rem;
}
.mobile-menu-close {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  padding: 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

.mobile-menu.open {
  right: 0;
}

@media (min-width: 1024px) {
  .mobile-menu.lg\:hidden {
    display: none !important;
  }
}

.mobile-menu .nav-menu {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.mobile-menu .nav-menu li {
  border-bottom: 1px solid var(--border);
}

.mobile-menu .nav-menu li:last-child {
  border-bottom: none;
}

.mobile-menu .nav-menu a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: var(--foreground);
  transition: color var(--transition-fast), background var(--transition-fast), padding-left var(--transition-fast);
}

.mobile-menu .nav-menu a:hover {
  color: var(--gold-bright);
  background-color: var(--gold-subtle);
  padding-left: 1.5rem;
}

/* Header logo - compact shield icon */
.header-logo {
  height: 2.5rem;
  width: auto;
  display: block;
  filter: brightness(1.15) contrast(1.05) saturate(1.2) drop-shadow(0 0 12px rgba(242, 216, 120, 0.2));
}

/* Hero logo - larger branding */
.hero-logo {
  width: 100%;
  max-width: 32rem;
  height: auto;
  display: block;
  filter: brightness(1.15) contrast(1.05) saturate(1.2) drop-shadow(0 0 24px rgba(242, 216, 120, 0.25));
}

@media (max-width: 1023px) {
  .hero-logo {
    max-width: 24rem;
  }
}

/* Screen reader only - for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header nav wrap - ensure language switcher stays visible */
.header-nav-wrap {
  min-width: 0;
}
.header-nav-wrap .nav-menu {
  flex: 1 1 auto;
  min-width: 0;
}
.language-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground-muted);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: var(--gold-glass);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

.lang-btn:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-subtle);
}

.lang-globe {
  flex-shrink: 0;
  opacity: 0.85;
  transition: transform var(--transition-smooth), color var(--transition-fast);
}

.lang-btn:hover .lang-globe {
  transform: rotate(-12deg) scale(1.05);
}

.lang-current {
  white-space: nowrap;
}

.lang-chevron {
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform var(--transition-smooth);
}

.language-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 12rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.375rem;
  box-shadow: var(--shadow-xl), var(--shadow-gold-glow);
  z-index: 1001;
  animation: slideDown 0.3s var(--ease-out);
}

.language-switcher.open .lang-dropdown {
  display: block;
  animation: slideDown 0.3s var(--ease-out);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.875rem;
  color: var(--foreground-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast), padding-left var(--transition-fast);
}

.lang-option:hover {
  background: var(--gold-subtle);
  color: var(--gold-bright);
  padding-left: 1rem;
}

.lang-option.active {
  color: var(--gold-bright);
  background: var(--gold-glass);
}

.lang-option-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1;
  width: 1.5rem;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .lang-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
  }
  .lang-btn .lang-current {
    max-width: 5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Hero - desktop: side by side | mobile: full background image */
.hero-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 6rem;
  position: relative;
  overflow: hidden;
}

/* Mobile: full-section background image */
.hero-bg {
  display: none;
}

@media (max-width: 1023px) {
  .hero-counters-section {
    padding: 1.5rem 0 2rem;
  }
  .hero-counters-section .hero-counters {
    background: rgba(26, 26, 31, 0.95);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    margin-top: 0;
    padding-top: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-bg {
    display: block !important;
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 100%;
  }
  .hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 1.2s var(--ease-out) forwards;
    object-position: center;
    display: block;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.35) 25%,
      rgba(0, 0, 0, 0.2) 45%,
      rgba(0, 0, 0, 0.2) 55%,
      rgba(0, 0, 0, 0.35) 75%,
      rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
  }
  .hero-section {
    min-height: 70vh;
    align-items: flex-end;
    padding-bottom: 2rem;
  }
  .hero-content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-grid {
    display: block;
  }
  .hero-image {
    display: none;
  }
  .hero-content {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(26, 26, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-content h1 span {
    color: var(--gold-bright);
    text-shadow: none;
  }
  .hero-content p {
    color: var(--foreground);
    text-shadow: none;
  }
  .hero-content .btn-outline {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
  }
  .hero-content .btn-outline:hover {
    background: var(--gold-subtle);
    color: var(--gold-bright);
  }
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-content { order: 1; }
.hero-image { order: 2; }
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  animation: zoomIn 0.9s var(--ease-out) forwards;
}

/* Hero counters - 6 in one line */
.hero-counters-section {
  position: relative;
  background: linear-gradient(165deg, var(--background) 0%, #121218 50%, var(--background) 100%);
  isolation: isolate;
}
.hero-counters-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(184, 148, 47, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 60%, rgba(184, 148, 47, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero-counters-section .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-counters-section {
    margin-top: -3rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }
}
.hero-counters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 0;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
@media (min-width: 640px) {
  .hero-counters {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .hero-counters {
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    padding-top: 2.5rem;
  }
}
.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.75rem;
}
.counter-value {
  font-family: "Gelasio", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
}
@media (min-width: 640px) {
  .counter-value { font-size: 1.75rem; }
}
@media (min-width: 1024px) {
  .counter-value { font-size: 2rem; }
}
.counter-label {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}
@media (min-width: 640px) {
  .counter-label { font-size: 0.8125rem; }
}
@media (min-width: 1024px) {
  .counter-label { font-size: 0.875rem; }
}

/* Value proposition section */
.value-prop-section {
  position: relative;
  background: linear-gradient(135deg, #141419 0%, var(--background-elevated) 35%, #1c1c23 70%, #16161b 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  isolation: isolate;
}
.value-prop-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 0% 20%, rgba(184, 148, 47, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse 80% 100% at 100% 80%, rgba(184, 148, 47, 0.04) 0%, transparent 45%),
    linear-gradient(115deg, transparent 0%, rgba(184, 148, 47, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.value-prop-section .container {
  position: relative;
  z-index: 1;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}
.about-image-wrap {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-image-wrap {
    justify-content: flex-start;
  }
}
.about-team-image {
  max-width: 100%;
  width: 100%;
  max-width: 24rem;
  height: auto;
  border-radius: var(--radius-lg);
  animation: zoomIn 0.9s var(--ease-out) forwards;
  border: 1px solid var(--border);
  object-fit: cover;
}
@media (min-width: 768px) {
  .about-team-image {
    max-width: 100%;
  }
}
.about-text {
  min-width: 0;
}
.value-prop-about {
  line-height: 1.75;
  color: var(--foreground-muted);
}
.mission-block {
  max-width: 100%;
  margin: 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--gold);
  background-color: var(--gold-subtle);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.mission-title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin: 0 0 0.5rem 0;
}
.mission-quote {
  font-size: 1.0625rem;
  color: var(--foreground-muted);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}
@media (max-width: 639px) {
  .mission-block {
    padding: 1.25rem 1.25rem;
  }
}
.value-prop-intro {
  line-height: 1.75;
  color: var(--foreground-muted);
}
.problem-solution-subheading {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
}
.value-prop-closing {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground-muted);
}
.value-prop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .value-prop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.value-prop-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-smooth);
}
.value-prop-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 162, 39, 0.08);
}
.value-prop-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}
.value-prop-card-text {
  font-size: 0.9375rem;
  color: var(--foreground-muted);
  line-height: 1.65;
  margin: 0;
}

/* Problem solution (within value prop section) */
.problem-solution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .problem-solution-grid {
    gap: 2.5rem;
  }
}
.problem-solution-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--card);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-smooth);
}
.problem-solution-item:hover {
  border-color: rgba(201, 162, 39, 0.3);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 162, 39, 0.06);
}
@media (max-width: 767px) {
  .problem-solution-item {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
  }
  .problem-solution-arrow {
    transform: rotate(90deg);
  }
}
.problem-solution-problem,
.problem-solution-service {
  padding: 0.5rem 0;
}
.problem-solution-problem {
  border-right: 2px solid var(--border);
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .problem-solution-problem {
    border-right: none;
    border-bottom: 2px solid var(--border);
    padding-right: 0;
    padding-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .problem-solution-service {
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .problem-solution-service {
    padding-top: 1rem;
  }
}
.problem-solution-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.problem-solution-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  margin: 0 0 0.5rem 0;
}
.problem-solution-text {
  font-size: 0.9375rem;
  color: var(--foreground-muted);
  line-height: 1.65;
  margin: 0;
}

/* Target audience section */
.target-audience-section {
  position: relative;
  background: linear-gradient(210deg, var(--background) 0%, #131318 40%, #0f0f14 70%, var(--background) 100%);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  isolation: isolate;
}
.target-audience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 100% 30%, rgba(184, 148, 47, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 0% 70%, rgba(184, 148, 47, 0.04) 0%, transparent 50%),
    linear-gradient(65deg, transparent 0%, rgba(184, 148, 47, 0.015) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.target-audience-section .container {
  position: relative;
  z-index: 1;
}
.target-audience-heading {
  margin-bottom: 0;
}
.target-audience-intro {
  line-height: 1.75;
  color: var(--foreground-muted);
}
.target-audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .target-audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .target-audience-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.target-audience-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.75rem 1.75rem 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-smooth);
}
.target-audience-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 162, 39, 0.06);
}
.target-audience-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 0.75rem;
}
.target-audience-card-text {
  font-size: 0.9375rem;
  color: var(--foreground-muted);
  line-height: 1.65;
  margin: 0;
}

/* Services section – creative design */
.services-section {
  position: relative;
  background: linear-gradient(155deg, #1a1a20 0%, var(--background-elevated) 25%, #1e1e25 50%, #18181e 75%, #1c1c22 100%);
  isolation: isolate;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.services-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% 20%, rgba(184, 148, 47, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse 70% 80% at 90% 80%, rgba(184, 148, 47, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184, 148, 47, 0.03) 0%, transparent 55%),
    linear-gradient(transparent 0%, rgba(184, 148, 47, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.services-section .container {
  position: relative;
  z-index: 1;
}
.services-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.services-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.75rem;
}
.services-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .services-heading {
    font-size: 2.5rem;
  }
}
.services-subheading {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin: 0;
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.service-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(26, 26, 31, 0.8);
  backdrop-filter: blur(16px);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201, 162, 39, 0.12);
}
.service-card:hover::before {
  opacity: 1;
}
.service-card:hover .service-card-arrow {
  transform: translateX(6px);
  opacity: 1;
}
.service-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  color: var(--gold-muted);
  flex-shrink: 0;
}
.service-card:hover .service-card-icon {
  color: var(--gold-bright);
}
.service-card-icon svg {
  width: 100%;
  height: 100%;
}
.service-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}
.service-card-teaser {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0 0 1rem 0;
  flex: 1;
}
.service-card-arrow {
  align-self: flex-start;
  font-size: 1.25rem;
  color: var(--gold-muted);
  font-weight: 300;
  opacity: 0.7;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

/* Service header - refined nav links */
.service-header-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.service-header-link {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  color: var(--foreground-muted);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}
.service-nav-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}
.service-header-link:hover {
  color: var(--gold-bright);
  background: var(--gold-glass);
}
.service-header-link:hover .service-nav-icon {
  opacity: 1;
}
.header-logo-link {
  text-decoration: none;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.header-logo-link:hover {
  opacity: 0.95;
}

/* Pricing section on main page */
.pricing-section {
  position: relative;
  background: linear-gradient(180deg, #0d0d10 0%, var(--background) 30%, #131318 60%, #0f0f12 100%);
  isolation: isolate;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
#pricing.pricing-section .pricing-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 148, 47, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(184, 148, 47, 0.04) 0%, transparent 55%),
    linear-gradient(90deg, rgba(184, 148, 47, 0.02) 0%, transparent 30%, transparent 70%, rgba(184, 148, 47, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}
.pricing-section .container {
  position: relative;
  z-index: 1;
}
.pricing-header {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.pricing-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.75rem;
}
.pricing-heading {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.pricing-netto-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .pricing-heading {
    font-size: 2.5rem;
  }
}
.pricing-subheading {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 0;
}
@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .pricing-grid .pricing-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
}
@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) and (max-width: 1199px) {
  .pricing-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .pricing-grid .pricing-card:nth-child(1),
  .pricing-grid .pricing-card:nth-child(2),
  .pricing-grid .pricing-card:nth-child(3) {
    grid-column: span 2;
  }
  .pricing-grid .pricing-card:nth-child(4),
  .pricing-grid .pricing-card:nth-child(5) {
    grid-column: span 3;
  }
}
@media (min-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.pricing-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--card);
  backdrop-filter: blur(8px);
  padding: 1.5rem;
  transition: transform var(--transition-smooth), border-color var(--transition-fast), box-shadow var(--transition-smooth);
  text-decoration: none;
  position: relative;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.45);
  box-shadow: var(--shadow-xl), var(--shadow-gold);
}
.pricing-card-featured {
  border-color: rgba(201, 162, 39, 0.35);
  background: linear-gradient(180deg, rgba(30, 30, 36, 0.98) 0%, var(--card) 100%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(201, 162, 39, 0.12);
}
.pricing-card-featured:hover {
  box-shadow: var(--shadow-xl), var(--shadow-gold-glow);
}
.pricing-card-icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  color: var(--gold-muted);
  opacity: 0.9;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.pricing-card-icon svg {
  width: 100%;
  height: 100%;
}
.pricing-card:hover .pricing-card-icon {
  color: var(--gold-bright);
  transform: scale(1.05);
}
.pricing-card-arrow {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 1.25rem;
  color: var(--gold-muted);
  opacity: 0.6;
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.pricing-card:hover .pricing-card-arrow {
  transform: translateX(4px);
  color: var(--gold-bright);
  opacity: 1;
}
.pricing-card-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-bright));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pricing-card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--background);
  padding: 0.25rem 0.5rem;
  background: linear-gradient(135deg, var(--gold-muted), var(--gold));
  border-radius: 4px;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.pricing-card-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.pricing-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
}
.pricing-card-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  margin: 0;
  flex: 1;
}
.pricing-cta-wrap {
  text-align: center;
  margin-top: 0.5rem;
}
.pricing-cta-wrap .pricing-cta,
a.pricing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--background);
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-bright));
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth);
  box-shadow: var(--shadow-gold);
}
.pricing-cta-wrap .pricing-cta:hover,
a.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--background);
}

/* Pricing page – creative design */
.pricing-page {
  min-height: 100vh;
  padding-bottom: 5rem;
}
.pricing-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(165deg, var(--background) 0%, #1a1a20 35%, #1e1e26 70%, var(--background-elevated) 100%);
  isolation: isolate;
}
.pricing-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 148, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 148, 47, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}
.pricing-hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-muted) 20%, var(--gold-bright) 50%, var(--gold-muted) 80%, transparent 100%);
  opacity: 0.9;
  z-index: 1;
}
.pricing-hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse 50% 50%, rgba(184, 148, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pricing-hero .container {
  position: relative;
  z-index: 2;
}
.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
}
.pricing-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pricing-hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
  max-width: 40rem;
}
.pricing-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.pricing-hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing-hero-image-wrap {
    justify-content: flex-end;
  }
}
.pricing-hero-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(184, 148, 47, 0.5);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(184, 148, 47, 0.2),
    12px 12px 0 rgba(184, 148, 47, 0.15);
  animation: zoomIn 0.9s var(--ease-out) forwards;
}
.pricing-hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1rem;
}
.pricing-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .pricing-hero-title {
    font-size: 3.25rem;
  }
}
.pricing-hero-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0;
  max-width: 40rem;
}
.pricing-hero-netto {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0.75rem 0 0 0;
  opacity: 0.9;
}

/* Sticky section nav – pill-style with gold accent */
.pricing-nav {
  position: sticky;
  top: 5.5rem;
  z-index: 50;
  padding: 1rem 0 1.25rem 0;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(180deg, #1a1a20 0%, #16161b 100%);
  border-top: 1px solid rgba(184, 148, 47, 0.25);
  border-bottom: 1px solid rgba(184, 148, 47, 0.2);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.pricing-nav .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  justify-content: center;
  align-items: center;
}
.pricing-nav-link {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(184, 148, 47, 0.25);
  background: rgba(184, 148, 47, 0.04);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.pricing-nav-link:hover {
  color: var(--gold-bright);
  background: rgba(184, 148, 47, 0.12);
  border-color: rgba(184, 148, 47, 0.4);
  box-shadow: 0 0 12px rgba(184, 148, 47, 0.08);
}
.pricing-nav-link:focus-visible {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-subtle);
}

/* Sections */
.pricing-section {
  position: relative;
  padding: 4rem 0;
  background: var(--background);
  isolation: isolate;
}
.pricing-section-alt {
  background: linear-gradient(120deg, #1a1a20 0%, var(--background-elevated) 50%, #1e1e24 100%);
}
/* Service page pricing: darker stripe to match alternating pattern */
.service-page .pricing-section {
  background: linear-gradient(180deg, #0d0d10 0%, var(--background) 30%, #131318 60%, #0f0f12 100%);
}
.pricing-section-alt .pricing-section-bg,
.pricing-section .pricing-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184, 148, 47, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 0% 80%, rgba(184, 148, 47, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse 50% 70% at 100% 20%, rgba(184, 148, 47, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.pricing-section .container {
  position: relative;
  z-index: 1;
}
.pricing-section-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.pricing-section-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0;
  scroll-margin-top: 6rem;
  letter-spacing: -0.02em;
}
.pricing-section-desc {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin: 0 0 2rem 0;
}
.pricing-subsection {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 148, 47, 0.2);
}

/* Package cards */
.pricing-packages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .pricing-packages {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-packages {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
/* Two cards: stretch to fill width (legalization) */
.pricing-packages-stretch {
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .pricing-packages-stretch {
    grid-template-columns: repeat(2, 1fr);
  }
}
.pricing-packages-compact {
  margin-bottom: 1.5rem;
}
.pricing-packages-underline {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(184, 148, 47, 0.25);
}
.pricing-package {
  position: relative;
  background: rgba(37, 37, 44, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 148, 47, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-package:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 148, 47, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(184, 148, 47, 0.2);
}
.pricing-package-featured {
  border-color: rgba(184, 148, 47, 0.4);
  background: rgba(37, 37, 44, 0.85);
  box-shadow: 0 0 0 1px rgba(184, 148, 47, 0.25);
}
.pricing-package-featured:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(184, 148, 47, 0.4);
}
.pricing-package-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-bright), var(--gold-muted));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.pricing-package-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 0.25rem 0.6rem;
  background: linear-gradient(135deg, rgba(184, 148, 47, 0.25), rgba(184, 148, 47, 0.15));
  border-radius: 4px;
  border: 1px solid rgba(184, 148, 47, 0.4);
}
.pricing-package-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.01em;
}
.pricing-package-sub {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0 0 1rem 0;
}
.pricing-package-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.02em;
}
.pricing-package-featured .pricing-package-price {
  color: var(--gold-bright);
}
.pricing-package-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.pricing-package-limit {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}
.pricing-package-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}
.pricing-package-features li {
  font-size: 0.875rem;
  color: #b8b8c0;
  line-height: 1.55;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-package-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-muted);
  box-shadow: 0 0 8px rgba(184, 148, 47, 0.4);
}

/* Includes & extras boxes */
.pricing-includes,
.pricing-extras {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--card);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-muted);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-smooth), border-color var(--transition-fast);
}
.pricing-extras:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 148, 47, 0.2);
}
.pricing-includes h4,
.pricing-extras h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.75rem 0;
}
.pricing-includes ul,
.pricing-extras ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-includes li,
.pricing-extras li {
  font-size: 0.9375rem;
  color: #b8b8c0;
  line-height: 1.6;
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.pricing-includes li::before,
.pricing-extras li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-bright);
  font-weight: bold;
  font-size: 0.875rem;
}
.pricing-includes p,
.pricing-extras p {
  font-size: 0.9375rem;
  color: #b8b8c0;
  line-height: 1.6;
  margin: 0;
}

/* Registration cards */
.pricing-tables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pricing-tables {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-tables {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}
.pricing-table-card {
  background: rgba(37, 37, 44, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(184, 148, 47, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-table-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 148, 47, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.pricing-table-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 1rem 0;
  line-height: 1.4;
}
.pricing-price-main {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0;
  letter-spacing: -0.02em;
}
.pricing-price-note {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0 0 1rem 0;
}
.pricing-table-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}
.pricing-table-card li {
  font-size: 0.875rem;
  color: #b8b8c0;
  line-height: 1.5;
  padding: 0.35rem 0;
  padding-left: 1rem;
  position: relative;
}
.pricing-table-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}
.pricing-time,
.pricing-official {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  margin: 0.5rem 0 0 0;
}
.pricing-note {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin: 1.25rem 0 0 0;
  font-style: italic;
  padding: 1rem;
  background: rgba(184, 148, 47, 0.06);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold-muted);
}

/* Full accounting comparison table */
.pricing-comparison-wrap {
  overflow-x: auto;
  margin: 2rem 0;
  -webkit-overflow-scrolling: touch;
}
.pricing-comparison-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(37, 37, 44, 0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.pricing-comparison-table th,
.pricing-comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.pricing-comparison-table th {
  font-weight: 600;
  color: var(--foreground);
  background: rgba(30, 30, 36, 0.8);
}
.pricing-comparison-table .pricing-comparison-service {
  min-width: 12rem;
  color: var(--muted-foreground);
  font-weight: 500;
}
.pricing-comparison-table .pricing-comparison-col {
  text-align: center;
  min-width: 8rem;
  vertical-align: top;
}
.pricing-comparison-table .pricing-comparison-col br + span {
  display: block;
  margin-top: 0.25rem;
}
.pricing-comparison-price {
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 1rem;
}
.pricing-comparison-limit {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 400;
}
.pricing-comparison-table td:not(:first-child) {
  text-align: center;
}
.pricing-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 1.125rem;
}
.pricing-cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 1.125rem;
}
.pricing-comparison-separator td {
  border-bottom: 2px solid var(--border);
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.2);
}
.pricing-extras-block ul {
  list-style: none;
  padding: 0;
}
.pricing-extras-block ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.pricing-extras-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold-muted);
}

/* CTA section */
.pricing-cta {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--background) 0%, #1a1a20 50%, var(--background-elevated) 100%);
  isolation: isolate;
}
.pricing-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184, 148, 47, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pricing-cta .container {
  position: relative;
  z-index: 1;
}
.pricing-cta-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0 0 1.75rem 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--background);
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-bright));
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth);
  border: 1px solid rgba(184, 148, 47, 0.5);
  box-shadow: var(--shadow-gold);
}
.pricing-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(184, 148, 47, 0.45);
  color: var(--background);
}
.pricing-cta-icon {
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.pricing-cta-btn:hover .pricing-cta-icon {
  transform: translateY(-1px);
}
.pricing-cta-inline {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.pricing-cta-inline .pricing-cta-text { margin-bottom: 1rem; }

/* CTA banners (inline section CTAs) */
.cta-banner {
  margin-top: 2.5rem;
  padding: 2rem 1.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.cta-banner-text {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--foreground-muted);
  margin: 0 0 1.5rem 0;
}
.cta-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Service Calculator Card */
.calculator-card {
  background: rgba(37, 37, 44, 0.7);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(184, 148, 47, 0.4);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0 0 1px rgba(184, 148, 47, 0.1), 0 4px 16px rgba(0, 0, 0, 0.15);
}
.calculator-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 148, 47, 0.6);
  box-shadow: 0 0 0 1px rgba(184, 148, 47, 0.2), 0 12px 32px rgba(184, 148, 47, 0.15), 0 4px 16px rgba(0, 0, 0, 0.2);
}
.calculator-card-content {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .calculator-card-content {
    flex-wrap: nowrap;
  }
}
.calculator-card-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(184, 148, 47, 0.15), rgba(184, 148, 47, 0.08));
  border-radius: var(--radius-md);
  color: var(--gold-bright);
}
.calculator-card-icon svg {
  width: 2rem;
  height: 2rem;
}
.calculator-card-text {
  flex: 1;
  min-width: 0;
}
.calculator-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.5rem 0;
  font-family: "Gelasio", Georgia, serif;
}
.calculator-card-description {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin: 0;
  line-height: 1.6;
}
.calculator-card-button {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gold-bright);
  background: transparent;
  border: 1px solid var(--gold-muted);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.calculator-card-button:hover {
  background: linear-gradient(135deg, var(--gold-muted), var(--gold-bright));
  color: var(--background);
  border-color: var(--gold-bright);
  transform: translateX(4px);
}
.calculator-card-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
}
.calculator-card-button:hover .calculator-card-arrow {
  transform: translateX(2px);
}
@media (max-width: 767px) {
  .calculator-card-content {
    flex-direction: column;
    text-align: center;
  }
  .calculator-card-button {
    width: 100%;
    justify-content: center;
  }
}

/* Service calculator modal - refined design */
.calc-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}
.calc-modal.calc-modal-open {
  opacity: 1;
  visibility: visible;
}
.calc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.calc-modal-panel {
  position: relative;
  width: 100%;
  max-width: 42rem;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(165deg, var(--card) 0%, #1e1e24 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold), 0 32px 96px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 162, 39, 0.06);
  animation: calc-modal-in 0.35s var(--ease-out) forwards;
}
@keyframes calc-modal-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(-12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.calc-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.04) 0%, transparent 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.calc-modal-logo {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.calc-modal-title {
  flex: 1;
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  font-family: "Gelasio", Georgia, serif;
}
.calc-modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.calc-modal-close:hover {
  color: var(--gold-bright);
  transform: scale(1.1);
}
.calc-modal-body {
  padding: 1.75rem 1.75rem;
}
.calc-modal-intro {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}
.calc-form-group {
  margin-bottom: 1.25rem;
}
.calc-form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.calc-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.calc-form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-subtle);
}
/* Select - golden arrow, no default arrow */
.calc-form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23c9a227' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
/* Number inputs - hide spinners */
.calc-form-number {
  -moz-appearance: textfield;
}
.calc-form-number::-webkit-outer-spin-button,
.calc-form-number::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--foreground);
  cursor: pointer;
}
.calc-form-checkbox {
  width: 1.125rem;
  height: 1.125rem;
  accent-color: var(--gold);
}
.calc-result {
  margin-top: 1.75rem;
  padding: 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}
.calc-result-row {
  margin: 0 0 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--foreground-muted);
}
.calc-result-row:last-child { margin-bottom: 0; }
.calc-result-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-bright);
}
.calc-result-note {
  margin: 0.75rem 0 0 0;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
.calc-modal-footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}
.calc-modal-close-btn {
  width: 100%;
}

/* FAQ section */
.faq-section {
  position: relative;
  background: linear-gradient(200deg, var(--background) 0%, #111116 35%, #0e0e12 70%, var(--background) 100%);
  isolation: isolate;
}
.faq-section-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(184, 148, 47, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 148, 47, 0.015) 1px, transparent 1px),
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(184, 148, 47, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 60% at 0% 80%, rgba(184, 148, 47, 0.03) 0%, transparent 45%),
    radial-gradient(ellipse 50% 70% at 100% 30%, rgba(184, 148, 47, 0.03) 0%, transparent 45%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
  z-index: 0;
}
.faq-section .container { position: relative; z-index: 1; }
.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.faq-heading {
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.75rem 0;
}
.faq-subheading {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin: 0;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 auto 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .faq-list {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem 1.5rem;
    max-width: 64rem;
  }
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--border-subtle);
}
.faq-item[open] {
  border-color: rgba(212, 168, 74, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.faq-question {
  padding: 1.25rem 1.5rem;
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.5;
  min-height: 5.5rem;
  color: var(--foreground);
  cursor: pointer;
  list-style: none;
  transition: color var(--transition-fast), background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--gold-muted);
  flex-shrink: 0;
  transition: transform var(--transition-fast), color var(--transition-fast);
}
.faq-item[open] .faq-question::after { content: "−"; }
.faq-answer {
  padding: 0 1.5rem 1.5rem;
  animation: fadeIn 0.3s var(--ease-out);
}
.faq-answer p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* Footer - elegant with glow and icons */
.footer-section {
  position: relative;
}

.footer-cta {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(170deg, #1a1a20 0%, var(--background-elevated) 40%, var(--background) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.footer-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 600px;
  height: 200px;
  background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(212, 168, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.footer-cta .container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.footer-cta-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--foreground);
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.footer-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.footer-cta-btn {
  transition: transform var(--transition-fast), box-shadow var(--transition-smooth) !important;
}
.footer-cta-btn:hover {
  transform: translateY(-2px) !important;
}

/* Footer info - address with icons */
.footer-info {
  padding: 2.5rem 0;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}
.footer-info-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 639px) {
  .footer-info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-address address {
    align-items: center;
  }
  .footer-address-item {
    justify-content: center;
  }
}
.footer-info-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.75rem 0;
  letter-spacing: 0.02em;
}
.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-address address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.footer-address-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
.footer-address a.footer-address-item:hover {
  color: var(--gold-bright);
  transform: translateX(4px);
}
.footer-icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--gold-muted);
  margin-top: 0.125rem;
  transition: color var(--transition-fast);
}
.footer-address a:hover .footer-icon {
  color: var(--gold-bright);
}
.footer-logo {
  height: 3rem;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
  transition: opacity var(--transition-fast), filter var(--transition-fast);
}
.footer-logo:hover {
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(212, 168, 74, 0.15));
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.15);
}
.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.footer-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-bottom .footer-logo {
  height: 2.25rem;
}
.footer-copyright {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-link {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-link:hover {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Service page CTA */
.service-cta-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
}
.service-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
/* CTA when merged inside Scope section */
.service-list-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(184, 148, 47, 0.2);
  text-align: center;
}

/* Service page - Pełna księgowość (creative design) */
.service-page {
  min-height: 100vh;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
.service-hero {
  position: relative;
  padding: 5rem 0 6rem;
  background: linear-gradient(155deg, #1a1a20 0%, var(--background-elevated) 25%, #1e1e25 50%, #18181e 75%, #1c1c22 100%);
  isolation: isolate;
}
.service-hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(184, 148, 47, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(184, 148, 47, 0.04) 0%, transparent 50%),
    linear-gradient(rgba(184, 148, 47, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 148, 47, 0.03) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 48px 48px, 48px 48px;
  pointer-events: none;
  z-index: 0;
}
.service-hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-muted) 15%, var(--gold-bright) 50%, var(--gold-muted) 85%, transparent 100%);
  opacity: 0.9;
  z-index: 1;
}
.service-hero .container {
  position: relative;
  z-index: 2;
}
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
}
.service-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) {
  .service-hero-title {
    font-size: 2.75rem;
  }
}
.service-hero-intro {
  border-left: 4px solid var(--gold-muted);
  padding-left: 1.5rem;
  margin-left: 0;
}
.service-hero-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #c8c8d0;
  margin: 0 0 1rem 0;
}
.service-hero-text:last-child {
  margin-bottom: 0;
}
.service-hero-text-accent {
  color: var(--gold-bright);
  font-weight: 500;
}
.service-hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-hero-image-wrap {
    justify-content: flex-end;
  }
}
.service-hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 380px;
  border: 3px solid rgba(184, 148, 47, 0.5);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(184, 148, 47, 0.2),
    12px 12px 0 rgba(184, 148, 47, 0.15);
}
.service-hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 2px);
  object-fit: cover;
  animation: zoomIn 0.9s var(--ease-out) forwards;
}

/* Service sections grid */
.service-sections-wrap {
  padding: 2rem 0 5rem;
  background-color: var(--background-elevated);
}
.service-sections-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .service-sections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .service-sections-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.service-section-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-section-card:hover {
  border-color: rgba(184, 148, 47, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.service-section-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184, 148, 47, 0.3);
}
.service-section-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-section-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #b8b8c0;
  line-height: 1.5;
  padding: 0.35rem 0;
}
.service-section-bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--gold-muted);
}
.service-section-item span:last-child {
  flex: 1;
}

/* Service list – creative flow layout */
/* Decorative divider between list and blocks */
.service-divider {
  height: 1px;
  margin: 2rem auto 0;
  max-width: 80rem;
  padding: 0 1rem;
  background: linear-gradient(90deg, transparent 0%, rgba(184, 148, 47, 0.3) 20%, rgba(184, 148, 47, 0.5) 50%, rgba(184, 148, 47, 0.3) 80%, transparent 100%);
  opacity: 0.8;
}

.service-list-wrap {
  position: relative;
  padding: 4rem 0 6rem;
  background: linear-gradient(210deg, var(--background) 0%, #131318 40%, #0f0f14 70%, var(--background) 100%);
  isolation: isolate;
}
.service-list-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(184, 148, 47, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(184, 148, 47, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.service-list-wrap .container {
  position: relative;
  z-index: 1;
}
.service-list-heading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 2rem 0;
  text-align: center;
  letter-spacing: 0.05em;
}
.service-list-flow {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}
.service-list-line {
  display: none;
}
@media (min-width: 900px) {
  .service-list-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold-muted) 10%, var(--gold-muted) 90%, transparent);
    opacity: 0.5;
    transform: translateX(-50%);
  }
}
.service-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 3rem;
}
@media (min-width: 900px) {
  .service-list-items {
    grid-template-columns: 1fr 1fr;
  }
}
.service-list-item {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.85rem;
  font-size: 1rem;
  color: #c8c8d0;
  line-height: 1.6;
}
.service-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-muted);
  box-shadow: 0 0 12px rgba(184, 148, 47, 0.4);
}
.service-list-item:nth-child(odd)::before {
  background: var(--gold-bright);
}

/* Service blocks (grouped sections) - creative cards */
.service-blocks-wrap {
  position: relative;
  padding: 4rem 0 6rem;
  background: linear-gradient(155deg, #1a1a20 0%, var(--background-elevated) 25%, #1e1e25 50%, #18181e 75%, #1c1c22 100%);
  isolation: isolate;
}
.service-blocks-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(184, 148, 47, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 0% 50%, rgba(184, 148, 47, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 100% 50%, rgba(184, 148, 47, 0.04) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.service-blocks-wrap .container {
  position: relative;
  z-index: 1;
}
.service-blocks-row1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .service-blocks-row1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-blocks-row1 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-blocks-row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.service-blocks-row2 .service-block {
  flex: 1 1 280px;
  max-width: 380px;
}
.service-block {
  position: relative;
  background: rgba(37, 37, 44, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(184, 148, 47, 0.2);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.service-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold-bright));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(184, 148, 47, 0.3);
  border-color: rgba(184, 148, 47, 0.4);
}
.service-block:hover::before {
  opacity: 1;
}
.service-block-title {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(184, 148, 47, 0.25);
  letter-spacing: 0.02em;
}
.service-block-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-block-item {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: #b8b8c0;
  line-height: 1.55;
}
.service-block-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--gold-muted);
  transform: rotate(45deg);
}
.service-block-item:last-child {
  margin-bottom: 0;
}

/* Comparison section */
.comparison-section {
  position: relative;
  background: linear-gradient(45deg, #16161c 0%, var(--background-elevated) 40%, #1e1e24 70%, #18181d 100%);
  isolation: isolate;
}
.comparison-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(184, 148, 47, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184, 148, 47, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, transparent 0%, rgba(184, 148, 47, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.comparison-section .container {
  position: relative;
  z-index: 1;
}
.comparison-heading {
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(228, 184, 74, 0.15);
}
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 148, 47, 0.35);
  background-color: #1c1c22;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.comparison-table th,
.comparison-table td {
  padding: 1.125rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid rgba(184, 148, 47, 0.18);
  vertical-align: middle;
}
.comparison-table tbody tr {
  transition: background-color 0.15s ease;
}
.comparison-table tbody tr:hover {
  background-color: rgba(228, 184, 74, 0.06);
}
.comparison-table tbody tr:last-child td {
  border-bottom: none;
}
.comparison-table thead th {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid var(--gold-muted);
  background: transparent;
}
.comparison-table thead th.comparison-header-empty {
  width: 44%;
}
.comparison-table thead th.comparison-col-us {
  color: var(--gold-bright);
  width: 28%;
}
.comparison-table thead th.comparison-col-them {
  color: var(--gold-muted);
  width: 28%;
}
.comparison-table .comparison-criterion {
  color: #c8c8d0;
  font-weight: 500;
  width: 44%;
}
/* Highlight only Leo Consulting Group column */
.comparison-table th.comparison-col-us,
.comparison-table td.comparison-col-us {
  background-color: rgba(184, 148, 47, 0.12);
  border-left: 1px solid rgba(184, 148, 47, 0.25);
}
.comparison-table .comparison-col-us {
  color: var(--gold-bright);
  text-align: left;
  font-weight: 500;
}
.comparison-table .comparison-col-them {
  color: var(--gold-muted);
  text-align: left;
}
.comparison-check {
  color: var(--gold-bright);
  font-weight: bold;
  margin-right: 0.25rem;
}
.comparison-cross {
  color: var(--gold-muted);
  font-weight: bold;
  margin-right: 0.25rem;
}
@media (max-width: 639px) {
  .comparison-table th,
  .comparison-table td {
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }
}

/* Contact section - elegant with glow */
.contact-section {
  position: relative;
  background: linear-gradient(165deg, #18181e 0%, var(--background-elevated) 35%, #1c1c23 65%, #16161b 100%);
  overflow: hidden;
}
.contact-section-glow {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  height: 300px;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(184, 148, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 40%, rgba(184, 148, 47, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(184, 148, 47, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.contact-section .container {
  position: relative;
  z-index: 1;
}

/* Contact cards - shadcn card style with shadow and hover */
.contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--card);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-smooth), border-color var(--transition-fast), transform var(--transition-fast);
}
.contact-card:hover {
  box-shadow: var(--shadow-md), var(--shadow-gold-glow);
  border-color: var(--border-subtle);
}
.contact-info-card:hover {
  border-color: rgba(184, 148, 47, 0.25);
}

/* Contact info items - prominent icons */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  color: var(--foreground-muted);
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
}
a.contact-info-item:hover {
  color: var(--gold-bright);
  transform: translateX(4px);
}
.contact-info-address {
  align-items: flex-start;
}
.contact-info-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gold-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}
a.contact-info-item:hover .contact-info-icon {
  color: var(--gold-bright);
  transform: scale(1.1);
}
.contact-follow-block {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Contact map - enhanced with shadow, match contact card height */
.contact-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-smooth);
  min-height: 20rem;
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 20rem;
}
.contact-map-wrap:hover {
  box-shadow: var(--shadow-lg);
}

/* Social icon buttons */
.social-btn {
  display: flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold-bright); }

/* Map filter for dark theme */
.map-dark { filter: grayscale(100%) invert(92%) contrast(83%); }

@media (min-width: 640px) {
  .py-24 { padding-top: 6rem; padding-bottom: 6rem; }
}
@media (min-width: 640px) {
  .text-5xl { font-size: 3rem; }
  .text-4xl { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .text-6xl { font-size: 3.75rem; }
  .py-32 { padding-top: 8rem; padding-bottom: 8rem; }
}
@media (min-width: 640px) {
  .sm\\:text-4xl { font-size: 2.25rem; }
  .sm\\:text-xl { font-size: 1.25rem; }
}
.flex-shrink-0 { flex-shrink: 0; }
.mt-0\\.5 { margin-top: 0.125rem; }
.opacity-90 { opacity: 0.9; }
.block { display: block; }
a { color: inherit; }
a:hover { color: var(--gold-bright); }

/* Contact form - shadcn style */
.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-form .form-row .form-group {
  margin-bottom: 0;
}

@media (max-width: 639px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form-container {
  width: 100%;
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  background-color: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--foreground);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
  color: var(--muted-foreground);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-subtle);
}

.form-textarea {
  min-height: 6rem;
  resize: vertical;
}

/* Field-level validation messages - elegant, on-brand */
.field-validation-error {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #f4a261;
  margin-top: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: rgba(244, 162, 97, 0.08);
  border-radius: var(--radius-sm);
  border-left: 3px solid rgba(244, 162, 97, 0.6);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
}
.field-validation-error:empty {
  display: none;
}
.field-validation-error.visible,
.field-validation-error:not(:empty) {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.field-validation-error::before {
  content: "";
  flex-shrink: 0;
  width: 0.3rem;
  height: 0.3rem;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: currentColor;
}
/* Invalid input state */
.input-validation-error {
  border-color: rgba(244, 162, 97, 0.5) !important;
  box-shadow: 0 0 0 1px rgba(244, 162, 97, 0.15);
}
.input-validation-error:focus {
  border-color: rgba(244, 162, 97, 0.7) !important;
  box-shadow: 0 0 0 2px rgba(244, 162, 97, 0.12);
}

/* Turnstile widget – blend with form, subtle gold accent */
.turnstile-wrapper {
  --tw-bg: rgba(26, 26, 31, 0.6);
  --tw-border: rgba(201, 162, 39, 0.2);
}
.turnstile-wrapper .cf-turnstile {
  display: block;
  padding: 0.75rem 1rem;
  background: var(--tw-bg);
  border: 1px solid var(--tw-border);
  border-radius: var(--radius-md);
  min-height: 4rem;
}
.turnstile-wrapper iframe {
  border-radius: var(--radius-sm);
}

.form-success {
  padding: 1rem;
  background-color: var(--gold-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--gold-bright);
  font-size: 0.9375rem;
}

.form-error-block {
  padding: 1rem;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  color: #ef4444;
  font-size: 0.9375rem;
}

.w-full { width: 100%; }

/* Cookie consent banner – RODO/GDPR compliant */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.98) 0%, rgba(26, 26, 31, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5), 0 -2px 8px rgba(201, 162, 39, 0.1);
  padding: 1.5rem;
  transform: translateY(0);
  transition: transform 0.35s var(--ease-out);
}
.cookie-consent-banner[aria-hidden="true"] {
  transform: translateY(100%);
}
.cookie-consent-content {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.cookie-consent-text {
  flex: 1;
  min-width: 280px;
}
.cookie-consent-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin-bottom: 0.5rem;
  font-family: "Gelasio", Georgia, serif;
}
.cookie-consent-message {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--foreground-muted);
  margin-bottom: 0.5rem;
}
.cookie-consent-link {
  margin-top: 0.5rem;
}
.cookie-consent-link-text {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}
.cookie-consent-link-text:hover {
  color: var(--gold);
}
.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.cookie-consent-form {
  display: inline-block;
  margin: 0;
}
.cookie-consent-btn-accept,
.cookie-consent-btn-necessary,
.cookie-consent-btn-reject {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cookie-consent-btn-accept {
  background: var(--gold);
  color: var(--background);
}
.cookie-consent-btn-accept:hover {
  background: var(--gold-bright);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}
.cookie-consent-btn-necessary {
  background: transparent;
  color: var(--gold-bright);
  border: 1px solid var(--gold);
}
.cookie-consent-btn-necessary:hover {
  background: var(--gold-subtle);
  border-color: var(--gold-bright);
}
.cookie-consent-btn-reject {
  background: transparent;
  color: var(--foreground-muted);
  border: 1px solid var(--border-subtle);
}
.cookie-consent-btn-reject:hover {
  color: var(--foreground);
  border-color: var(--border);
}
@media (max-width: 640px) {
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent-actions {
    flex-direction: column;
  }
  .cookie-consent-form {
    width: 100%;
  }
  .cookie-consent-btn-accept,
  .cookie-consent-btn-necessary,
  .cookie-consent-btn-reject {
    width: 100%;
  }
}

/* Cookie policy modal */
.cookie-policy-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}
.cookie-policy-modal.cookie-policy-modal-open {
  opacity: 1;
  visibility: visible;
}
.cookie-policy-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.cookie-policy-modal-panel {
  position: relative;
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--card) 0%, #1e1e24 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold), 0 32px 96px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 162, 39, 0.06);
  animation: calc-modal-in 0.35s var(--ease-out) forwards;
}
.cookie-policy-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(201, 162, 39, 0.04) 0%, transparent 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  flex-shrink: 0;
}
.cookie-policy-modal-logo {
  height: 2.25rem;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.cookie-policy-modal-title {
  flex: 1;
  font-size: 1.3125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  font-family: "Gelasio", Georgia, serif;
}
.cookie-policy-modal-close {
  background: none;
  border: none;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.cookie-policy-modal-close:hover {
  color: var(--gold-bright);
  transform: scale(1.1);
}
.cookie-policy-modal-body {
  padding: 1.75rem 1.75rem;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  color: var(--foreground-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.cookie-policy-modal-body section {
  margin-bottom: 1.5rem;
}
.cookie-policy-modal-body section:last-of-type {
  margin-bottom: 0;
}
.cookie-policy-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.75rem 0;
  font-family: "Gelasio", Georgia, serif;
}
.cookie-policy-subheading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0.75rem 0 0.5rem 0;
}
.cookie-policy-section {
  margin-bottom: 1rem;
}
.cookie-policy-modal-body p {
  margin: 0 0 0.75rem 0;
}
.cookie-policy-modal-body ul {
  margin: 0.5rem 0 0.75rem 0;
  padding-left: 1.5rem;
}
.cookie-policy-modal-body li {
  margin-bottom: 0.25rem;
}
.cookie-policy-contact-email {
  margin-top: 0.5rem !important;
}
.cookie-policy-modal-body a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-policy-modal-body a:hover {
  color: var(--gold);
}
.cookie-policy-last-updated {
  margin-top: 1.5rem !important;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
.cookie-policy-modal-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.cookie-policy-modal-close-btn {
  width: 100%;
}

/* ===== Services listing page – elegant premium design ===== */
.services-listing-page {
  min-height: 100vh;
}

.services-page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(180deg, #0d0d10 0%, #131318 35%, #0f0f14 70%, #111116 100%);
  isolation: isolate;
}

.services-page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(184, 148, 47, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 70% at 20% 80%, rgba(184, 148, 47, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse 50% 60% at 80% 90%, rgba(184, 148, 47, 0.03) 0%, transparent 45%),
    linear-gradient(135deg, transparent 0%, rgba(184, 148, 47, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.services-page-hero .container {
  position: relative;
  z-index: 1;
}

.services-page-hero-content {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

/* Services hero – text + image + CTA */
.services-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .services-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: stretch;
  }
}
.services-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  max-width: none;
  margin: 0;
}
.services-hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin: 0 0 1.25rem 0;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .services-hero-title {
    font-size: 3rem;
  }
}
.services-hero-description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--foreground-muted);
  margin: 0 0 2rem 0;
}
.services-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.services-hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .services-hero-image-wrap {
    justify-content: flex-end;
  }
}
.services-hero-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.services-page-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.services-page-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 1rem 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .services-page-title {
    font-size: 3.25rem;
  }
}

.services-page-intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
}

.services-page-line {
  height: 2px;
  width: 4rem;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  opacity: 0.7;
}

/* Services page grid section – striped (lighter strip) */
.services-page-grid-section {
  position: relative;
  background: linear-gradient(210deg, #1a1a20 0%, var(--background-elevated) 40%, #1e1e25 70%, #18181e 100%);
  isolation: isolate;
}

.services-page-grid-section .services-section-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 10% 20%, rgba(184, 148, 47, 0.05) 0%, transparent 45%),
    radial-gradient(ellipse 70% 80% at 90% 80%, rgba(184, 148, 47, 0.04) 0%, transparent 45%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(184, 148, 47, 0.03) 0%, transparent 55%),
    linear-gradient(65deg, transparent 0%, rgba(184, 148, 47, 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.services-page-grid-section .container {
  position: relative;
  z-index: 1;
}

.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .services-page-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Service page card – premium glass card */
.service-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(26, 26, 31, 0.9) 0%, rgba(22, 22, 27, 0.95) 100%);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  overflow: hidden;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.service-page-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-muted), var(--gold-bright), var(--gold-muted), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.service-page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 148, 47, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(184, 148, 47, 0.15);
}

.service-page-card:hover::before {
  opacity: 1;
}

.service-page-card .service-card-icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  color: var(--gold-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.service-page-card:hover .service-card-icon {
  color: var(--gold-bright);
  transform: scale(1.05);
}

.service-page-card .service-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-bright);
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.service-page-card:hover .service-card-title {
  color: var(--foreground);
}

.service-page-card .service-card-teaser {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--muted-foreground);
  margin: 0 0 1.25rem 0;
  flex: 1;
}

.service-page-card .service-card-arrow {
  align-self: flex-start;
  font-size: 1.375rem;
  color: var(--gold-muted);
  font-weight: 300;
  opacity: 0.8;
  transition: transform var(--transition-smooth), opacity var(--transition-fast), color var(--transition-fast);
}

.service-page-card:hover .service-card-arrow {
  transform: translateX(8px);
  opacity: 1;
  color: var(--gold-bright);
}

/* Error & 404 page */
.error-page {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem;
  background: linear-gradient(165deg, var(--background) 0%, #1a1a20 35%, #1e1e26 70%, var(--background-elevated) 100%);
  isolation: isolate;
}
.error-page-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 148, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 148, 47, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}
.error-page-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-muted) 20%, var(--gold-bright) 50%, var(--gold-muted) 80%, transparent 100%);
  opacity: 0.9;
  z-index: 1;
}
.error-page-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse 50% 50%, rgba(184, 148, 47, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.error-page .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.error-page-content {
  max-width: 32rem;
  margin: 0 auto;
}
.error-page-code {
  display: block;
  font-family: "Gelasio", serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 40px rgba(201, 162, 39, 0.15);
}
.error-page-title {
  font-family: "Gelasio", serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 1rem 0;
}
.error-page-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
}
.error-page-request-id {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
}
.error-page-request-id code {
  background: var(--background-elevated);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.error-page-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--background);
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}
.error-page-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35), 0 2px 8px rgba(0, 0, 0, 0.2);
  color: var(--background);
}
