/* ============================================================
   GSASTER MX — Financial Education Workshop
   Design: Quiet Sophistication
   ============================================================ */


:root {
  --color-ink:        #1c1a2e;
  --color-ink-soft:   #3d3a54;
  --color-ink-muted:  #6b6882;
  --color-canvas:     #f7f6f2;
  --color-surface:    #ffffff;
  --color-surface-2:  #f0eee8;
  --color-surface-3:  #e8e5de;
  --color-primary:    #4a3f7a;
  --color-primary-lt: #6b5fa0;
  --color-secondary:  #b87d5b;
  --color-accent:     #d4a574;
  --color-accent-lt:  #e8c9a8;
  --color-line:       rgba(74,63,122,0.12);
  --color-line-soft:  rgba(74,63,122,0.06);

  --shadow-xs:  0 1px 3px rgba(28,26,46,0.06), 0 1px 2px rgba(28,26,46,0.04);
  --shadow-sm:  0 2px 8px rgba(28,26,46,0.07), 0 1px 3px rgba(28,26,46,0.05);
  --shadow-md:  0 4px 16px rgba(28,26,46,0.09), 0 2px 6px rgba(28,26,46,0.06);
  --shadow-lg:  0 8px 32px rgba(28,26,46,0.11), 0 3px 10px rgba(28,26,46,0.07);
  --shadow-xl:  0 16px 48px rgba(28,26,46,0.14), 0 6px 18px rgba(28,26,46,0.08);
  --shadow-primary: 0 8px 32px rgba(74,63,122,0.22), 0 2px 8px rgba(74,63,122,0.12);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  96px;
  --space-10: 128px;

  --nav-h: 72px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lexend', sans-serif;
  font-weight: 400;
  color: var(--color-ink-soft);
  background: var(--color-canvas);
  line-height: 1.7;
  overflow-x: hidden;
}


a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary-lt); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
p { margin: 0; }
h1,h2,h3,h4,h5,h6 { font-family: 'Lexend', sans-serif; color: var(--color-ink); font-weight: 600; line-height: 1.25; }


.t-display {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.t-h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.t-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.t-h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}
.t-h4 {
  font-size: 1.05rem;
  font-weight: 600;
}
.t-lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-ink-muted);
}
.t-body { font-size: 0.97rem; line-height: 1.75; }
.t-small { font-size: 0.85rem; color: var(--color-ink-muted); }
.t-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
}


.canvas { min-height: 100vh; display: flex; flex-direction: column; }
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--wide { max-width: 1360px; }
.container--narrow { max-width: 780px; }


.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav-wrap.nav--solid {
  background: rgba(247,246,242,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-line), var(--shadow-sm);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-ink);
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-ink-soft);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--color-primary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: var(--space-4);
}
.lang-btn {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-ink-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}
.lang-btn:hover { color: var(--color-primary); background: var(--color-line-soft); }
.lang-btn.active {
  color: var(--color-primary);
  background: rgba(74,63,122,0.1);
}
.lang-divider { color: var(--color-line); font-size: 0.9rem; }


.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 1100;
  position: relative;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.nav-hamburger:hover { background: var(--color-line-soft); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  overflow: hidden;
}
.drawer-circle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-ink);
  transform: scale(0);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}
.drawer.is-open { pointer-events: all; }
.drawer.is-open .drawer-circle { transform: scale(250); }
.drawer-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-5);
  opacity: 0;
  transition: opacity 0.25s ease 0.3s;
}
.drawer.is-open .drawer-content { opacity: 1; }
.drawer-content a {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color var(--transition);
}
.drawer-content a:hover { color: var(--color-accent); }
.drawer-content .lang-switcher { margin-top: var(--space-4); }
.drawer-content .lang-btn { color: rgba(255,255,255,0.6); }
.drawer-content .lang-btn.active { color: #fff; background: rgba(255,255,255,0.15); }
.drawer-content .lang-btn:hover { color: var(--color-accent); background: rgba(255,255,255,0.1); }
.drawer-content .lang-divider { color: rgba(255,255,255,0.25); }
.drawer-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}
.drawer-close:hover { color: #fff; background: rgba(255,255,255,0.1); }


.breadcrumb-bar {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-surface);
  margin-top: var(--nav-h);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: var(--color-ink-muted);
}
.breadcrumb a { color: var(--color-ink-muted); }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb i { font-size: 0.65rem; color: var(--color-line); }
.breadcrumb .bc-current { color: var(--color-ink-soft); font-weight: 500; }


