@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  /* Colors */
  --primary-brand: #7B2CBF;
  --primary-brand-dark: #5A189A;
  --primary-brand-light: #9D4EDD;
  --primary-brand-transparent: rgba(123, 44, 191, 0.15);
  
  --accent-gold: #D4AF37;
  --accent-green-teal: #2A9D8F;
  
  --neutral-black: #0A0A0A;
  --neutral-dark-surface: #121212;
  --neutral-card-bg: #1A1A1A;
  --neutral-border: #2A2A2A;
  --neutral-light-gray: #B0B0B0;
  --neutral-gray: #888888;
  --neutral-white: #FFFFFF;
  
  --state-error: #FF4D4D;
  --state-success: #4CAF50;
  --state-warning: #FFC107;

  /* Typography Fonts */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing Scale */
  --spacing-base: 16px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-4xl: 80px;
  --spacing-5xl: 100px;
  --container-max-width: 1200px;
  --section-padding-y: 80px;

  /* Border Radius */
  --radius-none: 0px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-none: none;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.5);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.6);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.7);
  --shadow-xl: 0 20px 50px rgba(0,0,0,0.8);
  --shadow-glow-brand: 0 0 20px rgba(123, 44, 191, 0.35);
  --shadow-glow-gold: 0 0 20px rgba(212, 175, 55, 0.35);
}

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

body {
  background-color: var(--neutral-black);
  color: var(--neutral-light-gray);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--neutral-white);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Typography Classes */
.display-1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

.h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3;
}

.h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.body-lg {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-light-gray);
}

.body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-light-gray);
}

.body-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--neutral-gray);
}

.overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--primary-brand-light);
}

/* Grid & Layout System */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-12 { grid-column: span 12; }
.col-8 { grid-column: span 8; }
.col-6 { grid-column: span 6; }
.col-4 { grid-column: span 4; }
.col-3 { grid-column: span 3; }

/* Sections */
.section {
  padding: var(--section-padding-y) 0;
  position: relative;
}

.section-dark {
  background-color: var(--neutral-black);
}

.section-surface {
  background-color: var(--neutral-dark-surface);
}

.section-header {
  margin-bottom: var(--spacing-3xl);
  text-align: center;
}

.section-header.left-aligned {
  text-align: left;
}

.section-header .overline {
  margin-bottom: var(--spacing-sm);
}

.section-header h2 {
  margin-bottom: var(--spacing-md);
}

/* Navigation Header */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--neutral-border);
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo-container {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.brand-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--neutral-white);
}

.brand-text-accent {
  color: var(--primary-brand-light);
}

.nav-menu-desktop {
  display: flex;
  align-items: center;
  gap: var(--spacing-xl);
  list-style: none;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-light-gray);
  position: relative;
  padding: var(--spacing-xs) 0;
}

.nav-link:hover {
  color: var(--neutral-white);
}

.nav-link.active {
  color: var(--primary-brand-light);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-brand-light);
  border-radius: var(--radius-full);
  box-shadow: 0 0 8px var(--primary-brand-light);
}

.header-cta-button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Mobile Menu Burger */
.burger-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
  color: var(--neutral-white);
  z-index: 1001;
}

.burger-menu-btn svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

.mobile-nav-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: var(--neutral-black);
  border-bottom: 1px solid var(--neutral-border);
  padding: var(--spacing-xl);
  list-style: none;
  flex-direction: column;
  gap: var(--spacing-lg);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.mobile-nav-menu.active {
  transform: translateY(0);
  opacity: 1;
  display: flex;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn:active {
  transform: scale(0.96);
}

.btn-primary {
  background-color: var(--primary-brand);
  color: var(--neutral-white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
}

.btn-primary:hover {
  background-color: var(--primary-brand-light);
  box-shadow: var(--shadow-glow-brand);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--neutral-border);
  color: var(--neutral-white);
  padding: 12px 28px;
  border-radius: var(--radius-xl);
}

.btn-outline:hover {
  border-color: var(--primary-brand);
  color: var(--primary-brand-light);
  background-color: var(--primary-brand-transparent);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--neutral-light-gray);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.btn-ghost:hover {
  color: var(--neutral-white);
}

/* Cards */
.card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.service-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: var(--primary-brand);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.service-card-icon {
  width: 44px;
  height: 44px;
  color: var(--primary-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-brand-transparent);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-sm);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.service-card-title {
  color: var(--neutral-white);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
}

.service-card-text {
  font-size: 14px;
  color: var(--neutral-gray);
  line-height: 1.5;
  flex-grow: 1;
}

.service-card-link {
  color: var(--primary-brand-light);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link:hover {
  color: var(--neutral-white);
}

/* Feature/Stat Cards */
.stat-card {
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  border-color: var(--primary-brand);
  box-shadow: var(--shadow-glow-brand);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-brand-light);
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: 14px;
  color: var(--neutral-gray);
}

/* Testimonial Cards */
.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  gap: 16px;
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-lg);
}

.star-rating {
  display: flex;
  gap: 4px;
  color: var(--accent-gold);
}

.star-rating svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 16px;
  font-style: italic;
  color: var(--neutral-light-gray);
  line-height: 1.6;
}

.testimonial-author {
  font-weight: 600;
  color: var(--neutral-white);
  font-size: 15px;
  display: flex;
  flex-direction: column;
}

.testimonial-title {
  font-size: 13px;
  color: var(--neutral-gray);
  font-weight: 400;
  margin-top: 2px;
}

/* Game Review Cards */
.game-review-card {
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.game-review-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-brand);
  box-shadow: var(--shadow-lg);
}

