/*
Theme Name: LedFlo
Theme URI: https://ledflo.com
Author: LedFlo
Description: Premium web agency theme for LedFlo Nepal
Version: 2.0
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #070B14;
  --white: #FFFFFF;
  --gold: #D4A853;
  --gold-light: #F0D078;
  --gold-dark: #C49A3C;
  --gold-glow: rgba(212,168,83,0.15);
  --surface: #0D1117;
  --surface2: #161B22;
  --surface3: #1C2333;
  --border: rgba(212,168,83,0.12);
  --border-bright: rgba(212,168,83,0.25);
  --text-muted: #8B949E;
  --text-body: #C9D1D9;
  --glass-bg: rgba(13,17,23,0.7);
  --glass-border: rgba(212,168,83,0.08);
  --font-display: 'Outfit', 'Helvetica Neue', sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-w: 1200px;
  --section-pad: 120px 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: #070B14 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ── WordPress admin bar: fully suppressed ── */
#wpadminbar,
#wpadminbar *          { display: none !important; height: 0 !important; }
html.wp-toolbar        { padding-top: 0 !important; margin-top: 0 !important; }
body.admin-bar         { margin-top: 0 !important; padding-top: 0 !important; }
body.admin-bar .nav    { top: 0 !important; }

body {
  background: var(--black);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.08;
  font-weight: 600;
}

.display-1 { font-size: clamp(40px, 5.5vw, 76px); letter-spacing: -0.03em; font-weight: 700; }
.display-2 { font-size: clamp(34px, 4.5vw, 60px); letter-spacing: -0.025em; font-weight: 600; }
.display-3 { font-size: clamp(26px, 3vw, 40px); font-weight: 600; }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.gold { color: var(--gold); }
.italic { font-style: italic; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: 0.6s;
}
.btn:hover::after { left: 100%; }

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
  font-weight: 600;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212,168,83,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 14px 28px;
  font-size: 13px;
}
.btn-ghost:hover { border-color: var(--gold); background: rgba(212,168,83,0.06); }

.btn svg { width: 16px; height: 16px; transition: transform 0.25s; }
.btn:hover svg { transform: translateX(4px); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(212,168,83,0.6);
  pointer-events: none;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.nav.scrolled {
  background: rgba(7,11,20,0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: none;
  border-bottom: 1px solid rgba(212,168,83,0.15);
  box-shadow: 0 2px 32px rgba(0,0,0,0.4);
  padding: 16px 0;
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  color: var(--white);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
  line-height: 1;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  z-index: 1001;
  border: none;
  background: none;
  outline: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7,11,20,0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 600;
  color: var(--white);
  padding: 16px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s, color 0.2s;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu.open a:nth-child(7) { transition-delay: 0.4s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn {
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.45s, transform 0.4s 0.45s;
}
.mobile-menu.open .btn {
  opacity: 1;
  transform: translateY(0);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,168,83,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(212,168,83,0.03) 0%, transparent 60%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  from { transform: translate(0, 0); }
  to   { transform: translate(80px, 80px); }
}

/* Animated Gradient Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
.hero-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,168,83,0.2), transparent 70%);
  top: 10%; right: 10%;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(196,154,60,0.15), transparent 70%);
  bottom: 20%; left: 5%;
  animation-delay: -4s;
}
.hero-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(240,208,120,0.1), transparent 70%);
  top: 60%; right: 30%;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-body);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.hero-stats {
  display: flex;
  gap: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  font-weight: 700;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: var(--section-pad); }

.section-header {
  margin-bottom: 72px;
}
.section-header .label { margin-bottom: 16px; display: block; }
.section-header p {
  font-size: 17px;
  color: var(--text-body);
  max-width: 540px;
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker::before,
.ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface), transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 25s linear infinite;
  width: max-content;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(212,168,83,0.4);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--black); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--gold-glow), transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  border-radius: var(--radius-xl);
}

.service-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 28px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}

.service-features li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
}

.seo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 8px 20px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.seo-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.seo-exclusive {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 28px;
}

.seo-exclusive-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.seo-exclusive p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--surface); }

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

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 28px;
  right: calc(25% - 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 50%, rgba(212,168,83,0.2) 100%);
}

.process-step {
  padding: 0 28px 0 0;
  position: relative;
}

.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-bright);
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  transition: all var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(212,168,83,0.3);
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--black); }

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

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-4px);
}
.testimonial-card:hover::before { opacity: 1; }

.testimonial-quote-mark {
  position: absolute;
  top: 20px; right: 28px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(212,168,83,0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
}

.star {
  color: var(--gold);
  font-size: 14px;
}

.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
}
.author-role {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonial-result {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,83,0.06);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 11px;
  color: var(--gold);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing { background: var(--surface); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-bright);
}

.pricing-card.featured {
  border-color: var(--gold-dark);
  background: linear-gradient(180deg, rgba(212,168,83,0.04) 0%, var(--surface2) 100%);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.pricing-tag {
  display: inline-block;
  background: rgba(212,168,83,0.1);
  color: var(--gold);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.pricing-amount {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.pricing-amount .amount {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  line-height: 1;
  font-weight: 700;
}
.pricing-amount .currency {
  font-size: 24px;
  vertical-align: super;
  color: var(--gold);
}
.pricing-amount .note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}

.pricing-features li.highlight-copy {
  background: linear-gradient(90deg, rgba(212,168,83,0.15), transparent);
  border-left: 2px solid var(--gold);
  padding: 8px 12px 8px 10px;
  border-radius: 0 4px 4px 0;
  color: var(--white);
  font-weight: 500;
  margin-left: -2px; /* align with others considering border */
}

.price-strike {
  font-size: 24px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 12px;
  font-weight: 400;
  vertical-align: super;
}

.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check::after {
  content: '✓';
  font-size: 11px;
  color: var(--gold);
}

.pricing-locked {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 32px;
}
.pricing-locked p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}
.pricing-locked strong { color: var(--gold); font-weight: 500; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--black); }

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: var(--surface);
  text-align: left;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s;
  gap: 20px;
}
.faq-q:hover { background: var(--surface2); }

.faq-icon {
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
  opacity: 0;
  background: var(--surface);
}
.faq-a-inner {
  padding: 0 32px 24px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 400px;
  opacity: 1;
}

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-section {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,168,83,0.08) 0%, transparent 70%);
  pointer-events: none;
}

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

.contact-info {
  position: sticky;
  top: 120px;
}
.contact-info h2 {
  margin-bottom: 20px;
}
.contact-info > p {
  font-size: 17px;
  color: var(--text-body);
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}
.contact-benefits li .benefit-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,168,83,0.08);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

.contact-trust {
  display: flex;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Form Container */
.contact-form-wrap {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group.full-width {
  grid-column: 1 / -1;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.form-label .required {
  color: var(--gold);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,83,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%238B949E'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-select option {
  background: var(--surface2);
  color: var(--white);
}

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

.form-error {
  font-size: 12px;
  color: #f85149;
  margin-top: 6px;
  display: none;
}
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #f85149;
}
.form-group.error .form-error {
  display: block;
}

.form-submit {
  width: 100%;
  padding: 18px;
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
  position: relative;
}
.form-submit .btn-text {
  transition: opacity 0.2s;
}
.form-submit.loading .btn-text {
  opacity: 0;
}
.form-submit .spinner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px;
  border: 2px solid transparent;
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: none;
}
.form-submit.loading .spinner {
  display: block;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success State */
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
}
.form-success.show {
  display: block;
}
.form-success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(212,168,83,0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--gold);
  animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 600;
}
.form-success p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 56px 0 32px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-logo span { color: var(--gold); }

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 240px;
  line-height: 1.65;
}

.footer-email {
  font-size: 14px;
  color: var(--gold);
  margin-top: 12px;
  display: block;
  transition: opacity 0.2s;
}
.footer-email:hover { opacity: 0.8; }

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h5 {
  font-size: 12px;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   FOUNDER MESSAGE
   ============================================================ */
.founder-message {
  background: var(--black);
  padding: 40px 0 100px;
}
.founder-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 56px 40px;
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.founder-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.founder-quote-mark {
  position: absolute;
  top: 24px; left: 32px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(212,168,83,0.06);
  line-height: 1;
  pointer-events: none;
}
.founder-text {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  color: var(--white);
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
  font-style: italic;
}
.founder-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.founder-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 4px 16px rgba(212,168,83,0.25);
}
.founder-meta {
  text-align: left;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 4px;
}
.founder-role {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.35);
  transition: all 0.3s;
}
.float-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 36px rgba(37,211,102,0.5);
}
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* WhatsApp Pulse Ring */
.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: waPulse 2s ease-out infinite;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.12s; }
.fade-up:nth-child(3) { transition-delay: 0.24s; }
.fade-up:nth-child(4) { transition-delay: 0.36s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info {
    position: static;
  }
}

@media (max-width: 900px) {
  :root { --section-pad: 80px 0; }

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

  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { gap: 32px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .service-card { padding: 36px 28px; }
  .pricing-card { padding: 36px 28px; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-trust { flex-wrap: wrap; gap: 16px; }
  .hero { padding: 140px 0 80px; }
  .hero-stat-num { font-size: 36px; }
  .hero-stats { gap: 24px; }
  .display-1 { font-size: clamp(36px, 8vw, 48px); }
}





