



:root {
  --bg-primary: #0a0f0d;
  --bg-secondary: #0f1a14;
  --bg-card: #131f18;
  --bg-card-raised: #172318;
  --bg-inset: #080d0a;
  --accent-green: #4ade80;
  --accent-emerald: #10b981;
  --accent-moss: #6ee7b7;
  --accent-glow: rgba(74, 222, 128, 0.15);
  --text-primary: #e8f5ee;
  --text-secondary: #9dbfaa;
  --text-muted: #5a7a65;
  --border-subtle: #1e3028;
  --border-mid: #2a4035;
  --nav-height: 72px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.4);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  --shadow-glow: 0 0 20px rgba(74, 222, 128, 0.2), 0 4px 12px rgba(0,0,0,0.4);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

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


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-green); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--accent-moss); }
ul { list-style: none; }
address { font-style: normal; }


.surface { background: var(--bg-card); }
.surface-raised { background: var(--bg-card-raised); }
.surface-inset { background: var(--bg-inset); }


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}


.nav-surface {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav-inner {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 1.25rem; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  text-decoration: none; color: var(--text-primary);
  transition: opacity 0.2s ease;
}
.nav-logo:hover { opacity: 0.85; color: var(--text-primary); }
.logo-img { width: 32px; height: 32px; }
.logo-text {
  font-size: 1.1rem; font-weight: 700;
  color: var(--text-primary); letter-spacing: -0.01em;
}
.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.875rem; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-green);
  background: rgba(74, 222, 128, 0.08);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
  min-width: 44px; min-height: 44px; align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}


.mobile-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: 1100; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(4px);
}
.mobile-overlay.active { opacity: 1; visibility: visible; }

.mobile-panel {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px; max-width: 85vw;
  background: var(--bg-card-raised);
  border-left: 1px solid var(--border-subtle);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  padding: 2rem 1.5rem;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);
}
.mobile-panel.active { transform: translateX(0); }

.mobile-close {
  align-self: flex-end; background: none; border: none;
  color: var(--text-secondary); cursor: pointer; font-size: 1.25rem;
  padding: 0.5rem; min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); transition: color 0.2s ease, background 0.2s ease;
  margin-bottom: 1rem;
}
.mobile-close:hover { color: var(--accent-green); background: rgba(74,222,128,0.08); }

.mobile-nav-links { flex: 1; }
.mobile-nav-links li { border-bottom: 1px solid var(--border-subtle); }
.mobile-nav-links li a {
  display: block; padding: 1rem 0.5rem;
  font-size: 1.1rem; font-weight: 600; color: var(--text-primary);
  transition: color 0.2s ease, padding-left 0.2s ease;
  text-decoration: none;
}
.mobile-nav-links li a:hover { color: var(--accent-green); padding-left: 1rem; }

.mobile-panel-footer {
  padding-top: 1.5rem; border-top: 1px solid var(--border-subtle);
  margin-top: 1.5rem;
}
.mobile-panel-footer p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; }


.text-display {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--text-primary);
}
.text-display-page {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text-primary);
}
.text-body {
  font-size: 1rem; line-height: 1.75; color: var(--text-secondary);
}
.text-caption {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 500;
}
.text-accent { color: var(--accent-green); }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--text-primary);
}
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-green);
  padding: 0.3rem 0.75rem; border-radius: 100px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7;
  max-width: 680px; margin: 0 auto;
}
.section-header {
  text-align: center; margin-bottom: 3.5rem;
}
.section-header .section-title { margin-bottom: 1rem; }


.space-section { padding: var(--space-2xl) 0; }
.space-card { padding: var(--space-md); }


.hero-section { min-height: 100vh; }
.hero-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-green);
  padding: 0.3rem 0.75rem; border-radius: 100px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.25);
  margin-bottom: 1.5rem;
}
.accent-word {
  color: var(--accent-green);
  position: relative;
}
.accent-word::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--accent-green), transparent);
  border-radius: 2px;
}
.hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(232, 245, 238, 0.75);
  max-width: 680px; margin: 1.5rem auto 2.5rem;
  line-height: 1.75;
}
.hero-cta-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(232,245,238,0.4); font-size: 1.2rem;
  animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


.action-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: var(--radius-md);
  background: var(--accent-green);
  color: #0a0f0d; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(74, 222, 128, 0.3), 0 1px 3px rgba(0,0,0,0.2);
}
.action-primary:hover {
  background: var(--accent-moss);
  color: #0a0f0d;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.45), 0 2px 8px rgba(0,0,0,0.3);
  transform: translateY(-1px);
}
.action-primary:active { transform: translateY(0); }

