/* ===========================
   SKYRISE MARKETING — styles.css
   Premium Hot Air Balloon Agency Website
   =========================== */

@import url('https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  color: #18181b;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* === DESIGN TOKENS === */
:root {
  --orange: #6366f1;
  --orange-rgb: 99, 102, 241;
  --orange-dark: #4f46e5;
  --purple: #a855f7;
  --purple-rgb: 168, 85, 247;
  --purple-dark: #7c3aed;
  --cyan: #06b6d4;
  --pink: #ec4899;
  --green: #10b981;
  --amber: #fbbf24;
  --bg-dark: #ffffff;
  --bg-card: #f9f9fb;
  --bg-card-hover: #f1f1f4;
  --border: rgba(0,0,0,0.08);
  --text-muted: #52525b;
  --text-light: #18181b;
  --gradient-orange: linear-gradient(135deg, #6366f1, #a855f7);
  --gradient-purple: linear-gradient(135deg, #a855f7, #7c3aed);
  --gradient-hero: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow-glow: 0 10px 30px rgba(99,102,241,0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Satoshi', sans-serif;
  --font-accent: 'Bebas Neue', sans-serif;
}

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-light {
  background: linear-gradient(135deg, #fbbf24, #6366f1, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-orange);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(var(--orange-rgb), 0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #818cf8, #6366f1);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(var(--orange-rgb), 0.5); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #18181b;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.02);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.btn-secondary:hover { background: rgba(0,0,0,0.05); border-color: rgba(0,0,0,0.25); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--orange);
  background: transparent;
  transition: var(--transition);
}
.btn-outline:hover { background: var(--orange); color: white; transform: translateY(-2px); }

/* === SECTION BADGES === */
.section-badge {
  display: inline-block;
  background: rgba(var(--orange-rgb), 0.15);
  color: var(--orange);
  padding: 6px 18px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(var(--orange-rgb), 0.3);
  margin-bottom: 20px;
}
.section-badge.light {
  background: rgba(251,191,36,0.1);
  color: #d97706;
  border-color: rgba(251,191,36,0.3);
}

/* === SECTION TITLES === */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #09090b;
}
.section-title.light { color: #09090b; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
  line-height: 1.7;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: #09090b;
}
.logo-icon { font-size: 1.6rem; }
.logo-accent { color: var(--orange); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  color: rgba(24,24,27,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover { color: #09090b; background: rgba(0,0,0,0.04); }
.nav-cta-btn {
  background: var(--gradient-orange);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--font-heading);
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(var(--orange-rgb), 0.35);
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--orange-rgb), 0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #09090b; border-radius: 2px; transition: var(--transition); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero_balloons.png') center center / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(var(--orange-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(var(--purple-rgb), 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 60% 80%, rgba(236,72,153,0.05) 0%, transparent 50%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23000000' fill-opacity='0.01'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.92) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 140px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--orange-rgb), 0.08);
  border: 1px solid rgba(var(--orange-rgb), 0.2);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #09090b;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #27272a;
  font-weight: 500;
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fadeInUp 0.8s 0.4s ease both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.8s 0.6s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f9f9fb;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 24px 40px;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.8s 0.8s ease both;
}
.stat-item { text-align: center; flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-accent);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--orange);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: #52525b;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}
/* ── VSL VIDEO EMBED ── */
.hero-vsl {
  width: 100%;
  max-width: 860px;
  margin: 32px auto 0;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.vsl-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(var(--orange-rgb), 0.3),
    0 24px 64px rgba(0,0,0,0.5),
    0 0 40px rgba(var(--orange-rgb), 0.12);
  background: #000;
}
.vsl-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 16px;
}
.vsl-caption {
  text-align: center;
  color: rgba(0, 0, 0, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 12px;
  letter-spacing: 0.02em;
}

.hero-scroll {

  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,0.4);
  font-size: 0.75rem;
  z-index: 2;
}
.scroll-indicator {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(0,0,0,0.25);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 6px;
  background: rgba(0,0,0,0.5);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce { 0%, 100% { top: 6px; opacity: 1; } 50% { top: 14px; opacity: 0.3; } }

/* === TRUST BAR === */
.trust-bar {
  background: rgba(0,0,0,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-bar .container { display: flex; align-items: center; gap: 32px; justify-content: center; flex-wrap: wrap; }
.trust-label { color: var(--text-muted); font-size: 0.85rem; white-space: nowrap; }
.trust-countries { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.trust-countries span {
  color: rgba(24,24,27,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 4px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  transition: var(--transition);
}
.trust-countries span:hover { border-color: var(--orange); color: var(--orange); }

/* === PROBLEM SECTION === */
.problem-section {
  padding: 100px 0;
  text-align: center;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 60px 0 50px;
  text-align: left;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(var(--orange-rgb), 0.04));
  opacity: 0;
  transition: var(--transition);
}
.problem-card:hover { border-color: rgba(var(--orange-rgb), 0.3); transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,0.06); }
.problem-card:hover::before { opacity: 1; }
.problem-card.featured {
  border-color: rgba(var(--orange-rgb), 0.4);
  background: linear-gradient(135deg, rgba(var(--orange-rgb), 0.08), rgba(var(--purple-rgb), 0.05));
}
.problem-icon { font-size: 2.5rem; margin-bottom: 20px; }
.problem-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 12px;
}
.problem-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.problem-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.problem-cta p { color: var(--text-muted); font-size: 1.05rem; }
.problem-cta strong { color: #09090b; }

/* === ABOUT === */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #f4f4f5 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-badge { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }
.about-text strong { color: #09090b; }
.about-text em { color: var(--orange); font-style: normal; }
.about-text .btn-outline { margin-top: 12px; }
.about-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-card-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.about-card-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-orange);
  border-radius: 4px 0 0 4px;
}
.about-card-stat.accent { background: linear-gradient(135deg, rgba(var(--orange-rgb), 0.06), rgba(var(--purple-rgb), 0.04)); border-color: rgba(var(--orange-rgb), 0.3); }
.about-card-stat:hover { transform: translateX(8px); border-color: rgba(var(--orange-rgb), 0.4); }
.big-num {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-label { color: var(--text-muted); font-size: 0.9rem; }

/* === SERVICES === */
.services-section {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
  text-align: left;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-orange);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(var(--orange-rgb), 0.3); box-shadow: 0 24px 48px rgba(0,0,0,0.06); }
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured-service {
  border-color: rgba(var(--orange-rgb), 0.4);
  background: linear-gradient(135deg, rgba(var(--orange-rgb), 0.08), rgba(var(--purple-rgb), 0.05));
}
.featured-badge {
  display: inline-block;
  background: var(--gradient-orange);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.orange-grad { background: var(--gradient-orange); }
.purple-grad { background: var(--gradient-purple); }
.cyan-grad { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.pink-grad { background: linear-gradient(135deg, #ec4899, #be185d); }
.green-grad { background: linear-gradient(135deg, #10b981, #059669); }
.amber-grad { background: linear-gradient(135deg, #f59e0b, #d97706); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #09090b;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-features { display: flex; flex-direction: column; gap: 8px; }
.service-features li { color: var(--text-light); font-size: 0.85rem; padding-left: 4px; }

/* === RESULTS === */
.results-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f4f4f5 0%, #ffffff 50%, #f4f4f5 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.results-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(var(--orange-rgb), 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(var(--purple-rgb), 0.15) 0%, transparent 60%);
}
.results-section .container { position: relative; z-index: 1; }
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0 80px;
}
.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 24px;
  transition: var(--transition);
}
.result-card:hover { transform: translateY(-6px); background: var(--bg-card-hover); border-color: rgba(var(--orange-rgb), 0.4); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.result-number {
  font-family: var(--font-accent);
  font-size: 3.8rem;
  font-weight: 900;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.result-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.testimonials { margin-top: 80px; }
.testimonials-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #09090b;
  margin-bottom: 40px;
}
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(var(--orange-rgb), 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.av-orange { background: var(--gradient-orange); }
.av-purple { background: var(--gradient-purple); }
.av-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.testimonial-author strong { display: block; color: #09090b; font-size: 0.95rem; }
.testimonial-author span { color: var(--text-muted); font-size: 0.82rem; }

/* === HOW IT WORKS === */
.how-section {
  padding: 100px 0;
  text-align: center;
  background: #ffffff;
}
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 60px 0 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: left;
}
.steps-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--purple));
}
.step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(var(--orange-rgb), 0.2);
}
.step-content { flex: 1; }
.step-phase {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #09090b;
  margin-bottom: 14px;
}
.step-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.step-content ul { display: flex; flex-direction: column; gap: 8px; }
.step-content li {
  color: var(--text-light);
  font-size: 0.9rem;
  padding-left: 20px;
  position: relative;
}
.step-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}
.process-cta { display: flex; justify-content: center; margin-top: 20px; }

/* === FAQ === */
.faq-section {
  padding: 100px 0;
  text-align: center;
  background: #f9f9fb;
}
.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(var(--orange-rgb), 0.4); box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #09090b;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-arrow { flex-shrink: 0; transition: transform 0.3s ease; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* === BOOK A CALL === */
.book-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.book-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9fb 50%, #ffffff 100%);
}
.book-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(var(--orange-rgb), 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 50%, rgba(var(--purple-rgb), 0.08) 0%, transparent 60%);
}
.book-section .container { position: relative; z-index: 1; }
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.book-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #09090b;
  line-height: 1.2;
  margin-bottom: 20px;
}
.book-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.book-benefits { display: flex; flex-direction: column; gap: 20px; }
.book-benefit {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  transition: var(--transition);
}
.book-benefit:hover { border-color: rgba(var(--orange-rgb), 0.3); background: var(--bg-card-hover); }
.benefit-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.book-benefit strong { display: block; color: #09090b; font-size: 0.95rem; margin-bottom: 4px; }
.book-benefit span { color: var(--text-muted); font-size: 0.88rem; }

/* FORM */
.booking-form-card {
  background: #ffffff;
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.booking-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #09090b;
  margin-bottom: 6px;
}
.form-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { color: #27272a; font-size: 0.85rem; font-weight: 600; }
.form-group input,
.form-group select {
  background: #f9f9fb;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  color: #09090b;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  width: 100%;
  outline: none;
}
.form-group input::placeholder { color: #a1a1aa; }
.form-group select option { background: #ffffff; color: #09090b; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(var(--orange-rgb), 0.1);
}
.btn-form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-orange);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 18px 32px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(var(--orange-rgb), 0.4);
  margin-top: 8px;
  width: 100%;
}
.btn-form-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(var(--orange-rgb), 0.5); }
.form-privacy { text-align: center; color: var(--text-muted); font-size: 0.8rem; }
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 4rem; margin-bottom: 20px; }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #09090b;
  margin-bottom: 12px;
}
.form-success p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }

/* === FOOTER & ASK AI === */
.ask-ai-section {
  text-align: center;
  padding: 0 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 60px;
}
.ask-ai-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #09090b;
  margin-bottom: 24px;
}
.ask-ai-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ask-ai-buttons a {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  transition: var(--transition);
  background: var(--bg-card);
}
.ask-ai-buttons a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ask-ai-buttons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.footer {
  background: #f9f9fb;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 20px; }
.footer-brand > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { background: var(--orange); border-color: var(--orange); color: white; transform: translateY(-3px); }
.footer-links h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #09090b;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-cta-box {
  margin-top: 24px;
  background: rgba(var(--orange-rgb), 0.08);
  border: 1px solid rgba(var(--orange-rgb), 0.25);
  border-radius: 14px;
  padding: 20px;
}
.footer-cta-box p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 12px; }
.btn-footer-cta {
  display: inline-block;
  background: var(--gradient-orange);
  color: white !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  transition: var(--transition);
}
.btn-footer-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--orange-rgb), 0.4); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.85rem; transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: none; }
}
.observe-me {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.observe-me.visible {
  opacity: 1;
  transform: none;
}

/* === GUARANTEE SECTION === */
.guarantee-section {
  padding: 100px 0 60px;
  background: #ffffff;
  text-align: center;
}
.guarantee-card {
  max-width: 800px;
  margin: 0 auto;
  background: radial-gradient(circle at top left, rgba(var(--orange-rgb), 0.05) 0%, rgba(168,85,247,0.02) 100%), var(--bg-card);
  border: 2px solid rgba(var(--orange-rgb), 0.2);
  border-radius: var(--radius);
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05), 0 0 30px rgba(var(--orange-rgb), 0.04);
  position: relative;
  overflow: hidden;
}
.guarantee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-orange);
}
.guarantee-badge-wrap {
  margin-bottom: 20px;
}
.guarantee-badge {
  display: inline-block;
  background: rgba(var(--orange-rgb), 0.1);
  border: 1px solid rgba(var(--orange-rgb), 0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.guarantee-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: #09090b;
  margin-bottom: 20px;
}
.guarantee-divider {
  width: 80px;
  height: 3px;
  background: var(--gradient-orange);
  margin: 0 auto 24px;
  border-radius: 2px;
}
.guarantee-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto 32px;
}
.guarantee-seal {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
}
.seal-icon {
  font-size: 1.4rem;
}
.seal-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #d97706;
  letter-spacing: 0.02em;
}

