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

:root {
  --bg-primary: #0a0b0f;
  --bg-secondary: #0f1118;
  --bg-card: #13151f;
  --bg-card-hover: #181b27;
  --bg-elevated: #1c1f2e;
  --surface-border: rgba(255,255,255,0.07);
  --surface-border-hover: rgba(212,175,95,0.3);

  --gold: #d4af5f;
  --gold-light: #e8c97a;
  --gold-dim: rgba(212,175,95,0.15);
  --gold-glow: rgba(212,175,95,0.08);
  --copper: #b87333;
  --silver: #a8b4c0;
  --silver-dim: rgba(168,180,192,0.12);

  --text-primary: #eef0f5;
  --text-secondary: #9aa3b2;
  --text-muted: #5c6478;
  --text-gold: #d4af5f;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.7), 0 8px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
  --shadow-gold: 0 0 20px rgba(212,175,95,0.15), 0 4px 12px rgba(0,0,0,0.5);
  --shadow-gold-hover: 0 0 40px rgba(212,175,95,0.25), 0 8px 24px rgba(0,0,0,0.6);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-spring: 0.4s cubic-bezier(0.34,1.56,0.64,1);

  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition-base); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold-dim); color: var(--gold-light); }


.display-heading {
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
.subsection-heading {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
.label-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-large { font-size: 1.125rem; line-height: 1.75; color: var(--text-secondary); }
.body-base { font-size: 1rem; line-height: 1.7; color: var(--text-secondary); }
.body-small { font-size: 0.875rem; line-height: 1.65; color: var(--text-muted); }

.highlight-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--copper) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-bg {
  background: linear-gradient(135deg, var(--gold-dim), rgba(184,115,51,0.12));
  padding: 0 0.2em;
  border-radius: var(--radius-sm);
}


.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10,11,15,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition-base);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-brand img { height: 36px; width: auto; }
.nav-brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  position: relative;
  transition: color var(--transition-base);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active-page { color: var(--gold); }
.nav-link.active-page::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  white-space: nowrap;
}
.nav-cta:hover {
  color: var(--bg-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-hover);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.lang-btn {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 0.25rem 0.4rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}
.lang-btn:hover { color: var(--text-primary); }
.lang-btn.active {
  color: var(--gold);
  background: var(--gold-dim);
}
.lang-divider { color: var(--text-muted); font-size: 0.7rem; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}
.nav-hamburger:hover { background: var(--silver-dim); }
.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}


.mobile-curtain {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--bg-secondary);
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  padding: var(--nav-height) var(--space-lg) var(--space-xl);
  overflow: hidden;
}
.mobile-curtain.is-open { transform: translateY(0); }

.mobile-curtain::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(212,175,95,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-sm);
  padding-top: var(--space-lg);
}
.mobile-nav-item {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--surface-border);
  transform: translateY(-30px);
  opacity: 0;
  transition: color var(--transition-base), transform 0.4s ease, opacity 0.4s ease;
}
.mobile-nav-item:hover { color: var(--gold); }
.mobile-curtain.is-open .mobile-nav-item { transform: translateY(0); opacity: 1; }
.mobile-curtain.is-open .mobile-nav-item:nth-child(1) { transition-delay: 0.05s; }
.mobile-curtain.is-open .mobile-nav-item:nth-child(2) { transition-delay: 0.1s; }
.mobile-curtain.is-open .mobile-nav-item:nth-child(3) { transition-delay: 0.15s; }
.mobile-curtain.is-open .mobile-nav-item:nth-child(4) { transition-delay: 0.2s; }
.mobile-curtain.is-open .mobile-nav-item:nth-child(5) { transition-delay: 0.25s; }

.mobile-curtain-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
}
.mobile-lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mobile-close-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.75rem 1.2rem;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
}
.mobile-close-btn:hover { color: var(--text-primary); border-color: var(--surface-border-hover); }


.page-wrapper { padding-top: var(--nav-height); min-height: 100vh; display: flex; flex-direction: column; }
.page-content { flex: 1; }


