:root {
  --navy:    #0f1535;
  --navy2:   #141a3d;
  --navy3:   #1b2150;
  --blue:    #1e2d6b;
  --teal:    #00c2cb;
  --teal2:   #009fa8;
  --pink:    #f5568a;
  --pink2:   #d93d70;
  --purple:  #7c4dff;
  --yellow:  #ffd166;
  --text:    #e8ecff;
  --muted:   #7b88c4;
  --border:  rgba(255,255,255,0.06);
  --border2: rgba(255,255,255,0.12);
  --header-h: 68px;
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 8px 40px rgba(0,0,0,.5);
}

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

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(15,21,53,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  z-index: 900;
}

.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.logo-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5568a, #7c4dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 20px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-links a.active { font-weight: 700; }

.nav-cta { flex-shrink: 0; }

.burger {
  display: none;
  width: 40px; height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(15,21,53,0.97);
  backdrop-filter: blur(18px);
  z-index: 800;
  padding: 1.25rem 1.5rem;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}

.mobile-overlay.open { display: block; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.mobile-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}

.mobile-cta-wrap {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

main { padding-top: var(--header-h); }

.btn-primary,
.btn-outline,
.btn-ghost,
.btn-teal,
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.85rem;
  border-radius: 30px;
  border: 2px solid transparent;
  font-size: 0.875rem;
  font-weight: 800;
  font-family: system-ui, sans-serif;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: opacity 0.2s, transform 0.15s, background 0.2s;
  min-height: 44px;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(90deg, #f5568a, #ff8c42);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(245,86,138,.35);
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border2);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--teal);
  color: #0a2a2e;
  border-color: var(--teal);
  font-weight: 800;
}

.btn-teal:hover {
  background: var(--teal2);
  border-color: var(--teal2);
  color: #0a2a2e;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: var(--border2);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  color: #ffffff;
}

.btn-pill {
  background: linear-gradient(90deg, #f5568a, #ff8c42);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(245,86,138,.3);
}

.btn-pill:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #ffffff;
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 80px) 1.5rem 0;
  text-align: center;
}

.hero-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    #0a1355 0%,
    #0d1b6e 20%,
    #1a2fa0 38%,
    #1a7abf 55%,
    #0f1535 100%
  );
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-star {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 0.1; }
}

.hero-moon {
  position: absolute;
  top: 10%; right: 20%;
  width: 65px; height: 65px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fffde0, #f0e68c);
  box-shadow: 0 0 40px rgba(255,250,160,.4), 0 0 80px rgba(255,250,160,.15);
  animation: moonFloat 6s ease-in-out infinite;
  z-index: 2;
}

@keyframes moonFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  pointer-events: none;
  z-index: 2;
}

.hero-mountain {
  position: absolute;
  bottom: 0;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.hm1 { width: 400px; height: 270px; left: -50px; background: linear-gradient(160deg, #162878, #0d1e5c); }
.hm2 { width: 310px; height: 210px; left: 70px;  background: linear-gradient(160deg, #1a3390, #0f2065); }
.hm3 { width: 440px; height: 310px; right: -40px; background: linear-gradient(160deg, #162878, #0d1e5c); }
.hm4 { width: 290px; height: 230px; right: 70px;  background: linear-gradient(160deg, #1d3a9e, #112270); }

.hm1::after, .hm2::after, .hm3::after, .hm4::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 55px; height: 45px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: rgba(255,255,255,.5);
}

.hero-water {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 20%;
  background: linear-gradient(180deg, #1a9fd8 0%, #0d6fa8 45%, #0a5480 100%);
  opacity: 0.8;
  z-index: 1;
}

.hero-water::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: rgba(255,255,255,0.1);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  animation: heroUp 0.9s 0.3s ease both;
}

@keyframes heroUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0,194,203,0.1);
  border: 1px solid rgba(0,194,203,0.3);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  font-family: system-ui, sans-serif;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 30px rgba(0,0,0,.5);
}

.hero-title span { color: var(--teal); }

.hero-sub {
  color: rgba(220,230,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2rem;
  font-family: system-ui, sans-serif;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.stats-strip {
  background: var(--navy2);
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-family: system-ui, sans-serif;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: system-ui, sans-serif;
}

.section-dark { padding: 5rem 0; background: var(--navy2); }
.section-navy { padding: 5rem 0; background: var(--navy); }

.section-head { text-align: center; margin-bottom: 3.5rem; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
  font-family: system-ui, sans-serif;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--text);
  margin-bottom: 0.75rem;
}

.section-title span { color: var(--teal); }

.section-lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
  font-family: system-ui, sans-serif;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

.card-d {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.card-d:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.14); }

.card-d::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
  opacity: 0;
  transition: opacity 0.3s;
}

.card-d:hover::before { opacity: 1; }

.card-illus {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.card-d h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: system-ui, sans-serif;
}

.card-d p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  font-family: system-ui, sans-serif;
}

.feat-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 960px;
  margin: 0 auto 5rem;
}

.feat-row:last-child { margin-bottom: 0; }
.feat-row.rev { flex-direction: row-reverse; }

.feat-illus {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  background: radial-gradient(circle, rgba(124,77,255,.12) 0%, transparent 70%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feat-illus img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.feat-text { flex: 1; }

.feat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink), #ff8c42);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 1rem;
}

.feat-icon.teal-g { background: linear-gradient(135deg, var(--teal), var(--purple)); }
.feat-icon.gold-g { background: linear-gradient(135deg, var(--yellow), var(--pink)); }

.feat-text h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  color: var(--text);
  margin-bottom: 0.9rem;
}

.feat-text p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  font-family: system-ui, sans-serif;
}

.feat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--teal);
  font-family: system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap 0.2s;
}

