/* ============================================
   HOTELHOOK — Landing Page Design System
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colours */
  --clr-forest:       #1a3c34;
  --clr-forest-dark:  #0f2620;
  --clr-forest-light: #2a5c4e;
  --clr-gold:         #c9a84c;
  --clr-gold-light:   #e2c97e;
  --clr-gold-dark:    #a88a30;
  --clr-cream:        #faf7f2;
  --clr-cream-dark:   #f0ebe2;
  --clr-white:        #ffffff;
  --clr-text:         #2d2d2d;
  --clr-text-light:   #6b6b6b;
  --clr-text-muted:   #9a9a9a;
  --clr-danger:       #e74c3c;
  --clr-success:      #27ae60;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  1.5rem;
  --space-xl:  2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Radii */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 50%;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(0,0,0,.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.12);
  --shadow-xl:   0 16px 60px rgba(0,0,0,.16);
  --shadow-gold: 0 4px 20px rgba(201,168,76,.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(.4, 0, .2, 1);
  --ease-bounce: cubic-bezier(.34, 1.56, .64, 1);
  --duration-fast: 200ms;
  --duration-normal: 350ms;
  --duration-slow: 600ms;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  color: var(--clr-text);
  background: var(--clr-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(26,60,52,.08);
  color: var(--clr-forest);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: var(--space-sm) var(--space-lg);
  border-radius: 100px;
  margin-bottom: var(--space-lg);
}
.section-badge .badge-dot {
  width: 6px; height: 6px;
  background: var(--clr-gold);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--clr-forest-dark);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  max-width: 600px;
  line-height: 1.8;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: var(--space-lg) 0;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--shadow-sm);
  padding: var(--space-md) 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--ff-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-forest-dark);
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--clr-forest), var(--clr-forest-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--clr-text-light);
  transition: color var(--duration-fast) var(--ease-smooth);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: width var(--duration-normal) var(--ease-smooth);
}
.nav-links a:hover { color: var(--clr-forest-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.lang-switcher {
  display: flex;
  align-items: center;
  background: rgba(26,60,52,.06);
  border-radius: 100px;
  padding: 3px;
  gap: 2px;
}
.lang-switcher button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--ff-body);
  color: var(--clr-text-light);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}
.lang-switcher button.active {
  background: var(--clr-white);
  color: var(--clr-forest-dark);
  box-shadow: var(--shadow-sm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: all var(--duration-normal) var(--ease-smooth);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-forest-dark);
  padding: 14px 32px;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.35);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--clr-forest-dark);
  padding: 12px 28px;
  border: 2px solid rgba(26,60,52,.15);
}
.btn-outline:hover {
  border-color: var(--clr-forest);
  background: rgba(26,60,52,.04);
}

.btn-nav {
  padding: 10px 24px;
  font-size: .85rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--clr-forest-dark);
  border-radius: 2px;
  transition: all var(--duration-fast) var(--ease-smooth);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Subtle background pattern */
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(26,60,52,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(26,60,52,.08), rgba(201,168,76,.08));
  color: var(--clr-forest);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: var(--space-xl);
  border: 1px solid rgba(201,168,76,.15);
}
.hero-eyebrow .eyebrow-icon {
  font-size: .9rem;
}

.hero-title {
  font-family: var(--ff-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--clr-forest-dark);
  line-height: 1.15;
  margin-bottom: var(--space-xl);
}
.hero-title .highlight {
  color: var(--clr-gold-dark);
  position: relative;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 8px;
  background: rgba(201,168,76,.2);
  border-radius: 4px;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--clr-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-2xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(26,60,52,.08);
}
.hero-stat {
  text-align: left;
}
.hero-stat .stat-value {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-forest-dark);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.hero-stat .stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero visual — card mockup */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.card-mockup {
  position: relative;
  width: 100%;
  aspect-ratio: 1.6;
  background: linear-gradient(145deg, var(--clr-forest), var(--clr-forest-dark));
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(201,168,76,.1);
  overflow: hidden;
  transform: perspective(800px) rotateY(-5deg) rotateX(3deg);
  transition: transform var(--duration-slow) var(--ease-smooth);
}
.card-mockup:hover {
  transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
}

