/* ==========================================================================
   ROBEE&BOBEE V2 — Warm Professional (Refined)
   Production Stylesheet
   Improvements over V1:
   - Gradient hero (no video dependency)
   - Stats counter bar
   - Price cards with accent top border
   - Review cards with avatars + stars
   - Floating WhatsApp FAB
   - Smoother step connector lines
   - Better section spacing and transitions
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. DESIGN TOKENS / CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */

:root {
  --bg: #FAF7F2;
  --bg-alt: #F0E8DA;
  --bg-card: #FFFFFF;
  --bg-dark: #2C1810;
  --text: #362D2C;
  --text-muted: #7A6E65;
  --text-light: #FAF7F2;
  --accent-blue: #1B4D8E;
  --accent-gold: #D4A037;
  --accent-gold-light: #F5E6C8;
  --accent-red: #C62828;
  --accent-green: #25D366;
  --border: #E8DED0;
  --border-hover: #D4A037;
  --shadow: rgba(44, 24, 16, 0.08);
  --shadow-lg: rgba(44, 24, 16, 0.12);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
  --radius-pill: 40px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: clamp(60px, 10vw, 120px);
  --max-w: 1200px;
}

/* --------------------------------------------------------------------------
   1. GLOBAL / RESET
   -------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* --------------------------------------------------------------------------
   2. SHARED LAYOUT & TYPOGRAPHY
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* --------------------------------------------------------------------------
   3. HEADER
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.header.is-scrolled {
  background: rgba(250, 247, 242, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px var(--shadow);
  padding: 10px 0;
}

.header.is-hidden {
  transform: translateY(-100%);
}

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

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.header__logo-img {
  height: 64px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.header.is-scrolled .header__logo-img {
  height: 50px;
}

.header__nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.header__link {
  text-decoration: none;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
  position: relative;
}

.header.is-scrolled .header__link {
  color: var(--text);
}

.header__link::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.header__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__link:hover {
  color: var(--accent-gold);
}

.header__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.header__social:hover {
  background: #1877F2;
  color: #fff;
  transform: scale(1.08);
}

.header.is-scrolled .header__social {
  color: var(--text);
  background: rgba(0, 0, 0, 0.06);
}

.header.is-scrolled .header__social:hover {
  background: #1877F2;
  color: #fff;
}

.header__social svg {
  width: 18px;
  height: 18px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--bg-card);
  background: var(--accent-green);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.header__phone:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.header__phone-icon {
  width: 18px;
  height: 18px;
}

.header__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  border-radius: 2px;
}

.header.is-scrolled .header__burger-line {
  background: var(--text);
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Language switcher ─────────────────────────────────────── */
.header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, color 0.3s ease;
}

.header.is-scrolled .header__lang-btn {
  color: var(--text);
  background: rgba(0, 0, 0, 0.06);
}

.header__lang-btn.is-active {
  background: var(--accent-gold);
  color: #fff;
}

.header.is-scrolled .header__lang-btn.is-active {
  background: var(--accent-gold);
  color: #fff;
}

.header__lang-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.25);
}

.header.is-scrolled .header__lang-btn:hover:not(.is-active) {
  background: rgba(0, 0, 0, 0.1);
}

/* --------------------------------------------------------------------------
   4. MOBILE NAV
   -------------------------------------------------------------------------- */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(44, 24, 16, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 28px;
}

.mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav__link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav__link:hover {
  color: var(--accent-gold);
}

.mobile-nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  margin-top: 16px;
  transition: opacity 0.3s ease;
}

.mobile-nav__wa:hover {
  opacity: 0.9;
}

.mobile-nav__wa svg {
  width: 20px;
  height: 20px;
}

.mobile-nav__lang {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.mobile-nav__lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.3s ease, color 0.3s ease;
}

.mobile-nav__lang-btn.is-active {
  background: var(--accent-gold);
  color: #fff;
}

.mobile-nav__lang-btn:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.25);
}

/* --------------------------------------------------------------------------
   5. HERO — CSS GRADIENT (no video dependency)
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2C1810;
}

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

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(44, 24, 16, 0.78) 0%,
    rgba(44, 24, 16, 0.55) 50%,
    rgba(44, 24, 16, 0.40) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: var(--section-pad) 0;
}

.hero__slogan {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease);
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease) 0.2s;
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease) 0.4s;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--ease) 0.6s;
}

.hero__slogan.is-visible,
.hero__title.is-visible,
.hero__subtitle.is-visible,
.hero__actions.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.hero__cta--primary {
  background: var(--accent-gold);
  color: var(--bg-dark);
  border: 2px solid var(--accent-gold);
}

.hero__cta--primary:hover {
  background: transparent;
  color: var(--text-light);
  border-color: var(--accent-gold);
}

.hero__cta--whatsapp {
  background: var(--accent-green);
  color: white;
  border: 2px solid var(--accent-green);
}

.hero__cta--whatsapp:hover {
  opacity: 0.9;
}

.hero__cta-icon {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   5b. STATS BAR
   -------------------------------------------------------------------------- */

