/* ============================================================
   PERGOSFERA — Premium CSS
   Color System:
     --gold:        #C8A96E  (primary accent)
     --gold-light:  #E2CB9A
     --gold-dark:   #9A7A48
     --bg-dark:     #0C0C0C
     --bg-card:     #141414
     --bg-section:  #111111
     --text-light:  #F2EDE4
     --text-muted:  #888880
     --white:       #FFFFFF
============================================================ */

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

:root {
  --gold:        #C8A96E;
  --gold-light:  #E2CB9A;
  --gold-dark:   #9A7A48;
  --gold-subtle: rgba(200,169,110,0.12);
  --bg-dark:     #0C0C0C;
  --bg-card:     #141414;
  --bg-section:  #111111;
  --bg-light:    #F6F3EE;
  --text-light:  #F2EDE4;
  --text-muted:  #888880;
  --border:      rgba(200,169,110,0.2);
  --border-dark: rgba(255,255,255,0.07);
  --white:       #FFFFFF;
  --shadow-gold: 0 0 40px rgba(200,169,110,0.15);
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

h1,h2,h3,h4,h5 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #0C0C0C;
}
.btn-gold:hover {
  background: var(--gold-light);
  color: #0C0C0C;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold-subtle);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ---------- NAVIGATION ---------- */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
  padding: 28px 0;
}

#site-nav.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  box-shadow: 0 1px 0 var(--border-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

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

.nav-logo-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242,237,228,0.75);
  transition: color var(--transition);
}

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

.nav-cta {
  padding: 10px 24px;
  font-size: 0.78rem;
  background: var(--gold);
  color: #0C0C0C;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold-light);
  color: #0C0C0C;
  transform: translateY(-1px);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-light);
  transition: all var(--transition);
}

/* ---------- HERO ---------- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-media-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0C0C0C 0%, #1A1510 40%, #0C0C0C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media-placeholder-inner {
  text-align: center;
  color: var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-media-placeholder-inner svg {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,12,12,0.85) 0%,
    rgba(12,12,12,0.6) 50%,
    rgba(12,12,12,0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 0 80px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(242,237,228,0.7);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(242,237,228,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ---------- STATS BAR ---------- */
#stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 32px 0;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 24px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-dark);
}

.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-size: 1rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ---------- WHY PERGOSFERA ---------- */
#why {
  padding: 120px 0;
  background: var(--bg-section);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-image-area {
  position: relative;
}

.why-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.why-image-placeholder svg {
  width: 48px;
  opacity: 0.3;
}

.why-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #0C0C0C;
}

.why-badge-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.why-badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.2;
}

.why-content { }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-feature-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 4px;
}

.why-feature-text p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---------- MODELS / PRICING ---------- */
#models {
  padding: 120px 0;
  background: var(--bg-dark);
}

.models-header {
  text-align: center;
  margin-bottom: 72px;
}

.models-header .section-sub {
  margin: 0 auto;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.model-card {
  background: var(--bg-card);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background var(--transition);
}

.model-card:hover { background: #181818; }

.model-card.featured {
  background: linear-gradient(160deg, #1A160D 0%, #141414 100%);
}

.model-featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: #0C0C0C;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.model-size {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.model-size-unit {
  font-size: 1.2rem;
  color: var(--gold-dark);
}

.model-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.model-divider {
  height: 1px;
  background: var(--border-dark);
  margin-bottom: 24px;
}

.model-specs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}

.model-spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  gap: 8px;
}

.model-spec-key { color: var(--text-muted); }
.model-spec-val { color: var(--text-light); font-weight: 500; text-align: right; }

.model-price-area {
  margin-bottom: 24px;
}

.model-price-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.model-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1;
}

.model-price-currency {
  font-size: 1rem;
  color: var(--text-muted);
  margin-right: 4px;
}

.model-price-tax {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.model-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all var(--transition);
  background: transparent;
}

.model-btn:hover {
  background: var(--gold);
  color: #0C0C0C;
  border-color: var(--gold);
}

.model-card.featured .model-btn {
  background: var(--gold);
  color: #0C0C0C;
  border-color: var(--gold);
}
.model-card.featured .model-btn:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.models-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.models-note strong { color: var(--gold); }

/* ---------- FEATURES ---------- */
#features {
  padding: 120px 0;
  background: var(--bg-section);
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-header .section-sub { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-card);
  padding: 48px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
  transition: background var(--transition);
}

