/* ============================================================
   CAR-BRIDGE.EU — PREMIUM DARK THEME
   "Quiet Confidence" — Dark, gold accents, smooth animations
   ============================================================ */

/* ─── CSS VARIABLES ─── */
:root {
  /* Core palette */
  --bg-deep: #0a0e17;
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-elevated: #243447;
  --bg-card: rgba(30, 41, 59, 0.6);

  /* Gold accent — refined, not shouting */
  --gold: #c9a227;
  --gold-soft: #d4af37;
  --gold-muted: rgba(201, 162, 39, 0.15);
  --gold-glow: rgba(201, 162, 39, 0.08);

  /* Text */
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  /* Functional */
  --border: rgba(148, 163, 184, 0.12);
  --border-gold: rgba(201, 162, 39, 0.3);
  --success: #059669;
  --success-soft: rgba(5, 150, 105, 0.12);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.12);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--gold-muted);
  color: var(--gold);
}

/* ─── CONTAINER ─── */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.site-header.header-scrolled {
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(1.1);
}

.main-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.main-nav a {
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.main-nav a:hover {
  color: var(--text-primary);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-select {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 72px;
  cursor: pointer;
  outline: none;
  font-weight: 500;
  font-size: 13px;
  transition: all var(--transition-fast);
}

.language-select:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
}

.language-select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.whatsapp-header {
  background: var(--gold);
  color: var(--bg-deep);
  padding: 11px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-gold);
}

.whatsapp-header:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.2);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  background:
    linear-gradient(
      165deg,
      rgba(10, 14, 23, 0.97) 0%,
      rgba(15, 23, 42, 0.88) 35%,
      rgba(15, 23, 42, 0.65) 60%,
      rgba(10, 14, 23, 0.85) 100%
    ),
    url("../assets/hero/hero.jpg");
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  padding: 180px 0 120px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    transparent 0%,
    rgba(10, 14, 23, 0.4) 100%
  );
  pointer-events: none;
}

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

.eyebrow {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: var(--gold-muted);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 28px;
}

.hero h1 span {
  color: var(--gold);
  font-weight: 600;
}

.hero-text {
  font-size: 19px;
  max-width: 560px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.25);
}

.btn-outline {
  border: 1.5px solid rgba(241, 245, 249, 0.2);
  color: var(--text-primary);
  background: rgba(241, 245, 249, 0.04);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: rgba(241, 245, 249, 0.35);
  background: rgba(241, 245, 249, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
}

.trust-row div {
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(241, 245, 249, 0.05);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.trust-row div:hover {
  background: rgba(241, 245, 249, 0.08);
  border-color: var(--border-gold);
}

/* ─── COUNTRY STRIP ─── */
.country-strip {
  position: relative;
  z-index: 10;
  margin-top: -40px;
}

.country-strip .container {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.country-strip p {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 15px;
}

.countries {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.countries span {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 18px;
  background: var(--bg-primary);
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.countries span:hover {
  border-color: var(--border-gold);
  color: var(--gold);
}

/* ─── SECTIONS ─── */
.section {
  padding: 100px 0;
  scroll-margin-top: 100px;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-intro {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.soft-bg {
  background: var(--bg-deep);
}

/* ─── GRIDS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

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

/* ─── CARDS ─── */
.step-card,
.service-card,
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
}

.step-card:hover,
.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--gold-muted);
  color: var(--gold);
  border: 1.5px solid var(--border-gold);
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  transition: all var(--transition-fast);
}

.step-card:hover span {
  background: var(--gold);
  color: var(--bg-deep);
}

.step-card h3,
.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.step-card p,
.service-card p,
.price-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.price-card {
  position: relative;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.price-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.price {
  font-size: 52px;
  line-height: 1;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 24px 0 8px;
}

.price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  margin: 0 0 32px;
  flex-grow: 1;
}

.price-card li {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-card li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.package-btn {
  width: 100%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.01em;
}

.package-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.price-card.featured {
  border: 1.5px solid var(--border-gold);
  background: linear-gradient(
    180deg,
    rgba(201, 162, 39, 0.08) 0%,
    var(--bg-card) 40%
  );
  transform: translateY(-8px);
}

.price-card.featured .package-btn {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.price-card.featured .package-btn:hover {
  background: var(--gold-soft);
  box-shadow: 0 12px 40px rgba(201, 162, 39, 0.25);
}

.price-card.premium {
  background: linear-gradient(
    180deg,
    rgba(30, 41, 59, 0.9) 0%,
    rgba(15, 23, 42, 0.95) 100%
  );
  border-color: var(--border);
}

.price-card.premium .package-btn {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}

.price-card.premium .package-btn:hover {
  background: var(--gold);
  color: var(--bg-deep);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-gold);
}

/* ─── REVIEWS ─── */
#reviews .pricing-grid {
  margin-top: 48px;
}

#reviews .price-card {
  text-align: left;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}

.review-user {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ─── COMFORT SECTION ─── */
.comfort-section {
  background: linear-gradient(
    135deg,
    var(--bg-deep) 0%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 100%
  );
  color: var(--text-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.comfort-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    var(--gold-glow) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.comfort-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.comfort-inner h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: left;
}

.comfort-inner p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}

.comfort-box {
  background: rgba(241, 245, 249, 0.03);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.comfort-box h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--gold);
}

.comfort-box ul {
  list-style: none;
}

.comfort-box li {
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.comfort-box li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ─── FORM ─── */
.request-section {
  background: var(--bg-deep);
  position: relative;
}

.request-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-gold) 50%,
    transparent 100%
  );
}

.request-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

input,
select,
textarea {
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--bg-primary);
  color: var(--text-primary);
  outline: none;
  font-size: 15px;
  transition: all var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-dim);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}