.stats {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px var(--shadow);
}

.stats__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 28px 24px;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1.2;
}

.stats__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-top: 4px;
}

.stats__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. PRICES
   -------------------------------------------------------------------------- */

.prices {
  padding: var(--section-pad) 0;
}

.prices__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: 0 2px 12px var(--shadow);
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.price-card__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), #E8B94A);
}

.price-card__body {
  padding: 28px 24px 32px;
  text-align: center;
}

.price-card__emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.price-card__type {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.price-card__sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 16px;
}

.price-card__amount {
  margin-bottom: 16px;
}

.price-card__value {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--accent-gold);
}

.price-card__unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.price-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.prices__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   7. ADVANTAGES
   -------------------------------------------------------------------------- */

.advantages {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.advantages__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px var(--shadow);
}

.adv-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.adv-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 160, 55, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.adv-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.adv-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.adv-card__text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   8. REQUIREMENTS
   -------------------------------------------------------------------------- */

.requirements {
  padding: var(--section-pad) 0;
}

.requirements__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

.req-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px var(--shadow);
}

.req-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.req-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 77, 142, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.req-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.req-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.req-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.requirements__quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  max-width: 700px;
  margin-top: 48px;
  padding: 24px 32px;
  border-left: 3px solid var(--accent-gold);
  background: rgba(212, 160, 55, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   9. PROCESS
   -------------------------------------------------------------------------- */

.process {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.process__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* Connector line behind the steps */
.process__steps::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--border) 0%, var(--accent-gold) 50%, var(--border) 100%);
  opacity: 0.5;
}

.step {
  padding: 28px 20px;
  position: relative;
  text-align: center;
}

.step__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.step__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   10. TEAM
   -------------------------------------------------------------------------- */

.team {
  padding: var(--section-pad) 0;
}

.team__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* Founder card */
.team__founder {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  margin-bottom: 48px;
}

.team__founder-photo {
  min-height: 350px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__founder-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.team__founder-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.team__founder-role {
  font-size: 0.95rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 24px;
}

.team__founder-bio {
  flex: 1;
  margin-bottom: 24px;
}

.team__founder-bio p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.team__founder-bio p:last-child {
  margin-bottom: 0;
}

.team__founder-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.team__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team__contact-link:hover {
  color: var(--accent-gold);
}

.team__contact-link svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.team__contact-link:hover svg {
  opacity: 1;
}

/* Member grid */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.team-card {
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 4px 20px var(--shadow);
  border-color: var(--accent-gold);
}

.team-card__photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 16px;
  background: var(--bg-alt);
  border: 2px solid var(--border);
  transition: border-color 0.3s ease;
}

.team-card:hover .team-card__photo {
  border-color: var(--accent-gold);
}

.team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 500;
  display: block;
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.team-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* Location card */
.team__location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px var(--shadow);
}

.team__location-photo {
  min-height: 250px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team__location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team__location-info {
  padding: 32px;
}

.team__location-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.team__location-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.team__location-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.team__contact-link--text {
  cursor: default;
}

/* Map */
.team__map {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px var(--shadow);
}

.team__map iframe {
  display: block;
  width: 100%;
  height: 400px;
}

.team__map-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team__map-link:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   11. REVIEWS — Redesigned with avatars + stars
   -------------------------------------------------------------------------- */

.reviews {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
}

.reviews__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.reviews__carousel {
  position: relative;
}

.reviews__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.reviews__track::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 300px;
  max-width: 340px;
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  scroll-snap-align: start;
  box-shadow: 0 2px 12px var(--shadow);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 30px var(--shadow-lg);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.review-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #E8B94A);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.review-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
}