.stage {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--color-ink);
}
.stage-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c1a2e 0%, #2a2448 50%, #1c1a2e 100%);
}
.stage-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.22;
  mix-blend-mode: luminosity;
}
.stage-curtain {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,26,46,0.95) 40%, rgba(28,26,46,0.4) 100%);
}


.stage-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.shape--1 {
  width: 480px; height: 480px;
  background: var(--color-primary);
  top: -120px; right: -80px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.shape--2 {
  width: 280px; height: 280px;
  background: var(--color-secondary);
  bottom: -60px; right: 25%;
  opacity: 0.09;
}
.shape--3 {
  width: 160px; height: 160px;
  background: var(--color-accent);
  top: 30%; left: 55%;
  opacity: 0.06;
}
.shape--circle-outline {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.shape--c1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.shape--c2 { width: 300px; height: 300px; bottom: 10%; right: 10%; }

.stage-content {
  position: relative;
  z-index: 2;
  padding: var(--space-10) 0;
}
.stage-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(212,165,116,0.15);
  border: 1px solid rgba(212,165,116,0.3);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-5);
}
.stage-label span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-accent); }
.stage-title { color: #fff; margin-bottom: var(--space-5); }
.stage-title em { font-style: normal; color: var(--color-accent); }
.stage-lead { max-width: 540px; margin-bottom: var(--space-7); color: rgba(255,255,255,0.7); }
.stage-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }
.stage-disclaimer {
  margin-top: var(--space-6);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.4);
  max-width: 480px;
  line-height: 1.5;
}


.stage-cards-overlap {
  position: relative;
  z-index: 10;
  margin-top: -70px;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Lexend', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn--primary:hover {
  background: var(--color-primary-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(74,63,122,0.3), 0 4px 12px rgba(74,63,122,0.15);
}
.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: #fff;
  transform: translateY(-2px);
}
.btn--secondary {
  background: var(--color-secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,125,91,0.25);
}
.btn--secondary:hover {
  background: #c98a66;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,125,91,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn--sm { padding: 9px 20px; font-size: 0.82rem; }


.section {
  padding: var(--space-10) 0;
  position: relative;
}
.section--tight { padding: var(--space-8) 0; }
.section--flush-top { padding-top: 0; }
.section--light { background: var(--color-surface); }
.section--canvas { background: var(--color-canvas); }
.section--tinted { background: var(--color-surface-2); }
.section--dark {
  background: var(--color-ink);
  color: rgba(255,255,255,0.8);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.section-header { margin-bottom: var(--space-8); }
.section-header--center { text-align: center; }
.section-header .t-label { display: block; margin-bottom: var(--space-3); }
.section-header .t-h2 { margin-bottom: var(--space-4); }
.section-header .t-lead { max-width: 580px; }
.section-header--center .t-lead { margin-inline: auto; }


.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-line);
  overflow: hidden;
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(74,63,122,0.15);
}
.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.card-body { padding: var(--space-6); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}
.card-icon--primary { background: rgba(74,63,122,0.1); color: var(--color-primary); }
.card-icon--secondary { background: rgba(184,125,91,0.1); color: var(--color-secondary); }
.card-icon--accent { background: rgba(212,165,116,0.12); color: #b87340; }


.spotlight {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-lt) 100%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-primary);
}
.spotlight h2, .spotlight h3, .spotlight h4 { color: #fff; }
.spotlight .t-lead, .spotlight p { color: rgba(255,255,255,0.8); }
.spotlight .card-icon { background: rgba(255,255,255,0.15); color: #fff; }


.gallery { display: grid; gap: var(--space-5); }
.gallery--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.gallery--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.gallery--4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }


.shelf {
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.shelf-item { flex: 1 1 260px; }


.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.feature-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-7) var(--space-6);
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
  transition: background var(--transition);
}
.feature-item:hover { background: var(--color-surface-2); }
.feature-item:nth-child(2n) { border-right: none; }
.feature-item:nth-last-child(-n+2) { border-bottom: none; }
.feature-text h4 { margin-bottom: var(--space-2); }
.feature-text p { font-size: 0.9rem; color: var(--color-ink-muted); line-height: 1.65; }