/* === EXCLUSIVITY ALERT === */
.exclusivity-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(239, 68, 68, 0.04);
  border: 1.5px solid rgba(239, 68, 68, 0.25);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
}
.exclusivity-icon {
  font-size: 1.25rem;
  line-height: 1;
}
.exclusivity-text {
  font-size: 0.85rem !important;
  color: #b91c1c !important;
  line-height: 1.5 !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .guarantee-card { padding: 36px 20px; }
}

/* === BLOG SECTION === */
.blog-section {
  padding: 100px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  text-decoration: none;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.04);
  border-color: rgba(var(--orange-rgb), 0.2);
}
.blog-image-wrap {
  height: 200px;
  position: relative;
  background: linear-gradient(135deg, rgba(var(--orange-rgb), 0.1), rgba(var(--purple-rgb), 0.1));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-image-wrap::before {
  content: '🎈';
  font-size: 4rem;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-image-wrap::before {
  transform: scale(1.15) translateY(-5px);
}
.blog-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(var(--orange-rgb), 0.08);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.blog-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #09090b;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.blog-card:hover h3 {
  color: var(--orange);
}
.blog-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.blog-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #09090b;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-readmore svg {
  transition: transform 0.3s ease;
}
.blog-card:hover .blog-readmore {
  color: var(--orange);
}
.blog-card:hover .blog-readmore svg {
  transform: translateX(4px);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 8px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-stats { flex-direction: column; gap: 20px; padding: 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .steps-timeline::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .results-grid { grid-template-columns: 1fr; }
  .booking-form-card { padding: 28px 20px; }
}