.review-card__region {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.review-card__stars {
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__quote {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.reviews__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.reviews__btn:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   12. CONTACT
   -------------------------------------------------------------------------- */

.contact {
  padding: var(--section-pad) 0;
}

.contact__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* --- Form --- */

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

.form__field {
  position: relative;
}

.form__field input,
.form__field select {
  width: 100%;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form__field input:focus,
.form__field select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 160, 55, 0.15);
}

.form__field label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  pointer-events: none;
  background: var(--bg-card);
  padding: 0 4px;
}

/* Floating label — input */
.form__field input:focus ~ label,
.form__field input:not(:placeholder-shown) ~ label {
  transform: translateY(-28px) scale(0.85);
  color: var(--accent-gold);
  transform-origin: left;
}

/* Floating label — select */
.form__field select:focus ~ label,
.form__field select:valid ~ label {
  transform: translateY(-28px) scale(0.85);
  color: var(--accent-gold);
  transform-origin: left;
}

.form__submit {
  padding: 14px 32px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.form__submit:hover {
  background: #C49030;
  transform: scale(1.02);
}

.form__error {
  display: block;
  color: var(--accent-red);
  font-size: 0.8rem;
  margin-top: 6px;
}

/* --- Contact Info --- */

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.contact__item-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.contact__item a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.contact__item address {
  font-style: normal;
  color: var(--text-muted);
  font-size: 1rem;
}

.contact__item-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.contact__wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-green);
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
  font-size: 0.95rem;
}

.contact__wa-btn:hover {
  opacity: 0.9;
}

.contact__wa-btn svg {
  width: 20px;
  height: 20px;
}

/* --------------------------------------------------------------------------
   13. FLOATING WHATSAPP FAB
   -------------------------------------------------------------------------- */

.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 90;
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.fab-whatsapp svg {
  width: 28px;
  height: 28px;
}

/* --------------------------------------------------------------------------
   14. TOAST
   -------------------------------------------------------------------------- */

.toast {
  position: fixed;
  bottom: 96px;
  right: 24px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.15);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   15. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 48px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}

.footer__slogan {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.8);
  line-height: 1.5;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--accent-gold);
}

.footer__contacts a {
  display: block;
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

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

.footer__contacts address {
  font-style: normal;
  color: rgba(250, 247, 242, 0.6);
  font-size: 0.9rem;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(250, 247, 242, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer__social-link:hover {
  color: #1877F2;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
}

/* --------------------------------------------------------------------------
   16. SCROLL ANIMATIONS — [data-animate] — Enhanced Directions
   -------------------------------------------------------------------------- */

[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Direction variants */
[data-animate-dir="left"] {
  transform: translateX(-50px);
}

[data-animate-dir="right"] {
  transform: translateX(50px);
}

[data-animate-dir="scale"] {
  transform: scale(0.9);
}

[data-animate-dir="left"].is-visible,
[data-animate-dir="right"].is-visible,
[data-animate-dir="scale"].is-visible {
  transform: none;
}

/* Staggered card delays */
[data-animate-delay="1"] { transition-delay: 0.08s; }
[data-animate-delay="2"] { transition-delay: 0.18s; }
[data-animate-delay="3"] { transition-delay: 0.28s; }
[data-animate-delay="4"] { transition-delay: 0.38s; }

/* --------------------------------------------------------------------------
   16b. SCROLL PROGRESS BAR
   -------------------------------------------------------------------------- */

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--accent-gold), #F5C842, var(--accent-gold));
  z-index: 100;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* --------------------------------------------------------------------------
   16c. CUSTOM BEE CURSOR — with wing flutter
   -------------------------------------------------------------------------- */

.bee-cursor {
  position: fixed;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  transition: opacity 0.3s ease;
  will-change: left, top, transform;
}

.bee-cursor.is-active {
  opacity: 1;
}

.bee-cursor svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

/* Wing flutter animation */
.bee-wings ellipse {
  transform-origin: center center;
  animation: wingFlutter 0.12s ease-in-out infinite alternate;
}

.bee-wings ellipse:first-child {
  animation-delay: 0s;
}

.bee-wings ellipse:last-child {
  animation-delay: 0.06s;
}

@keyframes wingFlutter {
  0%   { opacity: 0.45; transform: scaleY(1); }
  100% { opacity: 0.2;  transform: scaleY(0.5); }
}

@media (hover: hover) and (pointer: fine) {
  body.bee-cursor-active {
    cursor: none;
  }
  body.bee-cursor-active a,
  body.bee-cursor-active button,
  body.bee-cursor-active input,
  body.bee-cursor-active select,
  body.bee-cursor-active textarea {
    cursor: none;
  }
}

/* --------------------------------------------------------------------------
   16d. FLOATING PARTICLES — enhanced with drift
   -------------------------------------------------------------------------- */

.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  --drift: 0px;
  position: absolute;
  bottom: -50px;
  opacity: 0;
  animation: particleFloat linear infinite;
  color: var(--accent-gold);
}

.particle svg {
  fill: var(--accent-gold);
  opacity: 0.07;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0) rotate(0deg) scale(0.5);
  }
  8% {
    opacity: 1;
    transform: translateY(-10vh) translateX(calc(var(--drift) * 0.1)) rotate(15deg) scale(0.8);
  }
  50% {
    transform: translateY(-55vh) translateX(var(--drift)) rotate(180deg) scale(1);
  }
  92% {
    opacity: 1;
    transform: translateY(-95vh) translateX(calc(var(--drift) * 0.8)) rotate(340deg) scale(0.8);
  }
  100% {
    opacity: 0;
    transform: translateY(-105vh) translateX(var(--drift)) rotate(360deg) scale(0.5);
  }
}