/* Card pattern overlay */
.card-mockup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(201,168,76,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.05) 0%, transparent 40%);
  pointer-events: none;
}

/* Subtle grid pattern on card */
.card-mockup::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.card-brand {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: 1px;
}
.card-qr {
  width: 50px; height: 50px;
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 1.5px;
}
.card-qr .qr-cell {
  border-radius: 1px;
}
.card-qr .qr-cell.filled {
  background: var(--clr-forest-dark);
}
.card-qr .qr-cell.empty {
  background: transparent;
}

.card-bottom {
  position: relative;
  z-index: 1;
}
.card-discount {
  font-family: var(--ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}
.card-label {
  font-size: .75rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Floating elements around mockup card */
.floating-element {
  position: absolute;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: .8rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.floating-element .float-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}
.float-verified {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}
.float-verified .float-icon {
  background: rgba(39,174,96,.1);
  color: var(--clr-success);
}
.float-commission {
  bottom: 15%;
  left: -30px;
  animation-delay: 2s;
}
.float-commission .float-icon {
  background: rgba(201,168,76,.1);
  color: var(--clr-gold-dark);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   PROBLEM / SOLUTION SECTION
   ============================================ */
.problem-section {
  padding: var(--space-4xl) 0;
  background: var(--clr-white);
  position: relative;
}

.problem-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}
.problem-header .section-subtitle {
  margin: 0 auto;
}

.problem-agitation {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-4xl);
  padding: var(--space-2xl) var(--space-2xl);
  background: linear-gradient(135deg, rgba(231,76,60,.04), rgba(201,168,76,.04));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(231,76,60,.08);
}
.problem-agitation p {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--clr-forest-dark);
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2xl);
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light), var(--clr-gold));
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px; height: 56px;
  margin: 0 auto var(--space-xl);
  background: linear-gradient(135deg, var(--clr-forest), var(--clr-forest-light));
  color: var(--clr-gold);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--clr-cream);
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  display: block;
}

.step-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-forest-dark);
  margin-bottom: var(--space-md);
}

.step-card p {
  font-size: .95rem;
  color: var(--clr-text-light);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
  padding: var(--space-4xl) 0;
  background: var(--clr-cream);
  position: relative;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}
.features-header .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.feature-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  border: 1px solid rgba(26,60,52,.06);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,.15);
}
.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(26,60,52,.06), rgba(201,168,76,.06));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
}

.feature-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-forest-dark);
  margin-bottom: var(--space-md);
}

.feature-card p {
  font-size: .92rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  padding: var(--space-4xl) 0;
  background: var(--clr-white);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}