.hero-section {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--space-3xl) 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(212,175,95,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(15,17,24,0.8) 0%, transparent 70%),
    linear-gradient(160deg, #0a0b0f 0%, #0f1118 40%, #0d0f18 100%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,95,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,95,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-accent-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-accent-circle-1 {
  width: 600px;
  height: 600px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(212,175,95,0.08) 0%, transparent 70%);
  border: 1px solid rgba(212,175,95,0.06);
}
.hero-accent-circle-2 {
  width: 300px;
  height: 300px;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, rgba(212,175,95,0.05) 0%, transparent 70%);
  border: 1px solid rgba(212,175,95,0.08);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.hero-content { max-width: 600px; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}
.hero-label-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-headline { margin-bottom: var(--space-md); }
.hero-subtext {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-lg);
  max-width: 480px;
}
.hero-actions { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero-image-frame img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.hero-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card);
  border: 1px solid var(--surface-border-hover);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
}
.hero-badge-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.hero-badge-value { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }


.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
  color: var(--bg-primary);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.01em;
}
.primary-action:hover {
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
}
.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--surface-border);
  transition: all var(--transition-base);
}
.secondary-action:hover {
  color: var(--text-primary);
  border-color: var(--surface-border-hover);
  background: var(--silver-dim);
}
.ghost-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-base);
}
.ghost-action:hover { gap: 0.7rem; color: var(--gold-light); }


.content-section {
  padding: var(--space-3xl) 0;
}
.content-section-sm {
  padding: var(--space-2xl) 0;
}
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.section-header {
  max-width: 640px;
  margin-bottom: var(--space-2xl);
}
.section-header.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header .label-text { margin-bottom: var(--space-xs); }
.section-header .section-heading { margin-bottom: var(--space-sm); }
.section-header .body-large { margin-top: var(--space-xs); }


.visual-break {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--surface-border), transparent);
  margin: 0 var(--space-lg);
}


.info-grid {
  display: grid;
  gap: var(--space-md);
}
.info-grid-2 { grid-template-columns: repeat(2, 1fr); }
.info-grid-3 { grid-template-columns: repeat(3, 1fr); }
.info-grid-4 { grid-template-columns: repeat(4, 1fr); }


.content-block {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.content-block:hover {
  border-color: var(--surface-border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.content-block-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background var(--transition-base);
}
.content-block:hover .content-block-icon { background: rgba(212,175,95,0.2); }

.content-block-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.content-block-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }


.service-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  border-color: var(--surface-border-hover);
  box-shadow: var(--shadow-gold);
}
.service-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  cursor: pointer;
  user-select: none;
}
.service-card-header-left { display: flex; align-items: center; gap: var(--space-sm); }
.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background var(--transition-base);
}
.service-card.is-expanded .service-card-icon { background: rgba(212,175,95,0.2); }
.service-card-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.service-card-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.15rem; }
.service-card-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: all var(--transition-base);
  flex-shrink: 0;
}
.service-card.is-expanded .service-card-toggle {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
  transform: rotate(45deg);
}
.service-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1);
}
.service-card.is-expanded .service-card-body { max-height: 600px; }
.service-card-body-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--surface-border);
  padding-top: var(--space-md);
}
.service-card-body-inner p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-sm); }
.service-card-body-inner p:last-child { margin-bottom: 0; }
.service-features { display: flex; flex-direction: column; gap: 0.5rem; margin-top: var(--space-sm); }
.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.service-feature i { color: var(--gold); font-size: 0.7rem; margin-top: 0.3rem; flex-shrink: 0; }


.resource-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  opacity: 0;
  transition: opacity var(--transition-base);
}
.resource-card:hover {
  border-color: var(--surface-border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}
.resource-card:hover::before { opacity: 1; }
.resource-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}
.resource-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.resource-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.resource-action {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  transition: gap var(--transition-base);
}
.resource-card:hover .resource-action { gap: 0.7rem; }


.comparison-section {
  padding: var(--space-3xl) 0;
  background: var(--bg-secondary);
}
.comparison-wrapper {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--surface-border);
  user-select: none;
}
.comparison-container {
  position: relative;
  width: 100%;
  height: 420px;
}
.comparison-before,
.comparison-after {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.comparison-before { z-index: 1; }
.comparison-after { z-index: 2; }
.comparison-before img,
.comparison-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison-input {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  cursor: ew-resize;
  outline: none;
}
.comparison-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 4px;
  height: 420px;
  background: var(--gold);
  cursor: ew-resize;
  box-shadow: 0 0 20px rgba(212,175,95,0.5);
}
.comparison-input::-moz-range-thumb {
  width: 4px;
  height: 420px;
  background: var(--gold);
  cursor: ew-resize;
  border: none;
  border-radius: 0;
}
.comparison-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  z-index: 2;
  transition: clip-path 0s;
}
.comparison-clip img { width: 100%; height: 100%; object-fit: cover; }
.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(212,175,95,0.2), var(--shadow-md);
  pointer-events: none;
  transition: left 0s;
}
.comparison-handle i { color: var(--bg-primary); font-size: 0.9rem; }
.comparison-label-before,
.comparison-label-after {
  position: absolute;
  bottom: var(--space-sm);
  z-index: 5;
  background: rgba(10,11,15,0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill);
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  pointer-events: none;
}
.comparison-label-before { left: var(--space-sm); }
.comparison-label-after { right: var(--space-sm); }


