﻿/* ============================================
   Build Ibiza AI - styles.css
   Mobile-first - Premium - Conversion-focused
   ============================================ */

/* RESET & BASE */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  color: #1A1A1A;
  background-color: #F7F4EF;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ============================================
   DESIGN TOKENS
   ============================================ */

:root {
  --cream:      #F7F4EF;
  --cream-dark: #EDE9E1;
  --sand:       #C5A882;
  --gold:       #B08D57;
  --gold-light: #C9A46E;
  --charcoal:   #2A2A2A;
  --dark:       #1A1A1A;
  --mid:        #5A5A5A;
  --light:      #8A8A8A;
  --border:     #DDD5C8;
  --white:      #FFFFFF;
  --green-wa:   #25D366;

  --radius:     4px;
  --radius-lg:  8px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);

  --max-width:  1100px;
  --section-py: 80px;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 20px;
}

.section {
  padding-block: var(--section-py);
}

.text-center { text-align: center; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--charcoal);
}

.section__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  margin-bottom: 20px;
}

.section__lead {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--mid);
  max-width: 680px;
  margin-bottom: 32px;
}

.section__lead.text-center {
  margin-inline: auto;
}

.link {
  color: var(--gold);
  text-decoration: underline;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--white);
  border: 2px solid var(--charcoal);
}
.btn--primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border: 2px solid var(--green-wa);
}
.btn--whatsapp:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--full { width: 100%; }
.btn--sm { padding: 10px 20px; font-size: 0.875rem; }
.btn--lg { padding: 18px 32px; font-size: 1.05rem; }

.btn__icon { font-size: 1.1em; }

/* ============================================
   HEADER
   ============================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}

.header__brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-right: auto;
}

.header__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.header__tagline {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header__nav {
  display: none;
  gap: 28px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.15s;
}
.nav__link:hover { color: var(--charcoal); }

.header__cta { display: none; }

.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.2s;
}
.header__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__hamburger.open span:nth-child(2) { opacity: 0; }
.header__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 20px;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: flex; }
.mobile-nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav__cta { margin-top: 12px; }

/* ============================================
   HERO
   ============================================ */

.hero {
  background: linear-gradient(160deg, var(--charcoal) 0%, #3A3530 100%);
  padding-block: 96px 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 640px;
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero__trust {
  font-size: 0.9rem;
  color: var(--sand);
  margin-bottom: 36px;
  font-style: italic;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__offer {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

/* ============================================
   PROBLEM
   ============================================ */

.problem { background: var(--white); }

.pain-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 8px;
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--charcoal);
}

.pain-icon {
  color: var(--gold);
  font-size: 0.5rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ============================================
   SOLUTION
   ============================================ */

.solution { background: var(--cream); }

.solution__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.solution__note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--mid);
  padding: 16px 20px;
  border-left: 3px solid var(--border);
  margin-top: 8px;
}

.solution__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.solution__card {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.solution__card--accent {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(176, 141, 87, 0.15);
}

.solution__card-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.solution__card-text {
  color: var(--mid);
  font-size: 0.95rem;
}

.solution__arrow {
  font-size: 1.8rem;
  color: var(--gold);
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works { background: var(--white); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 8px;
}

.step {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream);
  position: relative;
}

.step__number {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
}

.step__title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ============================================
   REPORT INCLUDES
   ============================================ */

.includes { background: var(--charcoal); }
.includes .section__title { color: var(--white); }

.includes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.includes__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.08);
}

.includes__check {
  color: var(--sand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.includes__disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* ============================================
   PRICING
   ============================================ */

.pricing { background: var(--cream); }

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(176, 141, 87, 0.18);
}

.pricing-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.pricing-card__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.pricing-card__amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--light);
}

.pricing-card__desc {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}

.pricing-card__list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--mid);
}

.pricing-card__list li::before {
  content: '-';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 600;
}

.pricing__offer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--light);
  font-style: italic;
}

/* ============================================
   FORM
   ============================================ */

.form-section { background: var(--white); }