.section--gradient {
  background: linear-gradient(135deg, #2a2448 0%, #4a3f7a 35%, #7a5f8a 65%, #b87d5b 100%);
  color: rgba(255,255,255,0.85);
}
.section--gradient h1, .section--gradient h2, .section--gradient h3 { color: #fff; }
.section--gradient .t-lead { color: rgba(255,255,255,0.75); }
.section--gradient .t-label { color: var(--color-accent-lt); }


.overlap-zone { position: relative; }
.overlap-card {
  position: relative;
  z-index: 5;
  margin-top: -80px;
  margin-bottom: -80px;
}


.img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-frame--decorated::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(74,63,122,0.18);
  border-radius: calc(var(--radius-lg) + 12px);
  z-index: -1;
}
.img-frame--decorated::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  background: var(--color-accent);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.5;
}


.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }


.topic-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  padding: var(--space-7) var(--space-6);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--color-primary);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(74,63,122,0.2);
}
.topic-card:hover::before { transform: scaleY(1); }
.topic-card .card-icon { margin-bottom: var(--space-4); }
.topic-card h3 { margin-bottom: var(--space-3); }
.topic-card p { font-size: 0.9rem; color: var(--color-ink-muted); line-height: 1.65; }


.resource-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
  align-items: flex-start;
}
.resource-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(74,63,122,0.18);
  transform: translateX(4px);
}
.resource-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(74,63,122,0.08);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.resource-meta { flex: 1; }
.resource-meta h4 { font-size: 0.95rem; margin-bottom: var(--space-1); }
.resource-meta p { font-size: 0.83rem; color: var(--color-ink-muted); line-height: 1.5; }
.resource-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(74,63,122,0.1);
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}


.team-card {
  text-align: center;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--space-4);
  border: 3px solid var(--color-surface-3);
  box-shadow: var(--shadow-md);
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin-bottom: var(--space-1); }
.team-card .role {
  font-size: 0.82rem;
  color: var(--color-secondary);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: var(--space-4);
}
.team-card p { font-size: 0.88rem; color: var(--color-ink-muted); line-height: 1.65; }


.form-wrap {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-line);
}
.form-group { margin-bottom: var(--space-5); }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink-soft);
  margin-bottom: var(--space-2);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--color-surface-3);
  border-radius: var(--radius-sm);
  background: var(--color-canvas);
  color: var(--color-ink);
  font-size: 0.93rem;
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(74,63,122,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6882' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--color-ink-muted);
  line-height: 1.5;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.form-checkbox a { color: var(--color-primary); text-decoration: underline; }
.form-submit { margin-top: var(--space-6); }
.form-submit .btn { width: 100%; justify-content: center; }


.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-line);
}
.map-frame iframe { display: block; width: 100%; height: 380px; border: none; }


.contact-block {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}
.contact-block:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-block-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(74,63,122,0.08);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-block-text p:first-child { font-size: 0.78rem; font-weight: 600; color: var(--color-ink-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-block-text p:last-child { font-size: 0.93rem; color: var(--color-ink-soft); }


.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.6);
  padding: var(--space-10) 0 var(--space-5);
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: var(--space-4); max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: var(--space-3); }
.footer-logo img { height: 32px; filter: brightness(0) invert(1) opacity(0.9); }
.footer-logo-text { font-size: 1rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.footer-col h5 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-4);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--space-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }
.footer-disclaimer {
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}