.pricing-header .section-subtitle {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2xl);
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--clr-cream);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  border: 1px solid rgba(26,60,52,.06);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  background: linear-gradient(145deg, var(--clr-forest), var(--clr-forest-dark));
  border: none;
  box-shadow: var(--shadow-xl);
}
.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(26,60,52,.3);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-forest-dark);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card .plan-name {
  font-family: var(--ff-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.pricing-card.featured .plan-name {
  color: var(--clr-gold);
}

.pricing-card .plan-price {
  font-family: var(--ff-heading);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.pricing-card.featured .plan-price {
  color: var(--clr-white);
}

.pricing-card .plan-description {
  font-size: .92rem;
  color: var(--clr-text-light);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}
.pricing-card.featured .plan-description {
  color: rgba(255,255,255,.6);
}

.pricing-card .plan-features {
  margin-bottom: var(--space-2xl);
}
.pricing-card .plan-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: .9rem;
  color: var(--clr-text);
  margin-bottom: var(--space-md);
  line-height: 1.5;
}
.pricing-card.featured .plan-features li {
  color: rgba(255,255,255,.8);
}
.plan-features .check-icon {
  flex-shrink: 0;
  color: var(--clr-success);
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}
.pricing-card.featured .check-icon {
  color: var(--clr-gold);
}

.pricing-card .btn {
  width: 100%;
}
.pricing-card.featured .btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  color: var(--clr-forest-dark);
}

/* ============================================
   SOCIAL PROOF / TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(165deg, var(--clr-forest-dark), var(--clr-forest));
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonial-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-quote-icon {
  font-size: 3rem;
  color: var(--clr-gold);
  opacity: .6;
  margin-bottom: var(--space-xl);
  font-family: var(--ff-heading);
  line-height: 1;
}

.testimonial-text {
  font-family: var(--ff-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 500;
  font-style: italic;
  color: var(--clr-white);
  line-height: 1.6;
  margin-bottom: var(--space-2xl);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}
.testimonial-author .author-name {
  font-weight: 600;
  color: var(--clr-gold);
  font-size: .95rem;
}
.testimonial-author .author-role {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}

.testimonial-stats-row {
  display: flex;
  justify-content: center;
  gap: var(--space-4xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(255,255,255,.08);
}
.testimonial-stat {
  text-align: center;
}
.testimonial-stat .t-stat-value {
  font-family: var(--ff-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}
.testimonial-stat .t-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--clr-cream);
}

.faq-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.faq-header .section-subtitle {
  margin: 0 auto;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(26,60,52,.06);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}
.faq-item:hover {
  border-color: rgba(201,168,76,.15);
}
.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-lg) var(--space-xl);
  background: none;
  border: none;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-forest-dark);
  cursor: pointer;
  text-align: left;
  gap: var(--space-md);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: rgba(26,60,52,.06);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--clr-forest);
  transition: all var(--duration-normal) var(--ease-smooth);
}
.faq-item.active .faq-toggle {
  background: var(--clr-forest);
  color: var(--clr-gold);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-smooth);
}
.faq-answer-inner {
  padding: 0 var(--space-xl) var(--space-lg) var(--space-xl);
  font-size: .95rem;
  color: var(--clr-text-light);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--space-4xl) 0;
  background: var(--clr-white);
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(145deg, var(--clr-forest), var(--clr-forest-dark));
  border-radius: var(--radius-xl);
  padding: var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.03) 0%, transparent 50%);
  pointer-events: none;
}

.cta-card .cta-title {
  font-family: var(--ff-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}
.cta-card .cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-card .btn {
  position: relative;
  z-index: 1;
}
.cta-card .btn-primary {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--clr-forest-dark);
  color: rgba(255,255,255,.6);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-brand .logo {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}
.footer-brand .logo .logo-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--clr-forest-light), var(--clr-gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: .9rem;
  font-weight: 700;
}
.footer-brand p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--ff-heading);
  font-size: .95rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}
.footer-col ul li {
  margin-bottom: var(--space-sm);
}
.footer-col ul li a {
  font-size: .88rem;
  transition: color var(--duration-fast) var(--ease-smooth);
}
.footer-col ul li a:hover {
  color: var(--clr-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}
.footer-bottom a {
  transition: color var(--duration-fast) var(--ease-smooth);
}
.footer-bottom a:hover {
  color: var(--clr-gold);
}

.footer-bottom .lang-switcher {
  background: rgba(255, 255, 255, .06);
}
.footer-bottom .lang-switcher button {
  color: rgba(255, 255, 255, .6);
}
.footer-bottom .lang-switcher button.active {
  background: rgba(255, 255, 255, .15);
  color: var(--clr-white);
  box-shadow: none;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-smooth);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-smooth);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-smooth);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: .05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: .15s; }
.stagger-children .reveal:nth-child(3) { transition-delay: .25s; }
.stagger-children .reveal:nth-child(4) { transition-delay: .35s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
  }
  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .card-mockup-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .card-mockup {
    transform: perspective(800px) rotateY(0) rotateX(3deg);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    max-width: 400px;
    margin: 0 auto;
  }
  .steps-grid::before { display: none; }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-xl);
    z-index: 999;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .nav-toggle {
    display: flex;
    z-index: 1001;
  }
  .nav-actions .btn {
    display: none;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }
  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
    align-items: center;
  }
  .hero-stat { text-align: center; }

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

  .testimonial-stats-row {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .cta-card {
    padding: var(--space-3xl) var(--space-xl);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-lg);
  }
  .card-mockup {
    padding: var(--space-lg);
  }
  .floating-element {
    display: none;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}