select {
  cursor: pointer;
  appearance: none;
  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='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

select option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.checkbox-label {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin: 0;
}

/* ─── PAYMENT INFO ─── */
.payment-info {
  margin: 32px 0;
  padding: 28px;
  background: var(--gold-muted);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
}

.payment-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 600;
}

.payment-info p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

.payment-info ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.payment-info li {
  padding: 8px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 900px;
  margin: 48px auto 0;
  display: grid;
  gap: 12px;
}

details {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  transition: all var(--transition-fast);
}

details:hover {
  border-color: var(--border-gold);
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  padding: 24px 28px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition-fast);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details[open] summary {
  color: var(--gold);
}

details p {
  color: var(--text-muted);
  padding: 0 28px 24px;
  font-size: 15px;
  line-height: 1.7;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--bg-deep);
  color: var(--text-primary);
  padding: 64px 0 24px;
  border-top: 1px solid var(--border);
}

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

.site-footer h3 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--gold);
}

.site-footer h4 {
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 600;
}

.site-footer p {
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  color: var(--text-dim);
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 13px;
}

/* ─── WHATSAPP FLOATING ─── */
.whatsapp-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
  border: none;
  cursor: pointer;
}

.whatsapp-floating:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

/* ─── STATES ─── */
.package-btn.active-package {
  background: var(--gold);
  color: var(--bg-deep);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ─── ANIMATIONS ─── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.step-card,
.service-card,
.price-card,
.comfort-box {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.step-card.revealed,
.service-card.revealed,
.price-card.revealed,
.comfort-box.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
.step-card:nth-child(1) { transition-delay: 0s; }
.step-card:nth-child(2) { transition-delay: 0.1s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }
.step-card:nth-child(4) { transition-delay: 0.3s; }
.step-card:nth-child(5) { transition-delay: 0.4s; }

.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.2s; }
.service-card:nth-child(4) { transition-delay: 0.3s; }
.service-card:nth-child(5) { transition-delay: 0.4s; }

.price-card:nth-child(1) { transition-delay: 0s; }
.price-card:nth-child(2) { transition-delay: 0.15s; }
.price-card:nth-child(3) { transition-delay: 0.3s; }

/* Hero content animation */
.hero-content > * {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content .eyebrow { animation-delay: 0.2s; }
.hero-content h1 { animation-delay: 0.4s; }
.hero-content .hero-text { animation-delay: 0.6s; }
.hero-content .hero-buttons { animation-delay: 0.8s; }
.hero-content .trust-row { animation-delay: 1s; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-elevated);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-dim);
}

/* ─── RESPONSIVE OVERRIDES (minimal, preserves responsive.css) ─── */
@media (max-width: 1200px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 160px 0 100px;
    background-attachment: scroll;
  }

  .hero-content {
    max-width: 100%;
  }

  .trust-row {
    flex-wrap: wrap;
  }

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card.featured {
    transform: none;
  }

  .comfort-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .site-header {
    padding: 14px 0;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 14px;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding-top: 140px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .section h2 {
    font-size: 30px;
  }

  .steps-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .service-card,
  .price-card {
    padding: 28px;
  }

  .price {
    font-size: 44px;
  }

  .request-form {
    padding: 28px;
  }

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

  .comfort-inner h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 24px, 1200px);
  }

  .logo img {
    height: 40px;
  }

  .language-select {
    padding: 8px 12px;
    font-size: 12px;
  }

  .whatsapp-header {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }

  .section h2 {
    font-size: 26px;
  }

  .section-intro {
    font-size: 15px;
  }

  .comfort-inner p {
    font-size: 15px;
  }

  .request-form {
    padding: 24px;
    border-radius: 20px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .whatsapp-floating {
    width: 52px;
    height: 52px;
    font-size: 24px;
    right: 16px;
    bottom: 16px;
  }
}