/* =========================================
   PULTEN — Design System & Website Styles
   Based on Brand Guidelines v1.0
   ========================================= */

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

:root {
  --void: #0A0A0A;
  --paper: #FFFFFF;
  --voltage: #00E676;
  --voltage-dark: #00C853;
  --surface: #FAFAF7;
  --border: #EAE7DE;
  --muted: #666666;
  --text-muted: #999999;
  --danger: #E53935;

  --font-primary: 'Exo 2', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --nav-height: 72px;
  --wrap-max: 1200px;
  --wrap-padding: 48px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-primary);
  color: var(--void);
  background: var(--surface);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-padding);
}

.mono {
  font-family: var(--font-mono);
}

/* --- Typography --- */
.display {
  font-size: clamp(64px, 14vw, 200px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 8px;
  line-height: 0.9;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-wordmark {
  height: clamp(64px, 14vw, 200px);
  width: auto;
  max-width: 100%;
  display: block;
  transform: translateX(-86px);
  filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.55));
}

.section-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--voltage-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  font-style: italic;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 24px;
}

.section-intro {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 640px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 72px;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--voltage);
  text-transform: uppercase;
}

.subhead {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--void);
  padding-bottom: 12px;
  margin: 8px 0 12px;
  font-weight: 500;
}

.subhead:first-of-type {
  margin-top: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-voltage {
  background: var(--voltage);
  color: var(--void);
}
.btn-voltage:hover {
  background: var(--voltage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 230, 118, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-outline:hover {
  border-color: var(--voltage);
  color: var(--voltage);
}

.btn-void {
  background: var(--void);
  color: var(--paper);
}
.btn-void:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--voltage);
}

.nav-logo-horizontal {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

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

.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--void) !important;
  background: var(--voltage) !important;
  padding: 10px 20px !important;
  border-radius: 6px;
  font-weight: 700;
  transition: all 0.2s ease;
}
.nav-cta:hover {
  background: var(--voltage-dark) !important;
  color: var(--void) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Fast telefon på skærmkant --- */
.side-phone {
  position: fixed;
  z-index: 900;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding: 20px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--void);
  background: var(--voltage);
  border-radius: 10px 0 0 10px;
  box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, color 0.2s ease;
}

.side-phone:hover {
  background: var(--voltage-dark);
  color: var(--void);
}

.side-phone:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 2px;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background-color: var(--void);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) var(--wrap-padding) 80px;
  position: relative;
  /* Kun vandret: undgår at stats/knapper klippes i bunden ved langt indhold */
  overflow-x: hidden;
  overflow-y: visible;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-forside.png');
  /* Lidt zoom uden transform (transform + overflow skaber ofte clipping) */
  background-size: 112% 112%;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.35) 40%,
      rgba(10, 10, 10, 0.82) 100%
    ),
    radial-gradient(circle at 70% 100%, rgba(0, 230, 118, 0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  width: 100%;
  padding-left: 46px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.hero-phone {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--voltage);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.65);
  transition: color 0.2s ease;
}

.hero-phone:hover {
  color: var(--voltage-dark);
}

.hero .eyebrow {
  margin-bottom: 20px;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.65);
}

.hero h1 {
  margin-bottom: 0;
  line-height: 0;
  transform: none;
}

.hero-tagline {
  font-size: clamp(18px, 3vw, 28px);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.85;
  font-weight: 400;
  margin-top: -28px;
  margin-bottom: 2px;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.7);
}

.hero-description {
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 560px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin-top: -4px;
  margin-bottom: 16px;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.65);
}

.hero-description + .hero-description {
  margin-top: 0;
  margin-bottom: 48px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-size: 40px;
  font-weight: 900;
  font-style: italic;
  color: var(--voltage);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.4;
}