.feature-card:hover { background: #181818; }

.feature-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-body h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.feature-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------- GALLERY ---------- */
#gallery {
  padding: 120px 0;
  background: var(--bg-dark);
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-header .section-sub { margin: 0 auto; }

.gallery-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  margin-bottom: 8px;
}

.gallery-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: border-color var(--transition);
}

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

.gallery-item-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.12);
}

.gallery-item-placeholder svg {
  width: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
}

.gallery-item-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-main .gallery-item:first-child {
  grid-row: 1 / 3;
  min-height: 480px;
}

.gallery-main .gallery-item:not(:first-child) {
  min-height: 236px;
}

/* ---------- VIDEO ---------- */
#video-section {
  padding: 120px 0;
  background: var(--bg-section);
}

.video-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition);
}

.video-placeholder:hover { border-color: var(--border); }

.video-play-btn {
  width: 72px;
  height: 72px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 0 0 rgba(200,169,110,0.4);
  animation: videoPulse 2.5s ease-in-out infinite;
}

@keyframes videoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,169,110,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(200,169,110,0); }
}

.video-play-btn svg {
  width: 28px;
  fill: #0C0C0C;
  margin-left: 4px;
}

.video-placeholder-text {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.video-content { }

/* ---------- PROCESS ---------- */
#process {
  padding: 120px 0;
  background: var(--bg-dark);
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-header .section-sub { margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right, var(--gold-dark), var(--gold), var(--gold-dark));
  opacity: 0.35;
}

.process-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.process-step-num {
  width: 56px;
  height: 56px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- ADDONS ---------- */
#addons {
  padding: 80px 0;
  background: var(--bg-section);
  border-top: 1px solid var(--border-dark);
}

.addons-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.addons-left {}

.addons-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.addon-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: 40px;
  padding: 10px 20px;
  font-size: 0.82rem;
  color: var(--text-light);
  transition: border-color var(--transition);
}

.addon-chip:hover { border-color: var(--border); }

.addon-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- TESTIMONIALS ---------- */
#testimonials {
  padding: 120px 0;
  background: var(--bg-dark);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 72px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition);
}

.testimonial-card:hover { border-color: var(--border); }

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.testimonial-stars svg {
  width: 16px;
  fill: var(--gold);
  stroke: none;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-dark);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-subtle);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
}

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

/* ---------- CTA SECTION ---------- */
#cta {
  padding: 120px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner .section-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 20px;
}

.cta-inner .section-sub {
  margin: 0 auto 40px;
}

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

.cta-contact-row {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cta-contact-item svg {
  width: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.cta-contact-item a {
  color: var(--text-light);
  transition: color var(--transition);
}

.cta-contact-item a:hover { color: var(--gold); }

/* ---------- CONTACT FORM ---------- */
#contact {
  padding: 120px 0;
  background: var(--bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { }

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

.contact-info-icon svg {
  width: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.95rem;
  color: var(--text-light);
}

.contact-info-value a {
  color: var(--text-light);
}
.contact-info-value a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-input,
.form-select,
.form-textarea {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-light);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(136,136,128,0.5); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888880' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

.form-select option { background: var(--bg-card); }

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

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
  font-size: 0.875rem;
  padding: 16px;
}

.form-privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* ---------- FOOTER ---------- */
#site-footer {
  background: #080808;
  border-top: 1px solid var(--border-dark);
  padding: 64px 0 32px;
}

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

.footer-brand { }

.footer-logo-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

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

.footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 300px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

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

.footer-social svg {
  width: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
  transition: stroke var(--transition);
}

.footer-social a:hover svg { stroke: var(--gold); }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(242,237,228,0.55);
  transition: color var(--transition);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border-dark);
  font-size: 0.78rem;
  color: var(--text-muted);
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--text-muted);
}
.footer-bottom a:hover { color: var(--gold); }

/* ---------- MOBILE NAV OVERLAY ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10,10,10,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  transition: color var(--transition);
}

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

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-close svg {
  width: 24px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.5;
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* stagger children */
.reveal-group > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.reveal-group.visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0s; }
.reveal-group.visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: 0.1s; }
.reveal-group.visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: 0.2s; }
.reveal-group.visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: 0.3s; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image-area { display: none; }
  .video-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }
  .models-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .feature-card { padding: 28px; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .addons-inner { flex-direction: column; }
  section { padding-top: 80px !important; padding-bottom: 80px !important; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