/* --------------------------------------------------------------------------
   16e. GOLD SHIMMER on hover
   -------------------------------------------------------------------------- */

.has-shimmer {
  position: relative;
  background: linear-gradient(
    110deg,
    var(--text) 0%,
    var(--text) 40%,
    var(--accent-gold) 50%,
    var(--text) 60%,
    var(--text) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 100% center; }
  50%      { background-position: 0% center; }
}

/* --------------------------------------------------------------------------
   16f. SECTION ACTIVE — subtle highlight
   -------------------------------------------------------------------------- */

section {
  transition: none;
}

/* --------------------------------------------------------------------------
   16g. CARD HOVER GLOW
   -------------------------------------------------------------------------- */

.price-card,
.adv-card,
.req-card,
.step,
.team-card,
.team__founder,
.team__location {
  transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.price-card:hover,
.adv-card:hover,
.req-card:hover,
.team-card:hover {
  box-shadow: 0 8px 32px rgba(212, 160, 55, 0.15), 0 2px 8px var(--shadow);
}

/* Step number subtle glow */
.step:hover .step__num {
  text-shadow: 0 0 20px rgba(212, 160, 55, 0.4);
}

/* Advantage icon bounce on hover */
.adv-card:hover .adv-card__icon {
  animation: iconBounce 0.5s var(--ease);
}

@keyframes iconBounce {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.2) rotate(-5deg); }
  70%  { transform: scale(0.95) rotate(2deg); }
  100% { transform: scale(1) rotate(0); }
}