.trustpilot-bar {
  background: var(--paper);
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

/* --- Sections --- */
.section {
  padding: 120px 0;
}

.section--surface { background: var(--surface); }
.section--paper { background: var(--paper); }
.section--void {
  background: var(--void);
  color: var(--paper);
}
.section--void .section-number { color: var(--voltage); }
.section--void .section-intro { color: rgba(255, 255, 255, 0.5); }
.section--void .subhead { border-bottom-color: rgba(255, 255, 255, 0.15); color: var(--paper); }

/* --- Få tilbud / Quote --- */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.quote-promise {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 48px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.quote-promise-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(0, 230, 118, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-promise h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
}

.quote-promise p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.quote-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.quote-step-number {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--voltage-dark);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-step strong {
  font-size: 16px;
  display: block;
  margin-bottom: 2px;
}

.quote-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* --- Prisberegner (legacy) --- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.price-card {
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.price-card:hover {
  border-color: rgba(0, 230, 118, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.price-card.selected {
  border-color: var(--voltage);
  box-shadow: 0 0 0 1px var(--voltage), 0 12px 40px rgba(0, 230, 118, 0.1);
}

.price-card-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--voltage);
  color: var(--void);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 20px;
}

.price-card-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.price-card-price {
  font-size: 48px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  margin-bottom: 4px;
}

.price-card-price span {
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  opacity: 0.5;
}

.price-card-hours {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.price-card-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
}

.price-card-select {
  margin-top: 24px;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
  background: var(--surface);
  color: var(--void);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.price-card.selected .price-card-select {
  background: var(--voltage);
  color: var(--void);
  border-color: var(--voltage);
}

/* Tilvalg */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}

.addon-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.addon-card:hover { border-color: rgba(0, 230, 118, 0.3); }
.addon-card.selected {
  border-color: var(--voltage);
  background: rgba(0, 230, 118, 0.03);
}

.addon-check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  font-size: 14px;
  color: transparent;
}

.addon-card.selected .addon-check {
  background: var(--voltage);
  border-color: var(--voltage);
  color: var(--void);
}

.addon-info { flex: 1; }

.addon-name {
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 2px;
}

.addon-desc {
  font-size: 13px;
  color: var(--muted);
}

.addon-price {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* Price Total */
.price-total {
  background: var(--void);
  color: var(--paper);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.price-total-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 8px;
}

.price-total-amount {
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
}

.price-total-amount span {
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  opacity: 0.5;
}

.price-total-breakdown {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.8;
}

/* --- Cases --- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.case-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.case-image {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--void);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-image-placeholder {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

.case-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), transparent);
}

.case-body {
  padding: 28px;
}

.case-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--voltage-dark);
  margin-bottom: 12px;
}

.case-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.case-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.case-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--surface);
  color: var(--muted);
  border: 1px solid var(--border);
}

/* --- Om os / About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.about-image-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-image-placeholder {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.15);
}

.about-text h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat-number {
  font-size: 36px;
  font-weight: 900;
  font-style: italic;
  color: var(--voltage);
  line-height: 1;
  margin-bottom: 4px;
}

.about-stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* --- Book / Contact --- */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.book-info {
  padding-top: 16px;
}

.book-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.book-info p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.book-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.book-contact-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

.book-contact-value {
  font-size: 15px;
  font-weight: 500;
}

.book-form {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}

.form-group {
  margin-bottom: 0;
}

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

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-help {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--muted);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--void);
  background: var(--surface);
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
}

.form-field-shell {
  position: relative;
}

.form-field-shell::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 16px;
  height: 16px;
  opacity: 0.65;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.form-field-shell--select::after {
  width: 10px;
  height: 10px;
  right: 16px;
  border-right: 2px solid rgba(10, 10, 10, 0.55);
  border-bottom: 2px solid rgba(10, 10, 10, 0.55);
  transform: translateY(-62%) rotate(45deg);
  background: none;
}

.form-field-shell--date::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='17' rx='2' ry='2'/%3E%3Cline x1='16' y1='2.5' x2='16' y2='6'/%3E%3Cline x1='8' y1='2.5' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
}