.highlight-bar {
  background: var(--bg-elevated);
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
  padding: var(--space-xl) 0;
}
.highlight-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.highlight-item {}
.highlight-item-icon { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.5rem; }
.highlight-item-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); }
.highlight-item-value { font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin-top: 0.2rem; }


.team-profile {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--space-2xl);
  align-items: start;
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--surface-border);
}
.team-profile:last-child { border-bottom: none; }
.team-profile-image {
  position: relative;
}
.team-profile-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.team-profile-image-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--bg-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
}
.team-profile-content {}
.team-profile-role { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.team-profile-name { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--text-primary); letter-spacing: -0.02em; margin-bottom: var(--space-sm); }
.team-profile-bio { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: var(--space-md); }
.team-expertise-list { display: flex; flex-direction: column; gap: 0.5rem; }
.team-expertise-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.team-expertise-item i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }


.simulator-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: border-color var(--transition-base);
}
.simulator-card:hover { border-color: var(--surface-border-hover); }
.simulator-title { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-xs); }
.simulator-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: var(--space-lg); }

.simulator-form { display: flex; flex-direction: column; gap: var(--space-sm); }
.sim-field { display: flex; flex-direction: column; gap: 0.4rem; }
.sim-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.sim-input {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  width: 100%;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.sim-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.sim-input::placeholder { color: var(--text-muted); }
.sim-result {
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--gold-dim);
  border: 1px solid rgba(212,175,95,0.2);
  border-radius: var(--radius-lg);
  display: none;
}
.sim-result.is-visible { display: block; }
.sim-result-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }
.sim-result-value { font-size: 1.8rem; font-weight: 800; color: var(--text-primary); }
.sim-result-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.4rem; }
.sim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--bg-primary);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  font-family: inherit;
  border: none;
  margin-top: var(--space-xs);
}
.sim-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold-hover); }


.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-2xl);
  align-items: start;
}
.booking-option {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.booking-option:hover { border-color: var(--surface-border-hover); background: var(--bg-card-hover); }
.booking-option.selected { border-color: var(--gold); background: var(--gold-dim); }
.booking-option-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--gold-dim); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.2rem; flex-shrink: 0; }
.booking-option-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.booking-option-sub { font-size: 0.8rem; color: var(--text-muted); }
.booking-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}
.booking-sidebar-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: var(--space-sm); }
.booking-info-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--surface-border); }
.booking-info-item:last-of-type { border-bottom: none; }
.booking-info-icon { color: var(--gold); font-size: 0.9rem; margin-top: 0.2rem; flex-shrink: 0; }
.booking-info-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.booking-info-value { font-size: 0.9rem; color: var(--text-primary); margin-top: 0.1rem; }