.cookie-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28,26,46,0.65);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-5);
  opacity: 0;
  transition: opacity var(--transition-slow);
}
.cookie-backdrop.is-visible { opacity: 1; }
.cookie-modal {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-line);
  max-width: 520px;
  width: 100%;
  padding: var(--space-7);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-slow);
}
.cookie-backdrop.is-visible .cookie-modal { transform: none; max-height: 90%; overflow-y: auto; }
.cookie-modal-header { display: flex; align-items: flex-start; gap: var(--space-4); margin-bottom: var(--space-5); }
.cookie-modal-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: rgba(74,63,122,0.1);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.cookie-modal-header h3 { margin-bottom: var(--space-1); }
.cookie-modal-header p { font-size: 0.85rem; color: var(--color-ink-muted); }
.cookie-categories { display: flex; flex-direction: column; gap: var(--space-3); margin-bottom: var(--space-6); }
.cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-4);
  background: var(--color-canvas);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  gap: var(--space-4);
}
.cookie-cat-info h5 { font-size: 0.88rem; margin-bottom: 2px; }
.cookie-cat-info p { font-size: 0.78rem; color: var(--color-ink-muted); }
.cookie-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; position: absolute; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--color-surface-3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform var(--transition);
  box-shadow: var(--shadow-xs);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--color-primary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.6; cursor: not-allowed; }
.cookie-required-badge { font-size: 0.7rem; font-weight: 600; color: var(--color-ink-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.cookie-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.cookie-actions .btn { flex: 1; justify-content: center; min-width: 120px; }


.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--space-9) var(--space-5);
}
.legal-content h1 { margin-bottom: var(--space-3); }
.legal-content .legal-meta { font-size: 0.82rem; color: var(--color-ink-muted); margin-bottom: var(--space-8); }
.legal-section { margin-bottom: var(--space-7); }
.legal-section h2 { font-size: 1.15rem; margin-bottom: var(--space-3); color: var(--color-ink); }
.legal-section p { font-size: 0.92rem; line-height: 1.8; color: var(--color-ink-soft); margin-bottom: var(--space-3); }
.legal-section p:last-child { margin-bottom: 0; }


.thanks-stage {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-10) var(--space-5);
}
.thanks-content { max-width: 560px; }
.thanks-icon {
  width: 80px; height: 80px;
  background: rgba(74,63,122,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  margin: 0 auto var(--space-6);
}
.countdown-display {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: var(--color-ink-muted);
  margin-top: var(--space-5);
}
.countdown-num {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.1rem;
  min-width: 22px;
  display: inline-block;
  text-align: center;
}


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


.highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-2);
  box-shadow: var(--shadow-sm);
}
.highlight-pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-secondary);
  flex-shrink: 0;
}
.highlight-pill span { font-size: 0.82rem; font-weight: 500; color: var(--color-ink-soft); }


.divider { height: 1px; background: var(--color-line); margin: var(--space-8) 0; }


.page-hero {
  background: var(--color-ink);
  padding: calc(var(--nav-h) + var(--space-8)) 0 var(--space-10);
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1c1a2e 0%, #2a2448 60%, #3a3060 100%);
}
.page-hero-shapes { position: absolute; inset: 0; pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; margin-bottom: var(--space-4); }
.page-hero .t-lead { color: rgba(255,255,255,0.65); }


[data-tilt] { transform-style: preserve-3d; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .split { grid-template-columns: 1fr; gap: var(--space-7); }
  .split--reverse { direction: ltr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
  .feature-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-line); }
  .feature-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; }
  .lang-switcher { display: none; }
  .nav-hamburger { display: flex; }
  .gallery--2,
  .gallery--3,
  .gallery--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .section { padding: var(--space-8) 0; }
  .form-wrap { padding: var(--space-6); }
  .stage-cards-overlap { margin-top: var(--space-6); }
  .overlap-card { margin-top: 0; margin-bottom: 0; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .btn { flex: auto; }
}

@media (max-width: 480px) {
  .stage-actions { flex-direction: column; }
  .stage-actions .btn { width: 100%; justify-content: center; }
  .cookie-modal { padding: var(--space-5); }
  .feature-grid { border-radius: var(--radius-md); }
  .feature-item { flex-direction: column; gap: var(--space-3); }
}


.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-7 { margin-top: var(--space-7); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-7 { margin-bottom: var(--space-7); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }