/* ============================================
   ELITE LUXURY DESIGN SYSTEM
   Swiss Precision • $30,000+ Value
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

:root {
  --noir: #0d0d0d;
  --charcoal: #1a1a1a;
  --slate: #2a2a2a;

  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #f4e5b8;

  --pearl: #f8f8f8;
  --silver: #c0c0c0;
  --ash: #808080;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--noir);
  color: var(--pearl);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font-sans); border: none; cursor: pointer; }

/* ============================================
   ELEGANT BACKGROUND
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.03), transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.02), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(212, 175, 55, 0.01) 2px, rgba(212, 175, 55, 0.01) 4px);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   ELEGANT BACKGROUND CLOCK
   ============================================ */
.bg-clock {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

.clock-face {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
}

.clock-face::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.clock-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 50%;
  transform-origin: center 0;
}

.clock-mark::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(212, 175, 55, 0.3);
}

.clock-mark:nth-child(1)::before,
.clock-mark:nth-child(4)::before,
.clock-mark:nth-child(7)::before,
.clock-mark:nth-child(10)::before {
  width: 2px;
  height: 40px;
}

.clock-mark::before {
  width: 1px;
  height: 20px;
}

.clock-hand {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform-origin: center 100%;
  background: var(--gold);
  border-radius: 2px;
}

.hour-hand {
  width: 3px;
  height: 30%;
  margin-left: -1.5px;
  opacity: 0.8;
}

.minute-hand {
  width: 2px;
  height: 42%;
  margin-left: -1px;
  opacity: 0.7;
}

.second-hand {
  width: 1px;
  height: 45%;
  margin-left: -0.5px;
  background: rgba(212, 175, 55, 0.5);
  opacity: 0.6;
}

/* ============================================
   CURSOR
   ============================================ */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, opacity 0.3s;
  opacity: 0.8;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  transition: opacity 1s ease, visibility 1s;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.2em;
  position: relative;
}

.loader-logo::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: loaderSlide 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes loaderSlide {
  to { left: 100%; }
}

/* ============================================
   SCROLL PROGRESS
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  z-index: 9999;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 2rem 0;
  backdrop-filter: blur(20px);
  background: rgba(13, 13, 13, 0.8);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  transition: var(--transition);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.15em;
  position: relative;
}

.nav-logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.nav-links {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--silver);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--pearl);
}

.h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--pearl);
}

.h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--pearl);
}

.h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--pearl);
}

.h4 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--pearl);
  letter-spacing: 0.05em;
}

.body-lg {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--silver);
  font-weight: 300;
}

.body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--silver);
  font-weight: 300;
}

.gold-text {
  color: var(--gold);
}

.accent-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

.label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ash);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 0;
  transition: var(--transition);
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--noir);
  border: 1px solid var(--gold);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-dark);
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--noir);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 4rem 80px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.hero .display {
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero .accent-line {
  margin: 2rem auto;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero .body-lg {
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

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

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 10rem 0;
  position: relative;
}

.grid {
  display: grid;
  gap: 3rem;
}

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

/* ============================================
   CARDS
   ============================================ */
.card {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.5), rgba(26, 26, 26, 0.5));
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
}

.card:hover::before {
  width: 100%;
}

.card-number {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.card h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.card p {
  color: var(--silver);
  line-height: 1.8;
}

.card-featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(26, 26, 26, 0.5));
}

/* ============================================
   STATS
   ============================================ */
.stats {
  display: flex;
  gap: 6rem;
  justify-content: center;
  padding: 8rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--ash);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ============================================
   FEATURE ROW
   ============================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  margin: 10rem 0;
  padding: 6rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-row:first-child {
  border-top: none;
}

.feature-row:nth-child(even) {
  direction: rtl;
}

.feature-row:nth-child(even) > * {
  direction: ltr;
}

.feature-number {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.feature-text h3 {
  margin-bottom: 2rem;
}

.feature-text p {
  color: var(--silver);
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--silver);
}

.feature-list li::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--gold);
}

.feature-visual {
  height: 500px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212, 175, 55, 0.2);
  font-size: 4rem;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.3), rgba(26, 26, 26, 0.3));
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 4rem 3rem;
  position: relative;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--gold);
  transform: translateY(-10px);
}

.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(26, 26, 26, 0.5));
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.pricing-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ash);
  margin-bottom: 2rem;
}

.pricing-price {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-price span {
  font-size: 1.2rem;
  color: var(--ash);
}

.pricing-desc {
  color: var(--silver);
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.pricing-features {
  margin-bottom: 3rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--silver);
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: '';
  width: 6px;
  height: 1px;
  background: var(--gold);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial {
  background: linear-gradient(135deg, rgba(42, 42, 42, 0.3), rgba(26, 26, 26, 0.3));
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 3rem;
  transition: var(--transition);
}

.testimonial:hover {
  border-color: rgba(212, 175, 55, 0.4);
}

.testimonial-quote {
  font-family: var(--font-elegant);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--pearl);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--gold);
}

.testimonial-name {
  font-weight: 500;
  color: var(--pearl);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--ash);
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  padding: 2rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--pearl);
  transition: var(--transition-fast);
}

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

.faq-icon {
  color: var(--gold);
  font-size: 1.5rem;
  transition: var(--transition);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1.5rem;
}

.faq-answer p {
  color: var(--silver);
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  padding: 6rem 0 3rem;
}

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

.footer-brand p {
  color: var(--ash);
  margin-top: 1.5rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer h4 {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--ash);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
  font-size: 0.85rem;
  color: var(--ash);
}

.footer-socials {
  display: flex;
  gap: 2rem;
}

.footer-socials a {
  color: var(--ash);
  transition: var(--transition-fast);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-socials a:hover {
  color: var(--gold);
}

/* ============================================
   FORMS
   ============================================ */
.input {
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--pearl);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 300;
  transition: var(--transition-fast);
}

.input:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.input::placeholder {
  color: var(--ash);
}

textarea.input {
  resize: vertical;
  min-height: 120px;
  padding-top: 1rem;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ash);
  margin-bottom: 0.75rem;
  display: block;
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 200px 4rem 100px;
  text-align: center;
}

.breadcrumb {
  display: flex;
  gap: 1rem;
  justify-content: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ash);
  margin-bottom: 3rem;
}

.breadcrumb a {
  color: var(--ash);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.page-header .h1 {
  margin-bottom: 2rem;
}

.page-header .accent-line {
  margin: 2rem auto;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-anim] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-anim].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-stagger].visible > *:nth-child(1) { transition-delay: 0.1s; }
[data-stagger].visible > *:nth-child(2) { transition-delay: 0.2s; }
[data-stagger].visible > *:nth-child(3) { transition-delay: 0.3s; }
[data-stagger].visible > *:nth-child(4) { transition-delay: 0.4s; }
[data-stagger].visible > *:nth-child(5) { transition-delay: 0.5s; }
[data-stagger].visible > *:nth-child(6) { transition-delay: 0.6s; }

[data-stagger].visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  text-align: center;
  padding: 10rem 4rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.cta .h2 {
  margin-bottom: 2rem;
}

.cta .accent-line {
  margin: 2rem auto;
}

.cta .body-lg {
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 4rem; }
  .feature-row:nth-child(even) { direction: ltr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { gap: 3rem; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
  .container { padding: 0 2rem; }
  .section { padding: 6rem 0; }
  .hero { padding: 100px 2rem 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-bottom { flex-direction: column; gap: 2rem; text-align: center; }
  .stats { flex-direction: column; gap: 3rem; }
  .page-header { padding: 140px 2rem 60px; }
}

.text-center { text-align: center; }
