:root {
  --ink: #1a1a2e;
  --ink-soft: #2d2d4a;
  --ink-muted: #5a5a7a;
  --paper: #f5f3ee;
  --paper-warm: #ede9e1;
  --paper-deep: #e4dfd5;
  --accent: #2ecc71;
  --accent-deep: #27ae60;
  --accent-muted: rgba(46,204,113,0.12);
  --gold: #c9a84c;
  --surface-white: #ffffff;
  --surface-glass: rgba(245,243,238,0.85);
  --shadow-sm: 0 1px 3px rgba(26,26,46,0.08), 0 1px 2px rgba(26,26,46,0.06);
  --shadow-md: 0 4px 16px rgba(26,26,46,0.10), 0 2px 6px rgba(26,26,46,0.07);
  --shadow-lg: 0 12px 40px rgba(26,26,46,0.13), 0 4px 12px rgba(26,26,46,0.08);
  --shadow-xl: 0 24px 64px rgba(26,26,46,0.16), 0 8px 24px rgba(26,26,46,0.10);
  --shadow-glow: 0 0 40px rgba(46,204,113,0.2), 0 4px 16px rgba(46,204,113,0.1);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --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; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: var(--paper); color: var(--ink); overflow-x: hidden; line-height: 1.6; }

.canvas { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }


.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }


.nav-canvas {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--surface-glass);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 72px; max-width: 1400px; margin: 0 auto;
}
.nav-border {
  height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.nav-border.visible { transform: scaleX(1); }
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }
.nav-logo-text {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: var(--ink); letter-spacing: -0.02em; line-height: 1.2;
}
.nav-tabs { display: flex; align-items: center; gap: 4px; }
.nav-tab {
  display: inline-flex; align-items: center;
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 0.875rem; font-weight: 500; color: var(--ink-soft);
  text-decoration: none; transition: all 0.25s ease;
  border: 1.5px solid transparent; white-space: nowrap;
}
.nav-tab:hover { color: var(--ink); background: rgba(26,26,46,0.06); }
.nav-tab.active {
  color: var(--ink); background: var(--paper);
  border-color: rgba(26,26,46,0.15); box-shadow: var(--shadow-sm);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
  border-radius: var(--radius-sm); transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(26,26,46,0.06); }
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.3s ease;
}


.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(340px, 90vw); background: var(--ink);
  z-index: 200; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 2rem;
  box-shadow: var(--shadow-xl);
}
.drawer.open { transform: translateX(0); }
.stage-curtain {
  position: fixed; inset: 0; background: rgba(26,26,46,0.6);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease; backdrop-filter: blur(4px);
}
.stage-curtain.visible { opacity: 1; pointer-events: all; }
.drawer-close {
  align-self: flex-end; background: rgba(245,243,238,0.1);
  border: none; color: var(--paper); width: 40px; height: 40px;
  border-radius: var(--radius-full); cursor: pointer; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; margin-bottom: 2rem;
}
.drawer-close:hover { background: rgba(245,243,238,0.2); }
.drawer-logo { margin-bottom: 2.5rem; }
.drawer-nav { display: flex; flex-direction: column; gap: 0.25rem; flex: 1; }
.drawer-link {
  display: block; padding: 0.875rem 1rem;
  color: rgba(245,243,238,0.7); text-decoration: none;
  font-size: 1rem; font-weight: 500; border-radius: var(--radius-md);
  transition: all 0.2s ease; border-left: 2px solid transparent;
}
.drawer-link:hover { color: var(--paper); background: rgba(245,243,238,0.08); border-left-color: var(--accent); }
.drawer-link.active { color: var(--accent); background: rgba(46,204,113,0.1); border-left-color: var(--accent); }
.drawer-footer { margin-top: auto; padding-top: 2rem; border-top: 1px solid rgba(245,243,238,0.1); }