.form-accordion { display: flex; flex-direction: column; gap: 0; }
.form-section {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0.5rem;
  transition: border-color var(--transition-base);
}
.form-section.is-open { border-color: var(--surface-border-hover); }
.form-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  cursor: pointer;
  background: var(--bg-card);
  transition: background var(--transition-base);
}
.form-section-header:hover { background: var(--bg-card-hover); }
.form-section.is-open .form-section-header { background: var(--bg-elevated); }
.form-section-header-left { display: flex; align-items: center; gap: 0.75rem; }
.form-section-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(212,175,95,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.form-section.is-open .form-section-num { background: linear-gradient(135deg, var(--gold), var(--copper)); color: var(--bg-primary); border-color: transparent; }
.form-section-title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }
.form-section-chevron { color: var(--text-muted); font-size: 0.75rem; transition: transform var(--transition-base); }
.form-section.is-open .form-section-chevron { transform: rotate(180deg); color: var(--gold); }
.form-section-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
  background: var(--bg-secondary);
}
.form-section.is-open .form-section-body { max-height: 400px; }
.form-section-body-inner { padding: var(--space-md); display: flex; flex-direction: column; gap: var(--space-sm); }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.form-input,
.form-textarea,
.form-select {
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  width: 100%;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--bg-card); }
.privacy-check { display: flex; align-items: flex-start; gap: 0.75rem; }
.privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.privacy-check-label { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.privacy-check-label a { color: var(--gold); }
.form-submit-row { padding: var(--space-sm) 0 0; }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-2xl);
  align-items: start;
}
.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}
.contact-detail { display: flex; align-items: flex-start; gap: var(--space-sm); padding: var(--space-sm) 0; border-bottom: 1px solid var(--surface-border); }
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--gold-dim); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.95rem; flex-shrink: 0; }
.contact-detail-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail-value { font-size: 0.95rem; color: var(--text-primary); margin-top: 0.15rem; }
.contact-detail-value a { color: var(--text-primary); transition: color var(--transition-base); }
.contact-detail-value a:hover { color: var(--gold); }

.map-frame {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow-md);
}
.map-frame iframe {
  width: 100%;
  height: 260px;
  display: block;
  filter: grayscale(30%) invert(90%) hue-rotate(180deg) brightness(0.8) contrast(0.9);
}


.thanks-section {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3xl) var(--space-lg);
}
.thanks-inner { text-align: center; max-width: 520px; }
.envelope-scene {
  width: 100px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  position: relative;
}
.envelope-body {
  width: 100px;
  height: 64px;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}
.envelope-flap {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 36px solid var(--gold);
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: top center;
  animation: flapOpen 0.6s 0.3s ease forwards;
}
.envelope-letter {
  width: 76px;
  height: 52px;
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-card-hover));
  border: 1px solid var(--surface-border-hover);
  border-radius: var(--radius-sm);
  position: absolute;
  bottom: 8px;
  left: 12px;
  animation: letterRise 0.6s 0.8s ease forwards;
  transform: translateY(0);
  opacity: 0;
}
.envelope-letter::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  right: 8px;
  height: 1px;
  background: var(--gold-dim);
}
.envelope-letter::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 8px;
  width: 60%;
  height: 1px;
  background: var(--gold-dim);
}
@keyframes flapOpen {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-160deg); }
}
@keyframes letterRise {
  from { transform: translateY(0); opacity: 0; }
  to { transform: translateY(-28px); opacity: 1; }
}
.thanks-heading { margin-bottom: var(--space-sm); animation: fadeUp 0.6s 1.2s ease both; }
.thanks-text { color: var(--text-secondary); line-height: 1.7; margin-bottom: var(--space-lg); animation: fadeUp 0.6s 1.4s ease both; }
.thanks-actions { animation: fadeUp 0.6s 1.6s ease both; display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.legal-hero {
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--surface-border);
  background: var(--bg-secondary);
}
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg);
}
.legal-section { margin-bottom: var(--space-xl); }
.legal-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-sm);
  border-left: 2px solid var(--gold);
}
.legal-answer { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.legal-answer p { margin-bottom: 0.75rem; }
.legal-answer p:last-child { margin-bottom: 0; }
.legal-answer ul { padding-left: 1.2rem; }
.legal-answer ul li { margin-bottom: 0.4rem; position: relative; }
.legal-answer ul li::before { content: '–'; position: absolute; left: -1rem; color: var(--gold); }
.legal-updated { font-size: 0.8rem; color: var(--text-muted); margin-top: var(--space-sm); }
.aviso-section { margin-bottom: var(--space-xl); }
.aviso-title { font-size: 1.05rem; font-weight: 700; color: var(--gold); margin-bottom: var(--space-xs); }
.aviso-body { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }


.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--surface-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}
.footer-cards {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
.footer-card {
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.footer-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: var(--space-sm); }
.footer-brand img { height: 30px; }
.footer-brand-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-size: 0.875rem; color: var(--text-secondary); transition: color var(--transition-base); }
.footer-link:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.75rem; }
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-icon { color: var(--gold); font-size: 0.85rem; margin-top: 0.2rem; flex-shrink: 0; }
.footer-contact-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }
.footer-contact-text a { color: var(--text-secondary); }
.footer-contact-text a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--surface-border);
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.footer-copyright { font-size: 0.8rem; color: var(--text-muted); }
.footer-legal-links { display: flex; gap: var(--space-sm); }
.footer-legal-link { font-size: 0.8rem; color: var(--text-muted); transition: color var(--transition-base); }
.footer-legal-link:hover { color: var(--gold); }