.lead-form {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form-group {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group__legend {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.required { color: var(--gold); }

.field__input {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.field__input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.15);
  background: var(--white);
}

.field__input::placeholder { color: var(--light); }

.field__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A8A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.field__textarea {
  resize: vertical;
  min-height: 80px;
}

.field__upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 32px 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.field__upload:hover,
.field__upload.drag-over {
  border-color: var(--gold);
  background: rgba(176, 141, 87, 0.05);
}

.field__upload-icon { font-size: 2rem; }

.field__upload-text {
  font-size: 0.9rem;
  color: var(--mid);
}

.field__upload-link {
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
}

.field__upload-hint {
  font-size: 0.8rem;
  color: var(--light);
}

.field__file {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.field__file-list {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 6px;
}

.form-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--mid);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input { margin-top: 2px; flex-shrink: 0; accent-color: var(--gold); }

.form-microcopy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--light);
  font-style: italic;
}

.form-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.form-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.form-success p {
  color: var(--mid);
  font-size: 0.95rem;
  max-width: 400px;
  margin-inline: auto;
}

/* ============================================
   TRUST
   ============================================ */

.trust { background: var(--cream); }

.trust__inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.trust__body {
  color: var(--mid);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

.trust-check {
  color: var(--gold);
  font-weight: 700;
}

.trust__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  text-align: center;
  min-height: 180px;
}

.trust__badge-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.trust__badge-sub {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
}

/* ============================================
   FAQ
   ============================================ */

.faq { background: var(--white); }

.faq__inner { max-width: 720px; margin-inline: auto; }

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}

.accordion__item {
  border-bottom: 1px solid var(--border);
}

.accordion__item:last-child { border-bottom: none; }

.accordion__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  transition: background 0.15s;
  gap: 16px;
}

.accordion__trigger:hover { background: var(--cream); }

.accordion__trigger[aria-expanded="true"] {
  background: var(--cream);
  color: var(--gold);
}

.accordion__icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.2s;
  line-height: 1;
}

.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(45deg);
}

.accordion__content {
  padding: 0 24px 20px;
  background: var(--cream);
}

.accordion__content p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

/* ============================================
   DISCLAIMER
   ============================================ */

.disclaimer { background: var(--cream-dark); padding-block: 48px; }

.disclaimer__box {
  max-width: 720px;
  margin-inline: auto;
}

.disclaimer__title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}

.disclaimer__box p {
  font-size: 0.82rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--charcoal);
  padding-top: 56px;
  padding-bottom: 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer__sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer__link:hover { color: var(--sand); }

.footer__bottom {
  padding-block: 20px;
}

.footer__bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--green-wa);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ============================================
   RESPONSIVE - TABLET (640px+)
   ============================================ */

@media (min-width: 640px) {
  .pain-list { grid-template-columns: repeat(2, 1fr); }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .includes__grid { grid-template-columns: repeat(2, 1fr); }

  .pricing__cards { grid-template-columns: repeat(2, 1fr); }

  .form-row--2 { grid-template-columns: repeat(2, 1fr); }

  .solution__inner { flex-direction: row; align-items: center; }
  .solution__text { flex: 1; }
  .solution__visual { flex: 0 0 320px; }

  .trust__inner { flex-direction: row; align-items: flex-start; }
  .trust__text { flex: 1; }
  .trust__badge { flex: 0 0 240px; align-self: stretch; }

  .footer__inner { flex-direction: row; align-items: flex-start; }
  .footer__nav { align-items: flex-start; }
}

/* ============================================
   RESPONSIVE - DESKTOP (900px+)
   ============================================ */

@media (min-width: 900px) {
  :root { --section-py: 100px; }

  .header__nav { display: flex; }
  .header__cta { display: inline-flex; }
  .header__hamburger { display: none; }

  .steps { grid-template-columns: repeat(4, 1fr); }

  .includes__grid { grid-template-columns: repeat(2, 1fr); }

  .hero { padding-block: 120px 100px; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}





/* ============================================
   HERO BUTTON FIX
   Makes secondary CTA visible on dark hero
   ============================================ */

.hero .btn--outline {
  color: #F7F4EF;
  border-color: rgba(197, 168, 130, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.hero .btn--outline:hover {
  color: #FFFFFF;
  background: rgba(176, 141, 87, 0.22);
  border-color: #C5A882;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}

.lang-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light);
  padding: 4px 6px;
  letter-spacing: 0.06em;
  transition: color 0.15s;
  border-radius: var(--radius);
}

.lang-btn.active {
  color: var(--gold);
}

.lang-btn:hover:not(.active) {
  color: var(--charcoal);
}

.lang-sep {
  color: var(--border);
  font-size: 0.75rem;
  line-height: 1;
  pointer-events: none;
}