.stage {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--ink); overflow: hidden; padding-top: 72px;
}
.stage-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 40%, #0f3460 100%);
}
.stage-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(46,204,113,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,204,113,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.stage-glow {
  position: absolute; top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(46,204,113,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.stage-content {
  position: relative; z-index: 2;
  max-width: 1400px; margin: 0 auto;
  padding: 5rem 2rem 4rem; width: 100%;
}
.stage-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600;
  color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.stage-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.stage-headline-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.stage-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700; color: var(--paper);
  line-height: 1.0; letter-spacing: -0.03em;
}
.stage-headline-accent { color: var(--accent); }
.stage-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(245,243,238,0.75); line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 480px;
}
.stage-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--accent);
  color: var(--ink); font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius-full); text-decoration: none;
  transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(46,204,113,0.3);
  border: none; cursor: pointer;
}
.cta-primary:hover {
  background: var(--accent-deep); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,204,113,0.4);
}
.cta-primary.dark {
  background: var(--ink); color: var(--paper);
  box-shadow: var(--shadow-md);
}
.cta-primary.dark:hover {
  background: var(--ink-soft);
  box-shadow: var(--shadow-lg);
}
.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid rgba(245,243,238,0.3);
  color: var(--paper); font-weight: 600; font-size: 0.9rem;
  border-radius: var(--radius-full); text-decoration: none;
  transition: all 0.3s ease;
}
.cta-ghost:hover {
  background: rgba(245,243,238,0.1);
  border-color: rgba(245,243,238,0.6);
}
.stage-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.stage-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(245,243,238,0.08);
  border: 1px solid rgba(245,243,238,0.15);
  border-radius: var(--radius-full);
  color: rgba(245,243,238,0.6); font-size: 0.8rem; font-weight: 500;
}
.stage-scroll-hint {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 4rem; color: rgba(245,243,238,0.4); font-size: 0.8rem;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.stage-scroll-line {
  width: 60px; height: 1px; background: rgba(245,243,238,0.2);
  position: relative; overflow: hidden;
}
.stage-scroll-line::after {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%; background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }


.section-intro { padding: var(--space-3xl) 0; }
.intro-layout { display: grid; grid-template-columns: 200px 1fr; gap: 4rem; align-items: start; }
.intro-label { padding-top: 0.5rem; }
.label-text {
  font-family: 'Unbounded', sans-serif; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-muted); writing-mode: horizontal-tb;
}
.intro-headline {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 2rem;
}
.intro-text-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
}
.intro-text-cols p { color: var(--ink-soft); line-height: 1.8; font-size: 1rem; }

.section-eyebrow {
  display: inline-block;
  font-family: 'Unbounded', sans-serif; font-size: 0.7rem;
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent-deep); margin-bottom: 1rem;
}
.section-eyebrow.light { color: rgba(46,204,113,0.8); }
.section-header { margin-bottom: var(--space-xl); }
.section-header.centered { text-align: center; }
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.025em; margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8;
  max-width: 640px;
}
.section-header.centered .section-subtitle { margin: 0 auto; }


.section-featured { padding: var(--space-3xl) 0; background: var(--paper-warm); }
.gallery { display: grid; gap: 2rem; }
.gallery-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-2 { grid-template-columns: repeat(2, 1fr); }


.spotlight {
  background: var(--surface-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.spotlight:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.spotlight-img-wrap {
  position: relative; aspect-ratio: 16/10; overflow: hidden;
}
.spotlight-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.spotlight:hover .spotlight-img-wrap img { transform: scale(1.04); }
.spotlight-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ink); color: var(--paper);
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.04em;
}
.spotlight-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.spotlight-title {
  font-family: 'Unbounded', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
.spotlight-text { color: var(--ink-soft); line-height: 1.75; font-size: 0.9rem; flex: 1; margin-bottom: 1.25rem; }
.spotlight-meta { margin-bottom: 1.25rem; }
.meta-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--ink-muted); font-weight: 500;
}
.meta-tag i { color: var(--accent); }
.spotlight-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-deep); font-weight: 600; font-size: 0.875rem;
  text-decoration: none; transition: gap 0.2s ease;
}
.spotlight-link:hover { gap: 10px; }


.section-deep { padding: var(--space-3xl) 0; }
.section-dark { background: var(--ink); }
.deep-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.deep-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 700; color: var(--paper);
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.25rem;
}
.deep-lead {
  font-size: 1.05rem; color: rgba(245,243,238,0.75);
  line-height: 1.8; margin-bottom: 2.5rem;
}
.deep-points { display: flex; flex-direction: column; gap: 1.75rem; }
.deep-point {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.deep-point-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(46,204,113,0.15); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem;
}
.deep-point strong {
  display: block; color: var(--paper);
  font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem;
}
.deep-point p { color: rgba(245,243,238,0.65); font-size: 0.875rem; line-height: 1.75; }
.deep-visual { position: relative; }
.deep-visual img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl); aspect-ratio: 4/3; object-fit: cover;
}
.deep-pull-quote {
  background: rgba(46,204,113,0.12); border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem; margin-top: 1.5rem;
}
.deep-pull-quote p {
  color: var(--paper); font-size: 1rem; line-height: 1.7;
  font-style: italic; margin-bottom: 0.75rem;
}
.deep-pull-quote cite { color: rgba(245,243,238,0.5); font-size: 0.8rem; font-style: normal; }


.section-scooter { padding: var(--space-3xl) 0; }
.scooter-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.scooter-lead { font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 2rem; }
.shelf { display: grid; gap: 1.5rem; }
.shelf-2 { grid-template-columns: 1fr 1fr; }
.card-surface {
  background: var(--surface-white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,46,0.06);
  transition: box-shadow 0.3s ease;
}
.card-surface:hover { box-shadow: var(--shadow-md); }
.card-surface-tinted { background: var(--paper-warm); }
.card-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 1rem;
}
.accent-bg { background: rgba(46,204,113,0.15); color: var(--accent-deep); }
.warn-bg { background: rgba(255,165,0,0.12); color: #d97706; }
.card-surface h4 {
  font-family: 'Unbounded', sans-serif; font-size: 0.85rem;
  font-weight: 700; color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.01em;
}
.card-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.card-list li {
  font-size: 0.875rem; color: var(--ink-soft); padding-left: 1rem;
  position: relative; line-height: 1.5;
}
.card-list li::before {
  content: ''; position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
}
.scooter-note {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--paper-warm); border-radius: var(--radius-md);
  padding: 1.25rem; margin-top: 1.5rem;
  border: 1px solid var(--paper-deep);
}
.scooter-note i { color: var(--accent-deep); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.scooter-note p { font-size: 0.875rem; color: var(--ink-soft); line-height: 1.7; }
.scooter-img img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover;
}


.section-ev { padding: var(--space-3xl) 0; }
.section-paper { background: var(--paper-warm); }
.ev-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.ev-card {
  background: var(--surface-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}
.ev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.ev-card-header {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 1.75rem; background: var(--ink);
}
.ev-card-header i { color: var(--accent); font-size: 1.25rem; }
.ev-card-header h3 {
  font-family: 'Unbounded', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--paper); letter-spacing: -0.01em;
}
.ev-card-img { aspect-ratio: 16/9; overflow: hidden; }
.ev-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ev-card:hover .ev-card-img img { transform: scale(1.03); }
.ev-card-body { padding: 1.75rem; }
.ev-card-body p { color: var(--ink-soft); line-height: 1.8; font-size: 0.9rem; margin-bottom: 1.25rem; }
.ev-detail {
  background: var(--paper-warm); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; border-left: 3px solid var(--accent);
}
.ev-detail-warn { border-left-color: #d97706; }
.ev-detail-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-muted); margin-bottom: 0.4rem;
}
.ev-detail p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; margin: 0; }


.section-savings { padding: var(--space-3xl) 0; }
.savings-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.savings-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.savings-text p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1.25rem; font-size: 0.95rem; }
.savings-img img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover;
}


.section-cities { padding: var(--space-3xl) 0; background: var(--paper-warm); }
.cities-swiper { padding-bottom: 3rem !important; }
.city-card {
  background: var(--surface-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  transition: all 0.3s ease; height: 100%;
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.city-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.city-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.city-card:hover .city-img-wrap img { transform: scale(1.04); }
.city-body { padding: 1.75rem; }
.city-name {
  font-family: 'Unbounded', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.875rem; letter-spacing: -0.02em;
}
.city-desc { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.25rem; }
.city-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.city-tag {
  display: inline-block; padding: 4px 10px;
  background: var(--paper-warm); border-radius: var(--radius-full);
  font-size: 0.75rem; color: var(--ink-soft); font-weight: 500;
  border: 1px solid var(--paper-deep);
}
.swiper-pagination-bullet { background: var(--ink-muted); opacity: 0.4; }
.swiper-pagination-bullet-active { background: var(--accent); opacity: 1; }
.swiper-button-prev, .swiper-button-next {
  color: var(--ink) !important;
  background: var(--surface-white); width: 44px !important; height: 44px !important;
  border-radius: var(--radius-full); box-shadow: var(--shadow-md);
}
.swiper-button-prev::after, .swiper-button-next::after { font-size: 0.85rem !important; font-weight: 700; }


.section-blog { padding: var(--space-3xl) 0; }
.blog-shelf { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
  background: var(--surface-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,46,0.06);
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block; padding: 3px 10px;
  background: var(--accent-muted); border-radius: var(--radius-full);
  font-size: 0.72rem; font-weight: 700; color: var(--accent-deep);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.875rem;
}
.blog-title {
  font-family: 'Unbounded', sans-serif; font-size: 0.95rem;
  font-weight: 700; color: var(--ink); line-height: 1.4;
  margin-bottom: 0.875rem; letter-spacing: -0.01em;
}
.blog-excerpt { color: var(--ink-soft); font-size: 0.875rem; line-height: 1.75; flex: 1; margin-bottom: 1.25rem; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-deep); font-weight: 600; font-size: 0.875rem;
  background: none; border: none; cursor: pointer; padding: 0;
  transition: gap 0.2s ease;
}
.blog-read-more:hover { gap: 10px; }


.section-cta-band {
  padding: var(--space-xl) 0; background: var(--ink);
}
.cta-band-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
}
.cta-band-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700; color: var(--paper);
  line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 0.75rem;
}
.cta-band-text p { color: rgba(245,243,238,0.65); font-size: 0.9rem; line-height: 1.7; }


.modal-overlay {
  position: fixed; inset: 0; background: rgba(26,26,46,0.7);
  z-index: 300; display: flex; align-items: center; justify-content: center;
  padding: 2rem; opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-panel {
  background: var(--surface-white); border-radius: var(--radius-xl);
  max-width: 720px; width: 100%; max-height: 85vh; overflow-y: auto;
  padding: 2.5rem; position: relative; box-shadow: var(--shadow-xl);
  transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-overlay.open .modal-panel { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px; background: var(--paper-warm);
  border: none; border-radius: var(--radius-full);
  cursor: pointer; font-size: 1rem; color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--paper-deep); }
.modal-content h2 {
  font-family: 'Unbounded', sans-serif; font-size: 1.3rem;
  font-weight: 700; color: var(--ink); line-height: 1.3;
  margin: 0.75rem 0 1.25rem; letter-spacing: -0.02em;
}
.modal-content p { color: var(--ink-soft); line-height: 1.8; margin-bottom: 1rem; font-size: 0.95rem; }


.site-footer { background: var(--ink); padding: var(--space-2xl) 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: var(--space-xl); }
.footer-tagline { color: rgba(245,243,238,0.5); font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-address {
  font-style: normal; color: rgba(245,243,238,0.5); font-size: 0.85rem; line-height: 1.8;
}
.footer-address a { color: rgba(245,243,238,0.65); text-decoration: none; transition: color 0.2s; }
.footer-address a:hover { color: var(--accent); }
.footer-nav-title {
  font-family: 'Unbounded', sans-serif; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,243,238,0.4); margin-bottom: 1.25rem;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-nav-list a {
  color: rgba(245,243,238,0.6); text-decoration: none;
  font-size: 0.9rem; transition: color 0.2s ease;
}
.footer-nav-list a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(245,243,238,0.08);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { color: rgba(245,243,238,0.35); font-size: 0.8rem; }
.footer-domain { color: rgba(245,243,238,0.2) !important; font-family: 'Unbounded', sans-serif; font-size: 0.7rem !important; }


.page-hero { padding: var(--space-3xl) 0 var(--space-xl); }
.page-hero-accent { background: var(--paper-warm); }
.page-hero-inner { max-width: 800px; }
.page-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.page-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-soft); line-height: 1.8; max-width: 640px;
}