.feat-link:hover { gap: 0.65rem; }

.timeline-wrap { max-width: 820px; margin: 0 auto; position: relative; }

.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 26px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--pink), var(--purple), var(--teal));
  opacity: 0.3;
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.step-num {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--pink);
  background: var(--navy2);
  position: relative;
  z-index: 1;
  font-family: system-ui, sans-serif;
}

.timeline-step:nth-child(2) .step-num { border-color: var(--purple); color: var(--purple); }
.timeline-step:nth-child(3) .step-num { border-color: var(--teal); color: var(--teal); }
.timeline-step:nth-child(4) .step-num { border-color: var(--yellow); color: var(--yellow); }

.step-body {
  flex: 1;
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  transition: border-color 0.3s;
}

.step-body:hover { border-color: var(--border2); }

.step-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
  font-family: system-ui, sans-serif;
}

.step-body p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.75;
  font-family: system-ui, sans-serif;
}

.cta-section {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy3) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,77,255,.1) 0%, transparent 70%);
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section h2 span { color: var(--teal); }

.cta-section p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
  font-family: system-ui, sans-serif;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 820px;
  margin: 0 auto;
}

.social-card {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: transform 0.2s, border-color 0.2s;
}

.social-card:hover {
  transform: translateY(-2px);
  border-color: var(--border2);
}

.social-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.social-icon.yt { background: rgba(245,86,138,0.15); }
.social-icon.fb { background: rgba(124,77,255,0.15); }

.social-text h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.35rem;
  font-family: system-ui, sans-serif;
}

.social-text p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  font-family: system-ui, sans-serif;
}

.contact-section { padding: 5rem 0; background: var(--navy2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-family: system-ui, sans-serif;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: system-ui, sans-serif;
  transition: color 0.2s;
}

.contact-link:hover { color: var(--teal); }

.contact-link svg {
  width: 17px; height: 17px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.venue-box {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgba(0,194,203,0.07);
  border-radius: var(--radius);
  border-left: 3px solid var(--teal);
}

.venue-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 0.3rem;
  font-family: system-ui, sans-serif;
}

.venue-box p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
  font-family: system-ui, sans-serif;
}

.form-wrap {
  background: var(--navy3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.form-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  font-family: system-ui, sans-serif;
}

.form-row { margin-bottom: 1rem; }

.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 0.4rem;
  font-family: system-ui, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: system-ui, sans-serif;
  color: var(--text);
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: rgba(0,194,203,0.5);
  box-shadow: 0 0 0 3px rgba(0,194,203,0.1);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 2rem;
  background: linear-gradient(90deg, #f5568a, #ff8c42);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 800;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  min-height: 48px;
  box-shadow: 0 6px 24px rgba(245,86,138,.4);
}

.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  text-align: center;
  font-family: system-ui, sans-serif;
}

.form-honey { display: none !important; }

