/* ========================================
   🏁 暗金赛车 · 设计系统
   jspk10.com — 极速赛车品牌站
   ======================================== */

/* --- CSS Variables --- */
:root {
  /* Colors */
  --bg-primary: #070b15;
  --bg-secondary: #0d1321;
  --bg-tertiary: #131b2e;
  --bg-card: rgba(255,255,255,0.03);
  --bg-glass: rgba(255,255,255,0.05);
  --bg-glass-hover: rgba(255,255,255,0.08);
  
  --gold: #d4a853;
  --gold-light: #f0d080;
  --gold-dark: #b8862e;
  --gold-glow: rgba(212,168,83,0.3);
  
  --red: #dc2626;
  --red-dark: #991b1b;
  --red-glow: rgba(220,38,38,0.3);
  
  --text-primary: #f1f3f5;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --border-gold: rgba(212,168,83,0.15);
  --border-gold-hover: rgba(212,168,83,0.35);
  --border-default: rgba(255,255,255,0.06);
  
  /* Gradients */
  --grad-gold: linear-gradient(135deg, var(--gold), var(--gold-light));
  --grad-gold-hover: linear-gradient(135deg, var(--gold-light), var(--gold));
  --grad-red: linear-gradient(135deg, var(--red), #ef4444);
  --grad-dark: linear-gradient(180deg, var(--bg-primary), var(--bg-secondary));
  --grad-hero: linear-gradient(135deg, rgba(7,11,21,0.92), rgba(13,19,33,0.88));
  --grad-hero-accent: linear-gradient(135deg, rgba(212,168,83,0.1), transparent);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 24px rgba(212,168,83,0.15);
  
  /* Typography */
  --font-body: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, -apple-system, sans-serif;
  --font-display: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  
  /* Spacing */
  --section-gap: 100px;
  --section-padding: 80px 0;
  --container-width: 1200px;
  --card-gap: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--gold-light); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark { background: var(--bg-primary); }
.section-secondary { background: var(--bg-secondary); }
.section-tertiary { background: var(--bg-tertiary); }

/* --- Typography --- */
.gold-text { color: var(--gold); }
.red-text { color: var(--red); }
.text-center { text-align: center; }

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--grad-gold);
  transform: translateY(-50%);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--bg-primary) !important;
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
  color: var(--bg-primary) !important;
}

.btn-outline {
  background: transparent;
  color: var(--gold) !important;
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg-primary) !important;
  transform: translateY(-2px);
}

.btn-red {
  background: var(--grad-red);
  color: #fff !important;
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--red-glow);
  color: #fff !important;
}

/* --- Header / Nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(7,11,21,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-default);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background: rgba(7,11,21,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary) !important;
}

.nav-brand .brand-icon {
  width: 36px;
  height: 36px;
  background: var(--grad-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--bg-primary);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary) !important;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold) !important;
  background: var(--bg-glass);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn {
  padding: 8px 22px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: var(--grad-hero-accent);
  z-index: 1;
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 50px;
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-default);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-mono);
}

.hero-stat-item .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
}

/* --- Hero Compact (inner pages) --- */
.hero-compact {
  min-height: 50vh;
  padding-top: 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-compact .hero-content {
  padding: 60px 0 40px;
}

.hero-compact h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  background: var(--bg-glass-hover);
}

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

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.card .card-tag {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--gold-glow);
  color: var(--gold);
  margin-bottom: 12px;
}

/* --- Grid Layouts --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--card-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--card-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--card-gap); }

/* --- Stats Counter Section --- */
.stats-section {
  background: var(--bg-tertiary);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,168,83,0.05), transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* --- FAQ Section --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-gold);
}

.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: background var(--transition-fast);
  user-select: none;
}

.faq-question:hover {
  background: var(--bg-glass);
}

.faq-question .faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* --- CTA Section --- */
.cta-section {
  background: var(--bg-tertiary);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.06), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 30px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-default);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.contact-item-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-default);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-muted) !important;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--gold) !important;
}

.footer-bottom {
  border-top: 1px solid var(--border-default);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted) !important;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: var(--gold-glow);
}

/* --- Content Module Variations --- */

/* Feature split (text + image) */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse > * {
  direction: ltr;
}

.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-tertiary);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
}

.feature-visual svg {
  width: 100%;
  height: auto;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-gold);
}

.timeline-item {
  position: relative;
  padding: 20px 0 20px 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--grad-gold);
  border: 3px solid var(--bg-primary);
}

.timeline-item .time {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Price/Room table */
.room-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.room-table thead {
  background: var(--bg-tertiary);
}

.room-table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.room-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-default);
  color: var(--text-secondary);
}

.room-table tr:hover td {
  background: var(--bg-glass);
}

.room-table .status-badge {
  display: inline-block;
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-hot { background: rgba(220,38,38,0.15); color: #ef4444; }
.status-active { background: rgba(212,168,83,0.15); color: var(--gold); }
.status-new { background: rgba(34,197,94,0.15); color: #22c55e; }

/* Testimonial / Review card */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  font-family: serif;
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bg-primary);
}

.testimonial-card .author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card .author-title {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Feature step numbers */
.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bg-primary);
  flex-shrink: 0;
}

/* Badge/Pill */
.pill {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-glass);
  color: var(--text-secondary);
  border: 1px solid var(--border-default);
}

.pill-gold {
  background: var(--gold-glow);
  color: var(--gold);
  border-color: var(--border-gold);
}

.pill-red {
  background: rgba(220,38,38,0.12);
  color: #ef4444;
  border-color: rgba(220,38,38,0.2);
}

/* --- Decorative Elements --- */
.speed-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
  opacity: 0.3;
  pointer-events: none;
}

.corner-accent {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 2px solid var(--border-gold);
  opacity: 0.15;
  pointer-events: none;
}

.corner-accent.tl { top: 20px; left: 20px; border-right: none; border-bottom: none; }
.corner-accent.br { bottom: 20px; right: 20px; border-left: none; border-top: none; }

/* --- Brand logo strip --- */
.brand-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 0;
}

.brand-strip-item {
  padding: 12px 24px;
  background: var(--bg-glass);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-strip-item:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

/* --- Section Intro --- */
.section-intro {
  text-align: center;
  margin-bottom: 50px;
}

.section-intro .section-subtitle {
  margin: 0 auto;
}

/* --- Page header for inner pages --- */
.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,0.06), transparent 70%);
  pointer-events: none;
}

.page-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-header p {
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* --- Animated Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Content modules container --- */
.content-modules {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* --- Matomo hidden --- */
.matomo-track {
  display: none;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-split { gap: 40px; }
  .hero-accent-line { width: 30%; }
}

@media (max-width: 768px) {
  :root {
    --section-gap: 60px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open,
  .nav-cta.open {
    display: flex;
  }

  .nav-links.open {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(7,11,21,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-default);
    gap: 4px;
  }

  .nav-cta.open {
    position: absolute;
    top: calc(70px + 200px);
    right: 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-split {
    grid-template-columns: 1fr;
  }

  .feature-split.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-compact {
    min-height: 40vh;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .room-table {
    font-size: 0.8rem;
  }

  .room-table th,
  .room-table td {
    padding: 10px 12px;
  }
}