.section-about { padding: 0 0 var(--space-3xl); }
.about-layout { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: start; }
.about-main { max-width: 680px; }
.about-h2 {
  font-family: 'Unbounded', sans-serif; font-size: 1.4rem;
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
  margin: 2.5rem 0 1rem;
}
.about-main p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 1.25rem; font-size: 0.95rem; }
.sidebar-card {
  background: var(--surface-white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,26,46,0.06); margin-bottom: 1.5rem;
}
.sidebar-card-tinted { background: var(--paper-warm); }
.sidebar-card h4 {
  font-family: 'Unbounded', sans-serif; font-size: 0.9rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.875rem; letter-spacing: -0.01em;
}
.sidebar-card p { color: var(--ink-soft); font-size: 0.875rem; line-height: 1.7; }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.sidebar-list li { font-size: 0.875rem; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 0.625rem; }
.sidebar-list .accent { color: var(--accent); font-size: 0.8rem; margin-top: 2px; }


.section-local { padding: 0 0 var(--space-3xl); }
.local-intro { margin-bottom: 3rem; }
.local-intro-text h2 {
  font-family: 'Unbounded', sans-serif; font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.local-intro-text p { color: var(--ink-soft); line-height: 1.8; font-size: 0.95rem; }
.local-cards { margin-bottom: 3rem; }
.local-card { display: flex; flex-direction: column; gap: 1rem; }
.local-card-icon {
  width: 48px; height: 48px; background: var(--accent-muted);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; color: var(--accent-deep); font-size: 1.25rem;
}
.local-card h3 {
  font-family: 'Unbounded', sans-serif; font-size: 1.05rem;
  font-weight: 700; color: var(--ink); letter-spacing: -0.01em;
}
.local-card p { color: var(--ink-soft); line-height: 1.8; font-size: 0.9rem; }
.local-checklist { margin-top: 1rem; }
.local-checklist h4 {
  font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 0.75rem;
}
.local-checklist ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.local-checklist li {
  font-size: 0.85rem; color: var(--ink-soft); padding-left: 1.25rem;
  position: relative; line-height: 1.5;
}
.local-checklist li::before {
  content: '→'; position: absolute; left: 0; color: var(--accent-deep); font-size: 0.75rem;
}
.local-section-divider { padding: 2.5rem 0 2rem; }
.local-section-divider h2 {
  font-family: 'Unbounded', sans-serif; font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em;
}
.check-cards { margin-bottom: 2.5rem; }
.check-card {
  background: var(--surface-white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,46,0.06); transition: box-shadow 0.3s;
}
.check-card:hover { box-shadow: var(--shadow-md); }
.check-card-num {
  font-family: 'Unbounded', sans-serif; font-size: 2rem;
  font-weight: 700; color: var(--accent-muted); margin-bottom: 0.875rem;
  line-height: 1;
}
.check-card h3 {
  font-family: 'Unbounded', sans-serif; font-size: 0.95rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.875rem; letter-spacing: -0.01em;
}
.check-card p { color: var(--ink-soft); font-size: 0.875rem; line-height: 1.8; }
.local-note-box {
  display: flex; gap: 1.5rem; align-items: flex-start;
  background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.2);
  border-radius: var(--radius-lg); padding: 1.75rem;
}
.local-note-icon { color: var(--accent-deep); font-size: 1.5rem; flex-shrink: 0; }
.local-note-box h4 {
  font-family: 'Unbounded', sans-serif; font-size: 0.9rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.5rem;
}
.local-note-box p { color: var(--ink-soft); font-size: 0.875rem; line-height: 1.75; }