.action-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-primary); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer;
  border: 1.5px solid var(--border-mid);
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease, transform 0.15s ease;
}
.action-ghost:hover {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(74, 222, 128, 0.06);
  transform: translateY(-1px);
}


.page-hero-inner {
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 1px solid var(--border-subtle);
}
.page-hero-desc {
  font-size: 1.05rem; color: var(--text-secondary); line-height: 1.75;
  max-width: 700px; margin-top: 1rem;
}


.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.benefit-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}
.benefit-item:hover {
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(74,222,128,0.08);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74, 222, 128, 0.1);
  border-radius: var(--radius-md);
  color: var(--accent-green); font-size: 1.1rem;
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.benefit-content h3 {
  font-size: 1rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 0.4rem;
}
.benefit-content p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }


.splide__pagination__page.is-active { background: var(--accent-green); }
.splide__arrow { background: var(--bg-card-raised); border: 1px solid var(--border-mid); }
.splide__arrow svg { fill: var(--text-primary); }
.splide__arrow:hover { background: rgba(74,222,128,0.15); }

.park-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.park-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.park-card-image { position: relative; height: 200px; overflow: hidden; }
.park-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.park-card:hover .park-card-image img { transform: scale(1.04); }
.park-badge {
  position: absolute; top: 0.75rem; left: 0.75rem;
  background: rgba(10,15,13,0.85); backdrop-filter: blur(8px);
  color: var(--accent-green); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border-radius: 100px;
  border: 1px solid rgba(74,222,128,0.3);
}
.park-card-body { padding: 1.25rem; }
.park-card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.25rem; }
.park-card-body .text-caption { margin-bottom: 0.75rem; }
.park-card-body .text-body { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.park-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.55rem;
  border-radius: 100px; background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.18); color: var(--accent-moss);
}


.gradient-section {
  background: linear-gradient(135deg, #0a0f0d 0%, #0d1f16 40%, #0f2518 70%, #0a1510 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}


.features-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.features-left .section-title { margin-bottom: 0; }
.features-image {
  width: 100%; border-radius: var(--radius-lg);
  margin-top: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  object-fit: cover; height: 260px;
}
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.25rem 0;
}
.feature-icon-wrap {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74, 222, 128, 0.1); border-radius: var(--radius-md);
  color: var(--accent-green); font-size: 1rem;
  border: 1px solid rgba(74, 222, 128, 0.2);
}
.feature-text h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.3rem; }
.feature-text p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.feature-separator {
  height: 1px; background: var(--border-subtle);
}


.ecosystems-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.ecosystem-card {
  padding: 2rem 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}
.ecosystem-card:hover {
  border-color: rgba(74,222,128,0.3); transform: translateY(-3px);
}
.ecosystem-visual {
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(74,222,128,0.15), rgba(16,185,129,0.1));
  border-radius: var(--radius-lg); font-size: 1.5rem; color: var(--accent-green);
  border: 1px solid rgba(74,222,128,0.2);
}
.ecosystem-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
.ecosystem-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }


.cta-gradient-section {
  background: linear-gradient(135deg, #0f2518 0%, #0a1a12 50%, #061009 100%);
  border-top: 1px solid rgba(74,222,128,0.1);
  border-bottom: 1px solid rgba(74,222,128,0.1);
  position: relative; overflow: hidden;
}
.cta-gradient-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,222,128,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.cta-text { flex: 1; min-width: 280px; }
.cta-text .section-title { margin-top: 0.75rem; margin-bottom: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }


.about-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.about-text .section-title { margin-bottom: 1.25rem; }
.about-image {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  object-fit: cover; height: 380px;
}


.criteria-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.criteria-card {
  padding: 2rem 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.criteria-card:hover { border-color: rgba(74,222,128,0.3); transform: translateY(-2px); }
.criteria-number {
  font-size: 2.5rem; font-weight: 800; color: rgba(74,222,128,0.15);
  line-height: 1; margin-bottom: 1rem; font-variant-numeric: tabular-nums;
}
.criteria-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.6rem; }
.criteria-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }


.topics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.topic-block {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}
.topic-block:hover { border-color: rgba(74,222,128,0.25); }
.topic-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,0.1); border-radius: var(--radius-md);
  color: var(--accent-green); font-size: 1.2rem;
  border: 1px solid rgba(74,222,128,0.2);
}
.topic-content h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.topic-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }


.mission-wrap {
  display: flex; gap: 3rem; align-items: flex-start;
  padding: 3rem; border-radius: var(--radius-xl);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}