.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal-delay-1 { transition-delay: 0.1s; }
.scroll-reveal-delay-2 { transition-delay: 0.2s; }
.scroll-reveal-delay-3 { transition-delay: 0.3s; }
.scroll-reveal-delay-4 { transition-delay: 0.4s; }


.page-hero {
  padding: var(--space-2xl) 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--surface-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 50%, rgba(212,175,95,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}
.page-hero-label { margin-bottom: var(--space-xs); }
.page-hero-heading { margin-bottom: var(--space-sm); }
.page-hero-sub { max-width: 560px; }


.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.two-col-text.reverse .col-visual { order: -1; }
.col-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.page-breadcrumb a { color: var(--text-muted); transition: color var(--transition-base); }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb i { font-size: 0.6rem; }

.notice-box {
  background: var(--gold-dim);
  border: 1px solid rgba(212,175,95,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.notice-box i { color: var(--gold); font-size: 1rem; margin-top: 0.1rem; flex-shrink: 0; }
.notice-box-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }


.cookie-bell-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
  color: var(--gold);
  font-size: 1.2rem;
}
.cookie-bell-btn:hover {
  border-color: var(--surface-border-hover);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}
.cookie-bell-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
}
.cookie-panel {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 7999;
  width: 340px;
  background: var(--bg-card);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.cookie-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.cookie-panel-header {
  padding: var(--space-md);
  border-bottom: 1px solid var(--surface-border);
  background: var(--bg-elevated);
}
.cookie-panel-title { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.cookie-panel-desc { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
.cookie-panel-body { padding: var(--space-sm) var(--space-md); }
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--surface-border);
}
.cookie-toggle-row:last-child { border-bottom: none; }
.cookie-toggle-info {}
.cookie-toggle-name { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.cookie-toggle-desc { font-size: 0.72rem; color: var(--text-muted); }
.cookie-toggle {
  position: relative;
  width: 38px;
  height: 22px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-base);
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text-muted);
  border-radius: 50%;
  transition: all var(--transition-base);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold-dim); border-color: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translate(16px,-50%); background: var(--gold); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-panel-footer {
  padding: var(--space-sm) var(--space-md) var(--space-md);
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.cookie-btn-accept {
  width: 100%;
  padding: 0.65rem;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: var(--bg-primary);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  border: none;
  transition: all var(--transition-base);
}
.cookie-btn-accept:hover { opacity: 0.9; }
.cookie-btn-save {
  width: 100%;
  padding: 0.65rem;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
  border: 1px solid var(--surface-border);
  transition: all var(--transition-base);
}
.cookie-btn-save:hover { border-color: var(--surface-border-hover); color: var(--text-primary); }
.cookie-policy-link { text-align: center; font-size: 0.72rem; color: var(--text-muted); }
.cookie-policy-link a { color: var(--gold); }


@media (max-width: 1024px) {
  .footer-cards { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
  .hero-subtext { max-width: 100%; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .highlight-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .info-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .team-profile { grid-template-columns: 260px 1fr; gap: var(--space-lg); }
  .two-col-text { grid-template-columns: 1fr; }
  .two-col-text.reverse .col-visual { order: 0; }
}

@media (max-width: 768px) {
  :root { --space-3xl: 5rem; --space-2xl: 3.5rem; --space-xl: 2.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }
  .footer-cards { grid-template-columns: 1fr; }
  .info-grid-3 { grid-template-columns: 1fr; }
  .info-grid-2 { grid-template-columns: 1fr; }
  .info-grid-4 { grid-template-columns: 1fr; }
  .highlight-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .team-profile { grid-template-columns: 1fr; }
  .team-profile-image img { height: 280px; }
  .comparison-container { height: 280px; }
  .comparison-input::-webkit-slider-thumb { height: 280px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cookie-panel { width: calc(100vw - 48px); right: 24px; }
}

@media (max-width: 480px) {
  :root { --space-lg: 1.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .primary-action,
  .hero-actions .secondary-action { width: 100%; justify-content: center; }
  .thanks-actions { flex-direction: column; }
}