.section-beginners { padding: 0 0 var(--space-3xl); }
.beginners-intro { margin-bottom: 3rem; }
.beginners-lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-soft); line-height: 1.85;
  border-left: 3px solid var(--accent); padding-left: 1.5rem; max-width: 760px;
}
.beginners-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 4rem; }
.step-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; padding: 2.5rem 0;
  border-bottom: 1px solid var(--paper-deep);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  font-family: 'Unbounded', sans-serif; font-size: 3rem;
  font-weight: 700; color: var(--paper-deep); line-height: 1;
  padding-top: 0.25rem;
}
.step-content h3 {
  font-family: 'Unbounded', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--ink); margin-bottom: 1rem; letter-spacing: -0.01em;
}
.step-content p { color: var(--ink-soft); line-height: 1.8; font-size: 0.9rem; margin-bottom: 0.875rem; }
.beginners-faq { padding-top: 2rem; }
.beginners-faq h2 {
  font-family: 'Unbounded', sans-serif; font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 2rem;
}
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.faq-item {
  background: var(--surface-white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,46,0.06);
}
.faq-item h4 {
  font-family: 'Unbounded', sans-serif; font-size: 0.85rem;
  font-weight: 700; color: var(--ink); margin-bottom: 0.875rem; line-height: 1.4;
}
.faq-item p { color: var(--ink-soft); font-size: 0.875rem; line-height: 1.75; }