.form-field-shell--time::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230A0A0A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.form-select {
  padding-right: 42px;
  cursor: pointer;
  background-color: var(--surface);
}

.form-select option {
  color: var(--void);
  background: var(--paper);
}

.form-input-date,
.form-input-time {
  padding-right: 42px;
}

.form-input-date::-webkit-calendar-picker-indicator,
.form-input-time::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 0;
  width: 42px;
  height: 100%;
  cursor: pointer;
}

.form-textarea-compact {
  min-height: 90px;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--voltage);
  box-shadow: 0 0 0 3px rgba(0, 230, 118, 0.1);
}

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

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-status {
  min-height: 22px;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--muted);
}

.form-status.success {
  color: #1b7f42;
}

.form-status.error {
  color: var(--danger);
}

/* --- Footer --- */
.site-footer {
  background: var(--void);
  color: var(--paper);
  padding: 80px var(--wrap-padding);
}

.footer-inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-mark {
  font-size: 64px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 16px;
  opacity: 0.5;
  margin-bottom: 24px;
}

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

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.2s ease;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social-link:hover {
  border-color: var(--voltage);
  color: var(--voltage);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}
.footer-nav a:hover { color: var(--paper); }

.footer-legal {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.2);
  line-height: 2;
}

/* --- Mobile Nav Overlay --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 700;
  color: var(--paper);
  padding: 12px 24px;
  transition: color 0.2s ease;
}
.mobile-nav a:hover { color: var(--voltage); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .price-grid { grid-template-columns: 1fr; max-width: 480px; }
  .quote-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .book-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root {
    --wrap-padding: 24px;
    --nav-height: 64px;
  }

  body {
    padding-bottom: 56px;
  }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-logo-horizontal { height: 40px; }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-height) + 24px) var(--wrap-padding) 64px;
    justify-content: flex-start;
  }
  .hero::before { background-size: cover; }
  .hero-inner {
    padding-left: 0;
    max-width: 100%;
  }
  .hero .display {
    font-size: 0;
    letter-spacing: 0;
  }
  .hero-wordmark {
    transform: translateX(0);
    height: clamp(56px, 18vw, 120px);
    max-width: min(92vw, 640px);
  }
  .hero h1 {
    margin-bottom: 12px;
    line-height: 1;
  }
  .hero-tagline {
    margin-top: 0;
    margin-bottom: 8px;
    letter-spacing: 2px;
    opacity: 0.9;
  }
  .hero-description {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 16px;
    max-width: 100%;
    line-height: 1.5;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    margin-top: 20px;
    padding-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .side-phone {
    writing-mode: horizontal-tb;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: none;
    text-align: center;
    border-radius: 0;
    padding: 14px 16px;
    letter-spacing: 2px;
    font-size: 10px;
  }
  .hero-stat-number { font-size: 28px; }

  .section { padding: 80px 0; }
  .section-intro { margin-bottom: 48px; }

  .price-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-stat-number { font-size: 28px; }

  .form-row { grid-template-columns: 1fr; }
  .book-form { padding: 24px; }
  .form-input,
  .form-select,
  .form-textarea { font-size: 16px; }

  .price-total { flex-direction: column; text-align: center; padding: 28px 22px; }
  .price-total-amount { font-size: 40px; }
  .price-total-breakdown { width: 100%; }
}

@media (max-width: 480px) {
  :root {
    --wrap-padding: 16px;
  }
  .hero {
    padding-top: calc(var(--nav-height) + 18px);
    padding-bottom: 44px;
  }
  .hero-wordmark { max-width: 94vw; }
  .hero-tagline { font-size: 18px; }
  .hero-description { font-size: 15px; margin-bottom: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .price-total-amount { font-size: 34px; }
  .price-total-amount span { display: block; font-size: 18px; margin-top: 4px; }
  .mobile-nav a { font-size: 28px; }
  .about-stats { grid-template-columns: 1fr; }
  .footer-nav { flex-direction: column; gap: 12px; }
}