/* Requirement icon pulse on hover */
.req-card:hover .req-card__icon {
  animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* Price card golden accent animation on hover */
.price-card__accent {
  transition: height 0.4s var(--ease), background 0.4s ease;
}

.price-card:hover .price-card__accent {
  height: 6px;
  background: linear-gradient(90deg, var(--accent-gold), #F5C842, var(--accent-gold));
}

/* Review card lift */
.review-card {
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 160, 55, 0.12);
}

/* --------------------------------------------------------------------------
   16h. HERO PARALLAX DEPTH
   -------------------------------------------------------------------------- */

.hero__content {
  position: relative;
  z-index: 2;
}

/* Hero subtle gradient animation */
.hero__overlay {
  animation: heroGradientShift 8s ease-in-out infinite alternate;
}

@keyframes heroGradientShift {
  0%   { opacity: 0.75; }
  100% { opacity: 0.85; }
}

/* --------------------------------------------------------------------------
   16i. MAGNETIC BUTTON STYLE
   -------------------------------------------------------------------------- */

.hero__cta,
.form__submit {
  transition: transform 0.15s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.hero__cta:hover,
.form__submit:hover {
  box-shadow: 0 6px 24px rgba(212, 160, 55, 0.25);
}

/* --------------------------------------------------------------------------
   16j. SMOOTH ENTRANCE for team founder
   -------------------------------------------------------------------------- */

.team__founder[data-animate] {
  transform: translateY(60px) scale(0.96);
}

.team__founder[data-animate].is-visible {
  transform: none;
}

/* --------------------------------------------------------------------------
   17. RESPONSIVE — TABLET LANDSCAPE (max-width: 1024px)
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .prices__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .process__steps::before {
    display: none;
  }

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

  .stats__item {
    padding: 0 24px;
  }

  .stats__number {
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   18. RESPONSIVE — TABLET PORTRAIT (max-width: 768px)
   -------------------------------------------------------------------------- */

@media (max-width: 768px) {
  /* Header */
  .header__nav {
    display: none;
  }

  .header__phone {
    display: none;
  }

  .header__social {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .header__lang {
    margin-left: auto;
    margin-right: 12px;
  }

  .header__logo-img {
    height: 52px;
  }

  /* Stats */
  .stats__inner {
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px 24px;
  }

  .stats__item {
    flex: 1 0 40%;
    padding: 8px 0;
  }

  .stats__divider {
    display: none;
  }

  .stats__number {
    font-size: 1.4rem;
  }

  /* All sections reduced padding */
  .prices,
  .advantages,
  .requirements,
  .process,
  .team,
  .reviews,
  .contact {
    padding: clamp(40px, 8vw, 80px) 0;
  }

  /* Prices */
  .prices__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Advantages */
  .advantages__grid {
    grid-template-columns: 1fr;
  }

  /* Requirements */
  .requirements__grid {
    grid-template-columns: 1fr;
  }

  /* Process */
  .process__steps {
    grid-template-columns: 1fr 1fr;
  }

  .process__steps::before {
    display: none;
  }

  /* Team */
  .team__founder {
    grid-template-columns: 1fr;
  }

  .team__founder-photo {
    min-height: 250px;
    max-height: 350px;
  }

  .team__founder-info {
    padding: 28px 24px;
  }

  .team__founder-name {
    font-size: 1.3rem;
  }

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

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

  /* Contact */
  .contact__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__logo {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__nav {
    align-items: center;
  }

  .footer__contacts {
    text-align: center;
  }

  /* Hero */
  .hero__title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
}

/* --------------------------------------------------------------------------
   19. RESPONSIVE — SMALL PHONE (max-width: 480px)
   -------------------------------------------------------------------------- */

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .prices__inner,
  .advantages__inner,
  .requirements__inner,
  .process__inner,
  .team__inner,
  .reviews__inner,
  .contact__inner {
    padding: 0 16px;
  }

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

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

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

  .team__founder-contacts {
    flex-direction: column;
    gap: 10px;
  }

  .team__location-contacts {
    flex-direction: column;
    gap: 10px;
  }

  .team__map iframe {
    height: 280px;
  }

  .review-card {
    min-width: 280px;
  }

  .stats__item {
    flex: 1 0 45%;
  }

  .stats__number {
    font-size: 1.3rem;
  }

  .stats__label {
    font-size: 0.7rem;
  }

  .fab-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }

  .fab-whatsapp svg {
    width: 24px;
    height: 24px;
  }

  .toast {
    bottom: 80px;
    right: 16px;
    left: 16px;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .cookie-banner__actions {
    justify-content: center;
  }
}

/* --------------------------------------------------------------------------
   FOOTER LEGAL LINKS
   -------------------------------------------------------------------------- */

.footer__legal {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.footer__legal a {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* --------------------------------------------------------------------------
   COOKIE CONSENT BANNER
   -------------------------------------------------------------------------- */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-dark);
  border-top: 2px solid var(--accent-gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  padding: 0;
  animation: cookieSlideUp 0.4s var(--ease) forwards;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.cookie-banner__text {
  flex: 1;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
  margin: 0;
}

.cookie-banner__text a {
  color: var(--accent-gold);
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: var(--accent-gold-light);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.cookie-banner__btn--accept:hover {
  background: #e8b340;
  transform: translateY(-1px);
}

.cookie-banner__btn--decline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(250, 247, 242, 0.3);
}

.cookie-banner__btn--decline:hover {
  border-color: var(--text-light);
  background: rgba(250, 247, 242, 0.08);
}

/* --------------------------------------------------------------------------
   MULTI-PAGE: Page Hero / Breadcrumb
   -------------------------------------------------------------------------- */

.page-hero {
  padding: clamp(100px, 12vw, 140px) 0 clamp(40px, 6vw, 60px);
  background: linear-gradient(135deg, var(--bg-dark) 0%, #4a2c1a 100%);
  color: var(--text-light);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.6;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(250, 247, 242, 0.5);
}

.breadcrumb a {
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
}

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

/* --------------------------------------------------------------------------
   MULTI-PAGE: FAQ Accordion
   -------------------------------------------------------------------------- */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] {
  border-color: var(--accent-gold);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  user-select: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__chevron {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  color: var(--text-muted);
}

.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-item__answer {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   MULTI-PAGE: Process Detailed
   -------------------------------------------------------------------------- */

.process__steps--detailed {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step--detailed {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.step--detailed .step__num {
  flex-shrink: 0;
}

.step--detailed .step__title {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   MULTI-PAGE: Region card hover
   -------------------------------------------------------------------------- */

.region-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px var(--shadow);
  transform: translateY(-2px);
}