.mission-icon-large {
  width: 72px; height: 72px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(74,222,128,0.2), rgba(16,185,129,0.1));
  border-radius: var(--radius-xl); font-size: 2rem; color: var(--accent-green);
  border: 1px solid rgba(74,222,128,0.25);
  box-shadow: 0 0 20px rgba(74,222,128,0.1);
}
.mission-content .section-title { margin-bottom: 1rem; }


.transport-modes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem;
}
.transport-card {
  padding: 2rem 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s ease, transform 0.2s ease;
}
.transport-card:hover { border-color: rgba(74,222,128,0.3); transform: translateY(-2px); }
.transport-icon {
  width: 52px; height: 52px; margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,0.1); border-radius: var(--radius-md);
  color: var(--accent-green); font-size: 1.3rem;
  border: 1px solid rgba(74,222,128,0.2);
}
.transport-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.75rem; }
.transport-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 1rem; }
.transport-list { list-style: none; }
.transport-list li {
  font-size: 0.82rem; color: var(--text-muted); padding: 0.3rem 0;
  padding-left: 1rem; position: relative;
}
.transport-list li::before {
  content: '›'; position: absolute; left: 0; color: var(--accent-green);
}

.transport-detail-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.transport-detail-image img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); border: 1px solid var(--border-subtle);
  object-fit: cover; height: 380px;
}
.transport-detail-content .section-title { margin: 0.75rem 0 1rem; }

.park-access-list { display: flex; flex-direction: column; gap: 1.5rem; }
.park-access-item {
  padding: 2rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  transition: border-color 0.3s ease;
}
.park-access-item:hover { border-color: rgba(74,222,128,0.25); }
.park-access-header {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
}
.park-access-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); }
.park-region-badge {
  font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem;
  border-radius: 100px; background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.18); color: var(--accent-moss);
}
.park-access-body { display: flex; flex-direction: column; gap: 1rem; }
.access-detail {
  display: flex; gap: 0.875rem; align-items: flex-start;
}
.access-detail i {
  color: var(--accent-green); font-size: 0.9rem; margin-top: 0.2rem; flex-shrink: 0;
  width: 20px;
}
.access-detail p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

.tips-transport-wrap {
  max-width: 900px; margin: 0 auto;
}
.tips-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.tip-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.5rem; border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s ease;
}
.tip-item:hover { border-color: rgba(74,222,128,0.25); }
.tip-item i {
  color: var(--accent-green); font-size: 1.1rem;
  margin-top: 0.15rem; flex-shrink: 0; width: 22px;
}
.tip-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.35rem; }
.tip-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }


.contact-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.contact-map-side { display: flex; flex-direction: column; gap: 1.5rem; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  height: 300px; border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}
.contact-info-block {
  padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 1rem;
}
.contact-info-item {
  display: flex; gap: 0.875rem; align-items: flex-start;
}
.contact-info-item i {
  color: var(--accent-green); font-size: 0.95rem;
  margin-top: 0.2rem; flex-shrink: 0; width: 18px;
}
.contact-info-item strong { display: block; font-size: 0.85rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.contact-info-item a { color: var(--text-secondary); }
.contact-info-item a:hover { color: var(--accent-green); }


.form-title {
  font-size: 1.4rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.875rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 0.5rem;
}
.required-mark { color: var(--accent-green); }
.form-input, .form-textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--bg-card); border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-md); color: var(--text-primary);
  font-family: 'Nunito Sans', sans-serif; font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-checkbox-group { margin-top: 0.5rem; }
.checkbox-label {
  display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer;
}
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid var(--border-mid); border-radius: 4px;
  background: var(--bg-card); margin-top: 0.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--accent-green); border-color: var(--accent-green);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: '✓'; color: #0a0f0d; font-size: 0.75rem; font-weight: 800;
}
.checkbox-text { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.5; }
.checkbox-text a { color: var(--accent-green); }

.form-error {
  color: #f87171; font-size: 0.85rem; margin-bottom: 0.75rem;
  min-height: 0; transition: min-height 0.2s ease;
}
.form-submit-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }


.iti__flag-container { background: transparent; }
.iti__selected-flag {
  background: var(--bg-card) !important;
  border-right: 1px solid var(--border-mid);
}
.iti__selected-flag:hover { background: rgba(74,222,128,0.08) !important; }
.iti__dropdown-content {
  background: var(--bg-card-raised) !important;
  border: 1px solid var(--border-mid) !important;
}
.iti__country:hover, .iti__country.iti__highlight {
  background: rgba(74,222,128,0.08) !important;
}
.iti__country-name, .iti__dial-code { color: var(--text-secondary) !important; }


