/* =============================================
   FESTOVEE — Premium B2B Landing Page Styles
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --orange: #F28C18;
  --orange-dark: #d97a0f;
  --orange-light: #ffa333;
  --orange-glow: rgba(242, 140, 24, 0.25);
  --orange-subtle: rgba(242, 140, 24, 0.08);

  --dark-1: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #1a1a24;
  --dark-4: #22222f;
  --dark-5: #2d2d3d;

  --white: #ffffff;
  --off-white: #f8f7f4;
  --text-primary: #f0ede8;
  --text-secondary: #a8a4a0;
  --text-muted: #6b6870;

  --border: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.04);

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-orange: 0 8px 30px rgba(242, 140, 24, 0.3);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--dark-1);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--orange-glow);
  color: var(--orange-light);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

/* ---------- Typography ---------- */
.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(242, 140, 24, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-subtle);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

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

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-xl {
  padding: 18px 40px;
  font-size: 17px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(1.05);
}

.logo-wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-dot {
  color: var(--orange);
}

.logo-icon {
  font-size: 20px;
}

.logo-text {
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(1.5);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(242, 140, 24, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.8) 70%, var(--dark-1) 100%);
}

/* Animated particles / mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(242, 140, 24, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(242, 140, 24, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(242, 140, 24, 0.03) 0%, transparent 50%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 24px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 140, 24, 0.1);
  border: 1px solid rgba(242, 140, 24, 0.25);
  color: var(--orange-light);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 2s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px 40px;
  backdrop-filter: blur(20px);
  flex-wrap: wrap;
  justify-content: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 32px;
}

.stat-number-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  width: 1.5px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--orange), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 1;
  }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: linear-gradient(90deg, rgba(242, 140, 24, 0.08), rgba(242, 140, 24, 0.12), rgba(242, 140, 24, 0.08));
  border-top: 1px solid rgba(242, 140, 24, 0.15);
  border-bottom: 1px solid rgba(242, 140, 24, 0.15);
  padding: 16px 0;
}

.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-label {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.trust-sep {
  color: var(--orange);
  font-size: 18px;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  background: var(--orange-subtle);
  border: 1px solid rgba(242, 140, 24, 0.2);
  color: var(--orange);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Features ---------- */
.features-section {
  background: linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
}

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

.feature-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(242, 140, 24, 0.05), transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 140, 24, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(242, 140, 24, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card--highlight {
  background: linear-gradient(135deg, rgba(242, 140, 24, 0.12), rgba(242, 140, 24, 0.04));
  border-color: rgba(242, 140, 24, 0.25);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--orange-subtle);
  border: 1px solid rgba(242, 140, 24, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 26px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- How It Works ---------- */
.how-section {
  background: var(--dark-2);
}

.steps-container {
  display: flex;
  gap: 0;
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
}

.step-card {
  flex: 1;
  min-width: 260px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
}

.step-card:not(:last-child) {
  margin-right: 40px;
}

.step-card::after {
  content: '→';
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 22px;
  opacity: 0.7;
}

.step-card:last-child::after {
  display: none;
}

.step-card:hover {
  border-color: rgba(242, 140, 24, 0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(242, 140, 24, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Audience ---------- */
.audience-section {
  background: var(--dark-1);
}

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

.audience-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}

.audience-card:hover {
  border-color: rgba(242, 140, 24, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.audience-emoji {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.audience-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.audience-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audience-benefits li {
  font-size: 13px;
  color: var(--orange-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.audience-benefits li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Stats Banner ---------- */
.stats-banner {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  position: relative;
  overflow: hidden;
}

.stats-bg-glow {
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 140, 24, 0.08), transparent 70%);
  pointer-events: none;
}

.stats-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.stats-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  color: var(--white);
}

.stats-text p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.stats-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  border-color: rgba(242, 140, 24, 0.3);
  transform: translateY(-3px);
}

.stat-box-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  display: inline;
}

.stat-box-plus {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  display: inline;
  vertical-align: super;
  font-size: 20px;
}

.stat-box-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--dark-1);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card--featured {
  background: linear-gradient(135deg, rgba(242, 140, 24, 0.1), rgba(242, 140, 24, 0.03));
  border-color: rgba(242, 140, 24, 0.25);
  transform: translateY(-12px);
}

.testimonial-card:hover {
  border-color: rgba(242, 140, 24, 0.3);
  transform: translateY(-6px);
}

.testimonial-card--featured:hover {
  transform: translateY(-16px);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  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-size: 14px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.author-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ---------- Pricing ---------- */
.pricing-section {
  background: var(--dark-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 140, 24, 0.3);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  background: linear-gradient(135deg, rgba(242, 140, 24, 0.12), rgba(242, 140, 24, 0.04));
  border-color: rgba(242, 140, 24, 0.3);
  box-shadow: 0 0 0 1px rgba(242, 140, 24, 0.1), var(--shadow-orange);
}

.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

.plan-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
}

.plan-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-check {
  width: 20px;
  height: 20px;
  background: rgba(242, 140, 24, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 28px;
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-glow--left {
  top: -200px;
  left: -150px;
  background: radial-gradient(circle, rgba(242, 140, 24, 0.1), transparent 70%);
}

.cta-glow--right {
  bottom: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(242, 140, 24, 0.08), transparent 70%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--white);
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Contact ---------- */
.contact-section {
  background: var(--dark-1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(242, 140, 24, 0.25);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-card h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact-card a {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.contact-card a:hover {
  color: var(--orange);
}

.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition-fast);
  width: 100%;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 140, 24, 0.12);
}

.form-group select option {
  background: var(--dark-4);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  color: #10b981;
  font-size: 15px;
  font-weight: 600;
  margin-top: 16px;
  padding: 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-md);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px 0;
  max-width: 280px;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-contact-link:hover {
  color: var(--orange);
}

.footer-links-group h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-links-group a:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge-item {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--dark-4);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}

/* ---------- Animations ---------- */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-0 {
  animation-delay: 0.1s;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.35s;
}

.delay-3 {
  animation-delay: 0.5s;
}

.delay-4 {
  animation-delay: 0.65s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .stats-banner-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .stats-text {
    align-items: center;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open .nav-cta-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-stats {
    padding: 16px;
    gap: 6px;
  }

  .stat-item {
    padding: 8px 14px;
  }

  .stat-number {
    font-size: 26px;
  }

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

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

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

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

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

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

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

  .footer-tagline {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .steps-container {
    flex-direction: column;
  }

  .step-card:not(:last-child) {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .step-card::after {
    content: '↓';
    bottom: -30px;
    right: 50%;
    top: auto;
    transform: translateX(50%);
  }

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

  .trust-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: -1px;
  }

  .stat-item {
    padding: 6px 10px;
  }

  .stat-divider {
    height: 24px;
  }

  .contact-form {
    padding: 24px;
  }
}