.msg-ok {
  background: rgba(0,194,203,0.12);
  color: #7efff5;
  border: 1px solid rgba(0,194,203,0.3);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
}

.msg-err {
  background: rgba(245,86,138,0.1);
  color: #fca5a5;
  border: 1px solid rgba(245,86,138,0.25);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
  font-family: system-ui, sans-serif;
}

.page-header {
  background: linear-gradient(180deg, #0d1b6e 0%, #1a2fa0 50%, #0f1535 100%);
  padding: 3.5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header-inner { max-width: 740px; }

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-family: system-ui, sans-serif;
}

.page-breadcrumb a { color: var(--muted); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--text); }

.page-header h1 {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: var(--text);
  margin-bottom: 0.85rem;
}

.page-header h1 span { color: var(--teal); }

.page-lead {
  font-size: 1.05rem;
  color: rgba(220,230,255,0.75);
  line-height: 1.75;
  max-width: 620px;
  font-family: system-ui, sans-serif;
}

.article-section { background: var(--navy); padding: 4.5rem 0; }

.article-wrap { max-width: 800px; margin: 0 auto; }

.article-wrap h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin: 2.5rem 0 0.9rem;
}

.article-wrap h2:first-child { margin-top: 0; }

.article-wrap h3 {
  font-size: 1.1rem;
  color: var(--text);
  margin: 1.75rem 0 0.55rem;
  font-weight: 700;
}

.article-wrap p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-family: system-ui, sans-serif;
  font-size: 0.9375rem;
}

.article-wrap ul {
  margin: 0.75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.article-wrap ul li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  font-family: system-ui, sans-serif;
}

.article-wrap ul li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 0.52em;
}

.article-wrap ul li strong { color: var(--text); }

.highlight-box {
  background: rgba(124,77,255,.12);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.highlight-box p { color: var(--text); margin: 0; font-size: 0.9375rem; }

.teal-box {
  background: rgba(0,194,203,0.07);
  border: 1px solid rgba(0,194,203,0.2);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  margin: 2rem 0;
}

.teal-box p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.75;
  font-family: system-ui, sans-serif;
}

.teal-box a { color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.service-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  margin: 2rem 0;
}

.sfc {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
}

.sfc-icon { font-size: 1.7rem; margin-bottom: 0.65rem; }
.sfc-title { font-size: 0.9rem; font-weight: 800; color: var(--text); margin-bottom: 0.4rem; font-family: system-ui, sans-serif; }
.sfc-text  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-family: system-ui, sans-serif; }

.event-note {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  margin: 2.5rem 0;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.event-note-icon { font-size: 1.8rem; flex-shrink: 0; }

.event-note-text {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
  font-family: system-ui, sans-serif;
}

.event-note-text a { color: var(--teal); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

.article-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2.5rem 0;
}

.link-teal {
  color: var(--teal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.link-teal:hover { color: var(--teal2); }

.faq-wrap { max-width: 800px; margin: 0 auto; padding-top: 1.5rem; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  font-family: system-ui, sans-serif;
  gap: 1rem;
}

.faq-q-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q-icon { transform: rotate(45deg); }

.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 600px; }

.faq-a-inner {
  padding-bottom: 1.1rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  font-family: system-ui, sans-serif;
}

footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.footer-logo-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5568a, #7c4dff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.65rem;
  font-family: system-ui, sans-serif;
  letter-spacing: 0.03em;
}

.footer-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  font-family: system-ui, sans-serif;
}

.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
  font-family: system-ui, sans-serif;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  font-family: system-ui, sans-serif;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  font-family: system-ui, sans-serif;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  font-family: system-ui, sans-serif;
}

.footer-legal a { color: rgba(255,255,255,0.45); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--text); }

.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.r.in { opacity: 1; transform: none; }
.rd2 { transition-delay: 0.12s; }
.rd3 { transition-delay: 0.22s; }
.rd4 { transition-delay: 0.32s; }

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .feat-row, .feat-row.rev { flex-direction: column; gap: 2rem; }
  .feat-illus { flex: none; width: 100%; }
  .social-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .service-feat-grid { grid-template-columns: 1fr 1fr; }
  .timeline-wrap::before { display: none; }
}

@media (max-width: 640px) {
  .cards-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns, .cta-btns, .article-cta { flex-direction: column; align-items: center; }
  .service-feat-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .hero-moon { display: none; }
}