.timeline-wrap {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.timeline-item {
  display: grid; grid-template-columns: 52px 1fr; gap: 1.5rem;
  align-items: stretch; position: relative;
}
.timeline-dot {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,0.12);
  border: 2px solid rgba(74,222,128,0.3);
  border-radius: 50%; color: var(--accent-green); font-size: 1rem;
  z-index: 2; position: relative;
  box-shadow: 0 0 16px rgba(74,222,128,0.15);
  align-self: flex-start; margin-top: 0;
}
.timeline-connector {
  position: absolute; left: 25px; top: 52px; bottom: -1rem;
  width: 2px; background: linear-gradient(180deg, rgba(74,222,128,0.3), rgba(74,222,128,0.05));
  z-index: 1;
}
.timeline-content {
  padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
  transition: border-color 0.3s ease;
}
.timeline-content:hover { border-color: rgba(74,222,128,0.25); }
.timeline-step {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent-green);
  display: block; margin-bottom: 0.4rem;
}
.timeline-content h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.timeline-item-last .timeline-dot { align-self: flex-start; }


.legal-container {
  max-width: 840px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.legal-card {
  padding: 2rem 2.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
}
.legal-card h2 {
  font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem; border-bottom: 1px solid var(--border-subtle);
}
.legal-card p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.75; }
.legal-list {
  list-style: none; padding-left: 0;
}
.legal-list li {
  font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7;
  padding: 0.3rem 0 0.3rem 1.25rem; position: relative;
}
.legal-list li::before {
  content: '›'; position: absolute; left: 0; color: var(--accent-green); font-weight: 700;
}


.cookie-card-style .cookie-card-header {
  display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.25rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle);
}
.cookie-card-header i { font-size: 1.25rem; color: var(--accent-green); }
.cookie-card-header h2 {
  font-size: 1.15rem; font-weight: 700; color: var(--text-primary);
  margin: 0; padding: 0; border: none;
}
.cookie-type-block h3 {
  font-size: 0.95rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 0.5rem; margin-top: 0;
}
.cookie-table {
  width: 100%; border-collapse: collapse; margin-top: 0.75rem;
  font-size: 0.82rem;
}
.cookie-table th {
  text-align: left; padding: 0.6rem 0.75rem;
  background: rgba(74,222,128,0.06); color: var(--text-secondary);
  font-weight: 600; border-bottom: 1px solid var(--border-mid);
}
.cookie-table td {
  padding: 0.6rem 0.75rem; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}
.cookie-table tr:last-child td { border-bottom: none; }


.legal-card[style*="border-left"] h2 { border-bottom: none; padding-bottom: 0.5rem; }


.cookie-trigger-wrap {
  position: fixed; bottom: 1.25rem; left: 1.25rem; z-index: 900;
}
.cookie-text-link {
  background: rgba(19, 31, 24, 0.92); backdrop-filter: blur(8px);
  border: 1px solid var(--border-mid); border-radius: 100px;
  color: var(--text-muted); font-size: 0.75rem; font-weight: 600;
  padding: 0.45rem 0.875rem; cursor: pointer;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: 'Nunito Sans', sans-serif;
}
.cookie-text-link:hover {
  color: var(--accent-green); border-color: rgba(74,222,128,0.4);
  box-shadow: 0 2px 12px rgba(74,222,128,0.1);
}
.cookie-text-link.pulse {
  animation: cookiePulse 2s ease-in-out 3;
}
@keyframes cookiePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  50% { box-shadow: 0 0 0 6px rgba(74,222,128,0.15); }
}

.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(6px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1rem;
}
.cookie-modal-overlay.active { opacity: 1; visibility: visible; }

.cookie-modal {
  background: var(--bg-card-raised);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 2rem; max-width: 480px; width: 100%;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(74,222,128,0.05);
  position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform 0.3s ease;
}
.cookie-modal-overlay.active .cookie-modal {
  transform: scale(1) translateY(0);
}
.cookie-modal h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.cookie-modal-desc { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 1.5rem; }
.cookie-modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; color: var(--text-muted);
  cursor: pointer; font-size: 1rem; padding: 0.4rem;
  border-radius: var(--radius-sm); transition: color 0.2s ease;
  min-width: 32px; min-height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal-close:hover { color: var(--text-primary); }

.cookie-options { display: flex; flex-direction: column; gap: 0; }
.cookie-option {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cookie-option:last-child { border-bottom: none; }
.cookie-option-info strong {
  display: block; font-size: 0.9rem; color: var(--text-primary); margin-bottom: 0.2rem;
}
.cookie-option-info p { font-size: 0.8rem; color: var(--text-muted); }

.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: var(--border-mid); border-radius: 100px;
  transition: background 0.25s ease;
}
.toggle-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; bottom: 3px;
  background: white; border-radius: 50%;
  transition: transform 0.25s ease;
}
.cookie-toggle input:checked + .toggle-slider { background: var(--accent-green); }
.cookie-toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.cookie-toggle.disabled { opacity: 0.6; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex; gap: 0.75rem; margin-top: 1.5rem; flex-wrap: wrap;
}
.cookie-modal-actions .action-ghost,
.cookie-modal-actions .action-primary { flex: 1; justify-content: center; }
.cookie-reject-btn { font-size: 0.875rem; padding: 0.7rem 1rem; }
.cookie-modal-legal {
  font-size: 0.75rem; color: var(--text-muted); margin-top: 1rem; text-align: center;
}
.cookie-modal-legal a { color: var(--text-muted); text-decoration: underline; }
.cookie-modal-legal a:hover { color: var(--accent-green); }


.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2rem;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-logo-link { margin-bottom: 1rem; display: inline-flex; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; max-width: 260px; }
.footer-heading {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-secondary);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent-green); }
.footer-address { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-address p {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.5;
}
.footer-address i { color: var(--accent-green); margin-top: 0.15rem; flex-shrink: 0; font-size: 0.85rem; }
.footer-address a { color: var(--text-muted); }
.footer-address a:hover { color: var(--accent-green); }
.footer-legal-bar {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.footer-legal-info p {
  font-size: 0.75rem; color: var(--text-muted); line-height: 1.7;
}
.footer-copyright { font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; }


.thanks-main {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-height) + 2rem) 1.25rem 4rem;
}
.thanks-card {
  max-width: 520px; width: 100%; text-align: center;
  padding: 3rem 2.5rem; border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-lg);
}
.thanks-icon {
  width: 72px; height: 72px; margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(74,222,128,0.12); border-radius: 50%;
  font-size: 2rem; color: var(--accent-green);
  border: 2px solid rgba(74,222,128,0.3);
  box-shadow: 0 0 24px rgba(74,222,128,0.15);
}
.thanks-card h1 {
  font-size: 1.75rem; font-weight: 800; color: var(--text-primary); margin-bottom: 1rem;
}
.thanks-desc { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 2rem; }
.thanks-countdown {
  background: rgba(74,222,128,0.05); border: 1px solid rgba(74,222,128,0.15);
  border-radius: var(--radius-md); padding: 0.75rem 1rem; margin-bottom: 1.5rem;
}
.thanks-countdown p { font-size: 0.875rem; color: var(--text-secondary); }
.countdown-number {
  font-size: 1.1rem; font-weight: 800; color: var(--accent-green);
  display: inline-block; min-width: 1.5ch; text-align: center;
}
.thanks-return-btn { display: inline-flex; }


@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .features-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2rem; }
  .transport-detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .topics-layout { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .space-section { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .action-primary, .action-ghost { width: 100%; max-width: 280px; justify-content: center; }
  .benefits-grid { grid-template-columns: 1fr; }
  .ecosystems-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .transport-modes-grid { grid-template-columns: 1fr; }
  .tips-two-col { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; }
  .cta-actions { width: 100%; }
  .cta-actions .action-primary,
  .cta-actions .action-ghost { flex: 1; }
  .mission-wrap { flex-direction: column; padding: 2rem; gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-brand { grid-column: auto; }
  .footer-legal-bar { flex-direction: column; gap: 0.75rem; }
  .legal-card { padding: 1.5rem; }
  .contact-split { grid-template-columns: 1fr; }
  .park-access-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .timeline-item { grid-template-columns: 44px 1fr; gap: 1rem; }
  .timeline-dot { width: 44px; height: 44px; }
  .timeline-connector { left: 21px; }
  .thanks-card { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .nav-inner { padding: 0 1rem; }
  .text-display { font-size: 2rem; }
  .text-display-page { font-size: 1.75rem; }
  .hero-description { font-size: 0.95rem; }
  .page-hero-inner { padding: calc(var(--nav-height) + 2.5rem) 0 2.5rem; }
  .cookie-modal { padding: 1.5rem; }
  .cookie-modal-actions { flex-direction: column; }
}