/* ==========================================
   FIXIVA — Landing Page Styles
   ========================================== */

/* --- DESIGN TOKENS --- */
:root {
  --bg-dark: #0D0D0D;
  --bg-card: #171717;
  --bg-card-2: #1E1E1E;
  --border: rgba(255,255,255,0.07);
  --border-glow: rgba(255,107,53,0.3);

  --accent-orange: #FF6B35;
  --accent-orange-2: #FF8C5A;
  --accent-amber: #F7C948;
  --accent-purple: #7C3AED;
  --accent-cyan: #06B6D4;
  --accent-green: #10B981;

  --text-primary: #F2F2F2;
  --text-secondary: #909090;
  --text-muted: #565656;

  --gradient-hero: linear-gradient(135deg, #FF6B35 0%, #F7C948 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B35, #F7C948);
  --gradient-cool: linear-gradient(135deg, #7C3AED, #06B6D4);
  --gradient-bg: linear-gradient(180deg, #0D0D0D 0%, #141414 50%, #0D0D0D 100%);

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

  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(255,107,53,0.15);
  --shadow-glow-strong: 0 0 60px rgba(255,107,53,0.25);

  --transition: 0.3s 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: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(255,107,53,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 80% 60%, rgba(247,201,72,0.03) 0%, transparent 60%);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(255,107,53,0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }

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

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-warm {
  background: linear-gradient(135deg, #F7C948 0%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.section-label.light {
  color: var(--accent-amber);
  background: rgba(247,201,72,0.1);
  border-color: rgba(247,201,72,0.2);
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-title.left { text-align: left; }

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.section-sub.left { margin: 0 0 40px; text-align: left; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-hero);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,107,53,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.5);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary-lg {
  background: var(--gradient-hero);
  color: #fff;
  font-size: 18px;
  padding: 18px 36px;
  box-shadow: 0 4px 24px rgba(255,107,53,0.35);
}
.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.5);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 15px;
  padding: 14px 24px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.navbar.scrolled {
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.3s;
}
.navbar.scrolled .nav-inner { padding: 14px 24px; }

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.logo-icon { font-size: 22px; }
.logo-text {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-primary); background: rgba(255,255,255,0.06); }
.nav-links a.nav-cta {
  background: var(--gradient-hero);
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 12px rgba(255,107,53,0.3);
}
.nav-links a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,107,53,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: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  position: relative;
  overflow: hidden;
  gap: 80px;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #FF6B35, transparent);
  top: -150px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #F7C948, transparent);
  top: 50%; right: -100px;
  animation-delay: 3s;
  opacity: 0.1;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #FF6B35, transparent);
  bottom: -100px; left: 40%;
  animation-delay: 6s;
  opacity: 0.12;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.8s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-subtitle em { font-style: normal; color: var(--accent-orange); font-weight: 600; }

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: left; }
.stat-number {
  display: block;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* --- PHONE MOCKUP --- */
.hero-visual {
  position: relative;
  flex-shrink: 0;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.phone-mockup {
  width: 280px;
  background: var(--bg-card);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow: 
    0 0 0 8px rgba(255,255,255,0.03),
    0 40px 80px rgba(0,0,0,0.6),
    var(--shadow-glow);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.phone-screen {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-header { /* notch simulation */ }
.phone-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-muted);
}
.phone-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}
.phone-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.phone-service-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}
.phone-service-chip.active {
  background: rgba(255,107,53,0.15);
  border-color: rgba(255,107,53,0.4);
  color: var(--accent-orange);
}
.phone-pro-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
}
.pro-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gradient-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.pro-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.pro-name {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.pro-role { font-size: 11px; color: var(--text-muted); }
.pro-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.stars { font-size: 10px; color: var(--accent-amber); }
.rating-val { font-size: 10px; color: var(--text-muted); }
.pro-badge-check {
  width: 20px; height: 20px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--accent-green);
  flex-shrink: 0;
}
.phone-book-btn {
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  padding: 12px;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,53,0.3);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 3;
}
.fc-icon { font-size: 22px; }
.fc-title {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.fc-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.card-1 {
  top: 30px;
  right: -130px;
  animation: float 5s ease-in-out infinite;
}
.card-2 {
  bottom: 80px;
  left: -130px;
  animation: float 5s ease-in-out infinite 2.5s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* --- TICKER --- */
.ticker-wrap {
  overflow: hidden;
  background: rgba(255,107,53,0.05);
  border-top: 1px solid rgba(255,107,53,0.1);
  border-bottom: 1px solid rgba(255,107,53,0.1);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}
.ticker-track .sep {
  color: var(--accent-orange);
  font-size: 10px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- HOW IT WORKS --- */
.how-it-works {
  text-align: center;
}
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  cursor: default;
}
.step-card:hover {
  border-color: rgba(255,107,53,0.3);
  box-shadow: 0 8px 40px rgba(255,107,53,0.1);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 900;
  color: rgba(255,107,53,0.08);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.step-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.step-icon { font-size: 28px; }
.step-card h3 {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.step-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.step-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,107,53,0.4), rgba(247,201,72,0.4));
  margin-top: 100px;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid rgba(247,201,72,0.6);
  border-right: 2px solid rgba(247,201,72,0.6);
  transform: rotate(45deg);
}

/* --- SERVICES / SKILL TILES --- */
.services-section {
  text-align: center;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(255,107,53,0.04) 0%, transparent 70%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Service tile — used in "Your Skill Has a Place Here" section */
.service-tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 14px 18px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.service-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-tile:hover::before { opacity: 0.05; }
.service-tile:hover {
  border-color: rgba(255,107,53,0.3);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.stile-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
  filter: drop-shadow(0 2px 6px rgba(255,107,53,0.2));
}
.service-tile h3 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}
.service-tile p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}
.stile-badge {
  position: absolute;
  top: 9px; right: 9px;
  font-size: 9px;
  font-weight: 700;
  font-family: var(--font-main);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--accent-orange);
  background: rgba(255,107,53,0.12);
  border: 1px solid rgba(255,107,53,0.25);
  border-radius: 100px;
  padding: 2px 7px;
}
.stile-badge.demand {
  color: var(--accent-green);
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.25);
}

/* Legacy service-card (kept for compatibility) */
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 0.04; }
.service-card:hover {
  border-color: rgba(255,107,53,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.service-card.featured {
  border-color: rgba(255,107,53,0.3);
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(247,201,72,0.04) 100%);
  box-shadow: 0 4px 24px rgba(255,107,53,0.1);
}
.svc-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 10px;
  font-weight: 600;
  font-family: var(--font-main);
  color: var(--accent-orange);
  background: rgba(255,107,53,0.1);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 3px 8px;
}
.svc-icon { font-size: 36px; margin-bottom: 12px; }
.service-card h3 {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.service-card p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }


/* --- WHY FIXIVA --- */
.why-section {
  background: rgba(255,255,255,0.01);
}
.why-inner {
  display: flex;
  gap: 80px;
  align-items: center;
}
.why-left { flex: 1; }
.why-right { flex: 1; }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-point:hover {
  border-color: rgba(255,107,53,0.2);
  box-shadow: 0 4px 20px rgba(255,107,53,0.06);
}
.wp-icon {
  font-size: 24px;
  width: 44px; height: 44px;
  background: rgba(255,107,53,0.08);
  border: 1px solid rgba(255,107,53,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
}
.why-point strong {
  display: block;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.why-point p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* Compare Card */
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.compare-title {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 700;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}
.compare-table { padding: 0; }
.compare-header {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.02);
}
.th {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fixiva-th { color: var(--accent-orange); }
.others-th { color: var(--text-muted); }
.compare-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  align-items: center;
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}
.compare-row:hover { background: rgba(255,255,255,0.02); }
.compare-feature { font-size: 14px; color: var(--text-secondary); }
.compare-val {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.compare-val.yes { color: var(--accent-green); }
.compare-val.no { color: rgba(255,255,255,0.15); }
.compare-val.partial { color: var(--accent-amber); }

/* --- PARTNER SECTION --- */
.partner-section {
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(255,107,53,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 50%, rgba(124,58,237,0.06) 0%, transparent 70%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.partner-bg-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.p-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}
.p-orb-1 { width: 600px; height: 600px; background: #FF6B35; top: -200px; left: -100px; }
.p-orb-2 { width: 400px; height: 400px; background: #7C3AED; bottom: -100px; right: -100px; }

.partner-inner {
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.partner-left { flex: 1; }
.partner-right { flex: 1; }

.partner-title {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.partner-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.partner-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.perk:hover { border-color: rgba(255,107,53,0.2); background: rgba(255,107,53,0.03); }
.perk-icon { font-size: 22px; }
.perk-text { display: flex; flex-direction: column; }
.perk-text strong {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.perk-text span { font-size: 13px; color: var(--text-secondary); }

.spots-counter {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.spots-bar-wrap {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}
.spots-bar {
  height: 100%;
  background: var(--gradient-warm);
  border-radius: 100px;
  transition: width 1.5s ease;
}
.spots-text { font-size: 14px; color: var(--text-secondary); }
.spots-text strong { color: var(--accent-orange); }

/* --- FORM --- */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.form-header { margin-bottom: 28px; }
.form-badge {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-amber);
  background: rgba(247,201,72,0.1);
  border: 1px solid rgba(247,201,72,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 14px;
}
.form-header h3 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-header p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255,107,53,0.5);
  background: rgba(255,107,53,0.04);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.08);
}
.form-group input.error { border-color: rgba(255,80,80,0.5); }

.input-prefix-wrap {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  background: rgba(255,255,255,0.04);
}
.input-prefix-wrap:focus-within {
  border-color: rgba(255,107,53,0.5);
  box-shadow: 0 0 0 3px rgba(255,107,53,0.08);
}
.input-prefix {
  padding: 14px 14px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid var(--border);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.input-prefix-wrap input {
  border: none;
  background: transparent;
  border-radius: 0;
  flex: 1;
}
.input-prefix-wrap input:focus {
  border: none;
  box-shadow: none;
  background: transparent;
}

.select-wrap { position: relative; }
.select-wrap select { padding-right: 44px; cursor: pointer; }
.select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

/* ---- SEARCHABLE COMBOBOX ---- */
.combobox-wrap {
  position: relative;
}

.combobox-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.combobox-input {
  width: 100%;
  padding: 14px 44px 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: var(--transition);
  cursor: text;
}
.combobox-input::placeholder { color: var(--text-muted); }
.combobox-input:focus {
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255, 107, 53, 0.04);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.08);
}
.combobox-input.error { border-color: rgba(255, 80, 80, 0.5); }

/* Chevron icon inside the input */
.combobox-chevron {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: transform 0.25s ease, color 0.2s;
  display: flex;
  align-items: center;
}
.combobox-wrap[aria-expanded="true"] .combobox-chevron {
  transform: translateY(-50%) rotate(180deg);
  color: var(--accent-orange);
}

/* Dropdown listbox */
.combobox-listbox {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255, 107, 53, 0.25);
  border-radius: 12px;
  padding: 6px;
  margin: 0;
  list-style: none;
  z-index: 200;
  max-height: 220px;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 107, 53, 0.08);
  animation: comboboxOpen 0.18s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.combobox-listbox[hidden] { display: none; }

@keyframes comboboxOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scrollbar inside listbox */
.combobox-listbox::-webkit-scrollbar { width: 4px; }
.combobox-listbox::-webkit-scrollbar-track { background: transparent; }
.combobox-listbox::-webkit-scrollbar-thumb { background: rgba(255, 107, 53, 0.3); border-radius: 4px; }

/* Individual option */
.combobox-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  transition: background 0.15s, color 0.15s;
  user-select: none;
  outline: none;
}
.combobox-option:hover,
.combobox-option[aria-selected="true"] {
  background: rgba(255, 107, 53, 0.1);
  color: var(--text-primary);
}
.combobox-option.combobox-active {
  background: rgba(255, 107, 53, 0.14);
  color: var(--text-primary);
  outline: none;
}
.combobox-option .opt-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 26px;
  text-align: center;
}
.combobox-option .opt-label { flex: 1; line-height: 1.3; }
/* Highlighted matched characters */
.combobox-option .opt-label mark {
  background: none;
  color: var(--accent-orange);
  font-weight: 700;
}

/* Empty / no-results message */
.combobox-empty {
  padding: 14px 12px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
}


.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--gradient-hero);
  color: #fff;
  font-size: 16px;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(255,107,53,0.35);
  font-family: var(--font-main);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,53,0.5);
}
.btn-submit:active { transform: scale(0.98); }

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

/* Datalist combo-box styling */
input[list] {
  cursor: text;
}
input[list]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
  filter: invert(1);
}

/* Select dropdown option background (dark theme) */
.form-group select option {
  background: #1E1E1E;
  color: var(--text-primary);
}
.form-group select option:disabled {
  color: var(--text-muted);
}

/* Service chip display */
.service-chip-display {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 0;
}
.service-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.35);
  color: var(--accent-orange);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  animation: fadeInUp 0.25s ease both;
}
.service-chip .chip-icon { font-size: 15px; }

/* Optional label tag */
.optional-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
  letter-spacing: 0;
  text-transform: none;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
  animation: fadeInUp 0.5s ease both;
}
.success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.success-actions { display: flex; justify-content: center; gap: 12px; }

/* --- TESTIMONIALS --- */
.testimonials-section { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: rgba(255,107,53,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.testi-stars { font-size: 16px; color: var(--accent-amber); margin-bottom: 16px; }
.testi-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.testi-author span { font-size: 12px; color: var(--text-muted); }

/* --- CTA BANNER --- */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.08) 0%, rgba(124,58,237,0.06) 100%);
  border-top: 1px solid rgba(255,107,53,0.1);
  border-bottom: 1px solid rgba(255,107,53,0.1);
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner-text h2 {
  font-family: var(--font-main);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cta-banner-text p {
  font-size: 16px;
  color: var(--text-secondary);
}

/* --- FOOTER --- */
.footer { padding: 80px 0 40px; }
.footer-inner {
  display: flex;
  gap: 80px;
  justify-content: space-between;
  margin-bottom: 60px;
}
.footer-brand { max-width: 280px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 16px 0 24px;
}
.footer-logo .logo-text { font-size: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(255,107,53,0.1);
  border-color: rgba(255,107,53,0.3);
  color: var(--accent-orange);
  transform: translateY(-2px);
}
.footer-links { display: flex; gap: 60px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col h4 {
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent-orange); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-bottom a { color: var(--accent-orange); text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE --- */
@media (max-width: 1100px) {
  .hero { flex-direction: column; text-align: center; gap: 60px; padding-top: 140px; }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-cta-group { justify-content: center; }
  .hero-stats { justify-content: center; }
  .card-1 { top: -30px; right: -60px; }
  .card-2 { bottom: 20px; left: -60px; }
  .why-inner { flex-direction: column; gap: 60px; }
  .partner-inner { flex-direction: column; gap: 60px; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-connector { width: 2px; height: 32px; margin-top: 0; }
  .step-connector::after { right: -4px; top: auto; bottom: -6px; transform: rotate(135deg); }
  .footer-inner { flex-direction: column; gap: 48px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(8,8,14,0.98); border-bottom: 1px solid var(--border); padding: 16px 24px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .nav-inner { position: relative; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-tile { padding: 16px 10px 14px; }
  .stile-icon { font-size: 26px; }
  .service-tile h3 { font-size: 12px; }
  .service-tile p { font-size: 11px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .section { padding: 72px 0; }
  .form-card { padding: 24px; }
  .phone-mockup { width: 240px; }
  .floating-card { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
}