.game-card-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--neutral-dark-surface);
}

.game-card-img-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.95));
  z-index: 1;
}

.game-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.game-review-card:hover .game-card-img {
  transform: scale(1.05);
}

.game-card-badge {
  position: absolute;
  top: var(--spacing-md);
  left: var(--spacing-md);
  z-index: 2;
  background: var(--primary-brand);
  color: var(--neutral-white);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.game-card-score {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  z-index: 2;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-glow-gold);
}

.game-card-content {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--spacing-sm);
}

.game-card-genre {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary-brand-light);
  letter-spacing: 1px;
}

.game-card-title {
  font-size: 22px;
  color: var(--neutral-white);
  font-family: var(--font-heading);
}

.game-card-desc {
  font-size: 14px;
  color: var(--neutral-light-gray);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
}

.game-card-btn {
  margin-top: auto;
  align-self: flex-start;
  color: var(--primary-brand-light);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
}

.game-card-btn:hover {
  color: var(--neutral-white);
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background-color: var(--neutral-dark-surface);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-full);
  color: var(--neutral-white);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background-color: var(--primary-brand);
  border-color: var(--primary-brand);
}

.modal-body {
  padding: 40px;
}

.modal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
}

.modal-genre {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-brand-light);
  text-transform: uppercase;
}

.modal-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-gold);
}

.modal-title {
  font-size: 32px;
  color: var(--neutral-white);
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-lg);
}

.modal-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--neutral-light-gray);
}

.modal-text p {
  margin-bottom: var(--spacing-md);
}

/* Forms styling */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-light-gray);
}

.form-input, .form-textarea {
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  color: var(--neutral-white);
  padding: 14px 20px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 15px;
  width: 100%;
  transition: all 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary-brand);
  box-shadow: 0 0 0 3px var(--primary-brand-transparent);
}

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

/* Hero Banners */
.hero-block {
  padding-top: 160px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  background-color: var(--neutral-black);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(123, 44, 191, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 44, 191, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  mask-image: radial-gradient(circle, black 30%, transparent 80%);
  pointer-events: none;
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 48px;
}

.hero-left {
  flex: 1;
}

.hero-right {
  flex: 1;
  position: relative;
}

.hero-left .overline {
  margin-bottom: var(--spacing-md);
  display: block;
}

.hero-left h1 {
  margin-bottom: var(--spacing-lg);
}

.hero-left .hero-sub {
  margin-bottom: var(--spacing-2xl);
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-border);
}

.hero-image-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.floating-pill {
  position: absolute;
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-white);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.floating-pill.pos-1 {
  bottom: 24px;
  left: -20px;
}

.floating-pill.pos-2 {
  top: 40px;
  right: -20px;
  background-color: var(--primary-brand);
  border-color: var(--primary-brand-light);
}

.floating-pill-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: var(--radius-full);
  display: inline-block;
}

.floating-pill.pos-2 .floating-pill-dot {
  background-color: var(--neutral-white);
}

/* Footer styles */
.site-footer {
  background-color: var(--neutral-black);
  border-top: 1px solid var(--neutral-border);
  padding: var(--spacing-3xl) 0 var(--spacing-xl) 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg) var(--spacing-xl);
  list-style: none;
}

.footer-link {
  font-size: 14px;
  color: var(--neutral-gray);
}

.footer-link:hover {
  color: var(--primary-brand-light);
}

.footer-copyright {
  font-size: 13px;
  color: var(--neutral-gray);
  text-align: center;
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255,255,255,0.03);
  padding-top: var(--spacing-lg);
  line-height: 1.6;
}

/* Sub-page Specific Layout blocks */
.subpage-hero {
  padding-top: 140px;
  padding-bottom: 60px;
  background-color: var(--neutral-dark-surface);
  border-bottom: 1px solid var(--neutral-border);
}

.split-section {
  display: flex;
  align-items: center;
  gap: 64px;
}

.split-left, .split-right {
  flex: 1;
}

/* Accordion FAQs */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-white);
}

.faq-icon {
  color: var(--primary-brand-light);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--neutral-light-gray);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--primary-brand);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 24px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* Platform Logo Strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  padding: 24px;
  background-color: var(--primary-brand);
  border-radius: var(--radius-md);
}

.logo-strip-item {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--neutral-white);
  letter-spacing: 1px;
  opacity: 0.85;
}

/* Contact layout details */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.contact-info-item {
  display: flex;
  gap: var(--spacing-md);
  align-items: flex-start;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-brand-transparent);
  border: 1px solid rgba(123, 44, 191, 0.25);
  border-radius: var(--radius-md);
  color: var(--primary-brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.contact-info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-white);
  margin-bottom: 4px;
}

.contact-info-content p {
  color: var(--neutral-gray);
  font-size: 15px;
}

.contact-map-mock {
  background-color: var(--neutral-card-bg);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
}

.contact-map-mock svg {
  width: 48px;
  height: 48px;
  color: var(--primary-brand-light);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .display-1 { font-size: 48px; }
  .display-2 { font-size: 38px; }
  
  .hero-flex {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .hero-right {
    width: 100%;
    max-width: 500px;
  }
  
  .card-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .split-section {
    flex-direction: column;
    gap: 40px;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding-y: 60px;
  }
  
  .nav-menu-desktop, .header-cta-wrapper {
    display: none;
  }
  
  .burger-menu-btn {
    display: block;
  }
  
  .card-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .card-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .display-1 { font-size: 38px; }
  .display-2 { font-size: 30px; }
  
  .card-grid-4, .card-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .floating-pill {
    display: none;
  }
}