.section-contact { padding: 0 0 var(--space-3xl); }
.contact-layout { display: grid; grid-template-columns: 1fr 400px; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.contact-form-header { margin-bottom: 2rem; }
.contact-form-header h2 {
  font-family: 'Unbounded', sans-serif; font-size: 1.4rem;
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.contact-form-header p { color: var(--ink-soft); font-size: 0.9rem; line-height: 1.7; }
.accordion-form { display: flex; flex-direction: column; gap: 0; }
.accordion-section {
  border: 1px solid rgba(26,26,46,0.1); border-radius: var(--radius-md);
  overflow: hidden; margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; background: var(--surface-white);
  border: none; cursor: pointer; text-align: left;
  transition: background 0.2s ease;
}
.accordion-trigger:hover { background: var(--paper-warm); }
.accordion-trigger.active { background: var(--ink); }
.acc-trigger-left { display: flex; align-items: center; gap: 1rem; }
.acc-num {
  font-family: 'Unbounded', sans-serif; font-size: 0.75rem;
  font-weight: 700; color: var(--accent); letter-spacing: 0.05em;
}
.accordion-trigger.active .acc-num { color: var(--accent); }
.acc-label {
  font-weight: 600; font-size: 0.95rem; color: var(--ink);
}
.accordion-trigger.active .acc-label { color: var(--paper); }
.acc-icon {
  color: var(--ink-muted); font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.accordion-trigger.active .acc-icon { transform: rotate(180deg); color: rgba(245,243,238,0.5); }
.accordion-body { padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-body.open { max-height: 600px; padding: 1.5rem; background: var(--paper-warm); }
.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem;
}
.req { color: var(--accent-deep); }
.form-group input, .form-group textarea {
  width: 100%; padding: 0.875rem 1rem;
  background: var(--surface-white); border: 1.5px solid rgba(26,26,46,0.15);
  border-radius: var(--radius-md); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; color: var(--ink);
  transition: all 0.25s ease; outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46,204,113,0.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group-checkbox { display: flex; align-items: flex-start; gap: 0; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.875rem; cursor: pointer; }
.checkbox-label input[type="checkbox"] { display: none; }
.checkbox-custom {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
  border: 2px solid rgba(26,26,46,0.2); border-radius: 4px;
  background: var(--surface-white); transition: all 0.2s ease;
  position: relative;
}
.checkbox-label input:checked + .checkbox-custom {
  background: var(--accent); border-color: var(--accent);
}
.checkbox-label input:checked + .checkbox-custom::after {
  content: ''; position: absolute; left: 4px; top: 1px;
  width: 8px; height: 12px; border: 2px solid var(--ink);
  border-top: none; border-left: none; transform: rotate(45deg);
}
.checkbox-label span:last-child { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }
.checkbox-label a { color: var(--accent-deep); }
.form-submit-wrap { margin-top: 1.5rem; }
.form-submit-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; background: var(--accent);
  color: var(--ink); font-weight: 700; font-size: 0.9rem;
  border-radius: var(--radius-full); border: none; cursor: pointer;
  transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(46,204,113,0.3);
}
.form-submit-btn:hover {
  background: var(--accent-deep); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(46,204,113,0.4);
}
.contact-info-card {
  background: var(--surface-white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-md);
  border: 1px solid rgba(26,26,46,0.06); margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  font-family: 'Unbounded', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--ink); margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.contact-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--paper-deep);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item i {
  width: 36px; height: 36px; background: var(--accent-muted);
  border-radius: var(--radius-md); display: flex; align-items: center;
  justify-content: center; color: var(--accent-deep); flex-shrink: 0;
  font-size: 0.9rem;
}
.contact-info-item strong { display: block; font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 0.25rem; }
.contact-info-item a { color: var(--ink-soft); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.contact-info-item a:hover { color: var(--accent-deep); }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.contact-faq { padding-top: 2rem; }
.contact-faq h2 {
  font-family: 'Unbounded', sans-serif; font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.02em; margin-bottom: 2rem;
}
.contact-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.contact-faq-item {
  background: var(--surface-white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(26,26,46,0.06);
}
.contact-faq-item h4 {
  font-size: 0.9rem; font-weight: 700; color: var(--ink);
  margin-bottom: 0.875rem; display: flex; align-items: flex-start; gap: 0.625rem; line-height: 1.4;
}
.contact-faq-item h4 i { color: var(--accent-deep); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.contact-faq-item p { color: var(--ink-soft); font-size: 0.875rem; line-height: 1.75; }
.contact-faq-item a { color: var(--accent-deep); }


.legal-header { padding: var(--space-xl) 0 var(--space-lg); border-bottom: 1px solid var(--paper-deep); }
.legal-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 0.5rem;
}
.legal-date { color: var(--ink-muted); font-size: 0.875rem; }
.legal-layout { padding: var(--space-xl) 0 var(--space-3xl); }
.legal-two-col { display: grid; grid-template-columns: 240px 1fr; gap: 4rem; align-items: start; }
.legal-sidebar { position: sticky; top: 96px; }
.legal-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.legal-nav-link {
  display: block; padding: 0.625rem 0.875rem;
  color: var(--ink-muted); font-size: 0.85rem; text-decoration: none;
  border-radius: var(--radius-sm); border-left: 2px solid transparent;
  transition: all 0.2s ease;
}
.legal-nav-link:hover { color: var(--ink); background: var(--paper-warm); border-left-color: var(--accent); }
.legal-body section {
  margin-bottom: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid var(--paper-deep);
}
.legal-body section:last-child { border-bottom: none; }
.legal-body h2 {
  font-family: 'Unbounded', sans-serif; font-size: 1.1rem;
  font-weight: 700; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 1.25rem;
}
.legal-body p { color: var(--ink-soft); line-height: 1.85; margin-bottom: 1rem; font-size: 0.9rem; }
.legal-body p:last-child { margin-bottom: 0; }


.cookie-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 320px; background: var(--ink);
  z-index: 500; transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(26,26,46,0.3);
}
.cookie-panel.open { transform: translateX(0); }
.cookie-overlay {
  position: fixed; inset: 0; background: rgba(26,26,46,0.5);
  z-index: 499; opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease; backdrop-filter: blur(3px);
}
.cookie-overlay.open { opacity: 1; pointer-events: all; }
.cookie-panel-inner { padding: 2rem; display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
.cookie-header { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.75rem; }
.cookie-shield { width: 40px; height: 40px; background: rgba(46,204,113,0.15); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 1.1rem; flex-shrink: 0; }
.cookie-header-text h3 { font-family: 'Unbounded', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--paper); letter-spacing: -0.01em; }
.cookie-header-text p { font-size: 0.75rem; color: rgba(245,243,238,0.5); margin-top: 2px; }
.cookie-desc { font-size: 0.82rem; color: rgba(245,243,238,0.6); line-height: 1.7; margin-bottom: 1.75rem; }
.cookie-desc a { color: var(--accent); text-decoration: none; }
.cookie-categories { display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.cookie-cat { background: rgba(245,243,238,0.06); border-radius: var(--radius-md); padding: 1rem; }
.cookie-cat-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.375rem; }
.cookie-cat-name { font-size: 0.85rem; font-weight: 600; color: var(--paper); }
.cookie-cat-desc { font-size: 0.75rem; color: rgba(245,243,238,0.45); line-height: 1.5; }
.cookie-toggle { position: relative; width: 40px; height: 22px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-track {
  position: absolute; inset: 0; background: rgba(245,243,238,0.15);
  border-radius: var(--radius-full); cursor: pointer; transition: background 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-track { background: var(--accent); }
.cookie-toggle-thumb {
  position: absolute; left: 3px; top: 3px;
  width: 16px; height: 16px; background: white;
  border-radius: 50%; transition: transform 0.3s ease;
  pointer-events: none;
}
.cookie-toggle input:checked ~ .cookie-toggle-thumb { transform: translateX(18px); }
.cookie-toggle-disabled { opacity: 0.5; cursor: not-allowed; }
.cookie-actions { padding-top: 1.5rem; border-top: 1px solid rgba(245,243,238,0.1); margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cookie-btn-accept {
  width: 100%; padding: 12px; background: var(--accent);
  color: var(--ink); font-weight: 700; font-size: 0.875rem;
  border: none; border-radius: var(--radius-full); cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-btn-accept:hover { background: var(--accent-deep); }
.cookie-btn-reject {
  width: 100%; padding: 12px; background: transparent;
  color: rgba(245,243,238,0.5); font-size: 0.875rem; font-weight: 500;
  border: 1px solid rgba(245,243,238,0.15); border-radius: var(--radius-full);
  cursor: pointer; transition: all 0.2s ease;
}
.cookie-btn-reject:hover { border-color: rgba(245,243,238,0.35); color: rgba(245,243,238,0.8); }


@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-3 { grid-template-columns: repeat(2, 1fr); }
  .blog-shelf { grid-template-columns: repeat(2, 1fr); }
  .stage-headline-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .stage-headline { font-size: clamp(2.5rem, 6vw, 4.5rem); }
  .stage-desc { max-width: 100%; }
}

@media (max-width: 1024px) {
  .nav-tabs { display: none; }
  .nav-hamburger { display: flex; }
  .intro-layout { grid-template-columns: 1fr; gap: 1.5rem; }
  .intro-text-cols { grid-template-columns: 1fr; }
  .deep-layout { grid-template-columns: 1fr; gap: 3rem; }
  .scooter-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .ev-compare { grid-template-columns: 1fr; }
  .savings-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .legal-two-col { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .shelf-2 { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-faq-grid { grid-template-columns: 1fr; }
  .gallery-2 { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container-wide { padding: 0 1.25rem; }
  .nav-inner { padding: 0 1.25rem; }
  .stage-content { padding: 3rem 1.25rem 3rem; }
  .gallery-3 { grid-template-columns: 1fr; }
  .blog-shelf { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band-inner { flex-direction: column; }
  .step-item { grid-template-columns: 60px 1fr; gap: 1.25rem; }
  .step-num { font-size: 2rem; }
  .cookie-panel { width: 100%; }
}

@media (max-width: 480px) {
  .stage-ctas { flex-direction: column; }
  .stage-ctas .cta-primary, .stage-ctas .cta-ghost { width: 100%; justify-content: center; }
  .stage-tags { gap: 0.5rem; }
  .stage-tag { font-size: 0.75rem; padding: 5px 10px; }
  .section-title { font-size: 1.4rem; }
  .page-title { font-size: 1.8rem; }
}