/* ============================
   ROOT VARIABLES & RESET
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --black: #050505;
  --white: #f5f3ef;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #8a6c28;
  --charcoal: #111111;
  --mid: #1e1e1e;
  --surface: #161616;
  --muted: #888;
  --border: rgba(201, 168, 76, 0.18);
  --green: #25d366;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.15);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.5);
  --radius: 4px;
  --radius-lg: 12px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-overflow-scrolling: touch;
}

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

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

/* ============================
   CUSTOM SCROLLBAR
   ============================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ============================
   NOISE TEXTURE OVERLAY
   ============================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.1; }
.display { font-family: var(--font-display); letter-spacing: 0.02em; }
p { font-family: var(--font-body); font-weight: 300; }

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ============================
   REUSABLE COMPONENTS
   ============================ */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 100%, 10px 100%);
  transition: var(--transition);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.btn-primary:hover::after { transform: scaleX(1); }
.btn-primary:hover { color: var(--black); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; transition: transform var(--transition-fast); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 35px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover { border-color: rgba(201, 168, 76, 0.35); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.card:hover::before { opacity: 1; }

/* ============================
   NAVBAR
   ============================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
  padding: 12px 0;
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .logo-accent { color: var(--gold); }
.nav-logo .logo-dot { 
  width: 6px; height: 6px; 
  background: var(--gold); 
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700 !important;
  padding: 10px 22px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 100%, 8px 100%);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-light); color: var(--black) !important; }

.navbar-toggler {
  border: 1px solid var(--border) !important;
  padding: 6px 10px !important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201, 168, 76, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
    var(--black);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-number {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 220px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.1);
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  pointer-events: none;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease forwards;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 1.5s infinite; }

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-headline .line-gold {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  display: block;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  animation: fadeInUp 0.8s 0.6s ease both;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeInUp 0.8s 0.8s ease both;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  animation: fadeInRight 1s 0.3s ease both;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  height: 600px;
  filter: grayscale(20%);
}
.hero-image-frame {
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.hero-image-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  animation: float 3s ease-in-out infinite;
}
.hero-badge-icon { font-size: 1.8rem; }
.hero-badge-text { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-badge-val { font-family: var(--font-heading); font-weight: 800; font-size: 1.1rem; color: var(--white); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ============================
   MARQUEE TICKER
   ============================ */
.ticker-wrap {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--black);
  letter-spacing: 0.08em;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ticker-item::after {
  content: '◆';
  font-size: 0.5rem;
}

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

/* ============================
   SERVICES SECTION
   ============================ */
#services {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
}

.services-header {
  margin-bottom: 4rem;
}
.services-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 600px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 1.5rem;
}
.service-icon img { width: 28px; height: 28px; object-fit: contain; filter: brightness(10) sepia(1) hue-rotate(0deg) saturate(5); }

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(201, 168, 76, 0.06);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
  transition: var(--transition);
}
.service-card:hover .service-num { color: rgba(201, 168, 76, 0.12); }

.service-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--white);
}
.service-desc {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 100px;
  color: var(--gold);
}

/* ============================
   DONE FOR YOU SECTION
   ============================ */
#dfy {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.dfy-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
}

.dfy-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.dfy-sub { color: var(--muted); font-size: 1.05rem; font-weight: 300; max-width: 480px; margin-bottom: 2.5rem; }

.dfy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.dfy-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: var(--transition-fast);
}
.dfy-step:last-child { border-bottom: none; }
.dfy-step:hover .dfy-step-content h4 { color: var(--gold); }

.dfy-step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.5;
  min-width: 50px;
  line-height: 1;
  transition: var(--transition-fast);
}
.dfy-step:hover .dfy-step-num { opacity: 1; }

.dfy-step-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
  transition: var(--transition-fast);
}
.dfy-step-content p { color: var(--muted); font-size: 0.875rem; }

.dfy-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.dfy-image img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: grayscale(30%);
  display: block;
}
.dfy-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, transparent 60%);
  border-radius: var(--radius-lg);
}
.dfy-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  line-height: 1.3;
}

/* ============================
   PRICING SECTION
   ============================ */
#pricing {
  padding: 120px 0;
  background: var(--charcoal);
}

.pricing-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-sub { text-align: center; color: var(--muted); max-width: 520px; margin: 0 auto 4rem; }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  background: var(--mid);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold), inset 0 0 60px rgba(201, 168, 76, 0.03);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.pricing-badge {
  position: absolute;
  top: 0; right: 24px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 0 0 10px 10px;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.pricing-desc { color: var(--muted); font-size: 0.875rem; margin-bottom: 2rem; }

.pricing-price {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.pricing-amount.featured-amount { color: var(--gold); }
.pricing-currency { font-size: 1rem; font-weight: 700; vertical-align: top; margin-top: 5px; display: inline-block; }
.pricing-period { color: var(--muted); font-size: 0.78rem; margin-top: 4px; }

.pricing-features { list-style: none; margin-bottom: 2rem; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features .check {
  color: var(--gold);
  font-size: 14px;
  min-width: 18px;
  margin-top: 2px;
}
.pricing-features li strong { color: var(--white); }

/* ============================
   AI FEATURES SECTION
   ============================ */
#ai-features {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.ai-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 80% 100%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.ai-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 1rem;
}
.ai-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 4rem; }

.ai-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}
.ai-card:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.ai-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.ai-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: grayscale(20%);
}
.ai-card:hover .ai-card-image img { transform: scale(1.05); }
.ai-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--surface) 100%);
}

.ai-card-body { padding: 1.8rem; }
.ai-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}
.ai-card-text { color: var(--muted); font-size: 0.875rem; }

/* ============================
   PROCESS SECTION
   ============================ */
#process {
  padding: 120px 0;
  background: var(--charcoal);
}

.process-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  text-align: center;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

.process-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}
.process-item:last-child { margin-bottom: 0; }
.process-item:nth-child(even) { flex-direction: row-reverse; }

.process-content {
  width: 42%;
  text-align: right;
}
.process-item:nth-child(even) .process-content { text-align: left; }

.process-node {
  position: relative;
  z-index: 2;
  min-width: 60px; height: 60px;
  background: var(--black);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  box-shadow: 0 0 0 8px var(--charcoal), var(--shadow-gold);
  flex-shrink: 0;
}

.process-spacer { width: 42%; }

.process-time {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.process-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.process-text { color: var(--muted); font-size: 0.875rem; }

/* ============================
   WHATSAPP SECTION
   ============================ */
#whatsapp-section {
  padding: 80px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.wa-inner {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.02) 100%);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 20px;
  padding: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.wa-icon-big {
  width: 80px; height: 80px;
  background: var(--green);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
}
.wa-icon-big svg { width: 44px; height: 44px; fill: white; }

.wa-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}
.wa-text p { color: var(--muted); max-width: 500px; }

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.2);
}
.wa-btn:hover { background: #20c45a; color: white; transform: scale(1.04); box-shadow: 0 0 40px rgba(37, 211, 102, 0.4); }
.wa-btn svg { width: 20px; height: 20px; fill: white; }

/* ============================
   TESTIMONIALS
   ============================ */
#testimonials {
  padding: 120px 0;
  background: var(--charcoal);
}
.testimonials-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  transition: var(--transition);
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.08;
  position: absolute;
  top: -1rem; left: 1.5rem;
  line-height: 1;
}
.testimonial-card:hover { border-color: rgba(201, 168, 76, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 3px; }
.testimonial-text { color: #ccc; font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
  filter: grayscale(20%);
}
.testimonial-name { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--muted); }

/* ============================
   BOOKING SECTION
   ============================ */
#booking {
  padding: 120px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.booking-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}

.booking-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.booking-sub { color: var(--muted); max-width: 500px; margin-bottom: 3rem; }

.booking-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-control, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  padding: 14px 18px !important;
  transition: var(--transition-fast) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1) !important;
  background: rgba(201, 168, 76, 0.03) !important;
  outline: none !important;
}
.form-control::placeholder { color: #555 !important; }
.form-select option { background: var(--charcoal); color: var(--white); }

.booking-info { padding-left: 2rem; }
.booking-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.booking-info-item:last-child { border-bottom: none; }
.booking-info-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
}
.booking-info-title { font-family: var(--font-heading); font-weight: 700; margin-bottom: 4px; }
.booking-info-text { color: var(--muted); font-size: 0.875rem; }

/* ============================
   FOOTER
   ============================ */
#footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
}
.footer-tagline { color: var(--muted); font-size: 0.875rem; max-width: 280px; margin-bottom: 2rem; }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 4rem;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.8rem; color: var(--muted); }

/* ============================
   WHATSAPP FLOAT BUTTON
   ============================ */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 998;
  width: 60px; height: 60px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  animation: float 3s ease-in-out infinite;
  transition: var(--transition-fast);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6); }
.wa-float svg { width: 32px; height: 32px; fill: white; }
.wa-float-pulse {
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: wa-pulse 2s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991.98px) {
  .process-timeline::before { left: 30px; }
  .process-item { flex-direction: column !important; padding-left: 70px; gap: 1rem; }
  .process-node {
    position: absolute;
    left: 0; top: 0;
    min-width: 50px; height: 50px;
    font-size: 1.2rem;
    box-shadow: 0 0 0 6px var(--charcoal), var(--shadow-gold);
  }
  .process-content { width: 100%; text-align: left !important; }
  .process-spacer { display: none; }

  .wa-inner { flex-direction: column; text-align: center; padding: 2.5rem; gap: 2rem; }
  .wa-text p { margin: 0 auto; }

  .booking-info { padding-left: 0; margin-top: 3rem; }

  .hero-stats { gap: 2rem; }
  .hero-number { display: none; }
}

@media (max-width: 767.98px) {
  #hero { padding: 100px 0 60px; }
  .hero-image-wrap { margin-top: 3rem; }
  .hero-image-wrap img { height: 320px; }
  .hero-badge { display: none; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.7rem; }

  .pricing-card { margin-bottom: 1.5rem; }
  .booking-form-wrap { padding: 1.5rem; }

  .dfy-image img { height: 300px; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }

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

  .process-item { padding-left: 55px; }
  .process-node { min-width: 42px; height: 42px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* ============================
   INNER PAGE HERO BANNER
   ============================ */
.page-hero {
  padding: 140px 0 70px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(201,168,76,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 20%, rgba(201,168,76,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.8;
}
.page-hero-dec {
  position: absolute;
  top: 30px;
  right: 5%;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 10rem);
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

/* ============================
   NAV ACTIVE STATE
   ============================ */
.nav-link.active-page {
  color: var(--gold) !important;
}

/* ============================
   MOBILE ENHANCEMENTS
   ============================ */
@media (max-width: 991.98px) {
  /* Navbar */
  .navbar-collapse {
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0.5rem 0;
    margin-top: 0.75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  }
  .nav-links { gap: 0 !important; flex-direction: column !important; width: 100%; }
  .nav-links .nav-item { width: 100%; border-bottom: 1px solid rgba(201,168,76,0.08); }
  .nav-links .nav-item:last-child { border-bottom: none; padding: 0.75rem 1.25rem 0.25rem; }
  .nav-links .nav-link {
    padding: 0.9rem 1.5rem !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center;
    gap: 10px;
  }
  .nav-links .nav-link:hover { background: rgba(201,168,76,0.06); color: var(--gold) !important; }
  .nav-links .nav-link.active-page { color: var(--gold) !important; background: rgba(201,168,76,0.04); }
  .nav-links .nav-link::after { display: none !important; }
  .nav-cta {
    margin: 0.25rem 1.25rem 0.75rem !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px !important;
    text-align: center !important;
    justify-content: center !important;
    clip-path: none !important;
    background: var(--gold) !important;
    color: var(--black) !important;
    display: flex !important;
  }

  /* Page hero */
  .page-hero { padding: 120px 0 50px; }
  .page-hero-dec { display: none; }

  /* Hero section */
  #hero { padding: 120px 0 60px; }
  .hero-image-wrap { margin-top: 2rem; }
  .hero-image-wrap img { height: 320px; }
  .hero-image-badge { left: 0; bottom: 20px; }
  .hero-stats { gap: 1rem; }

  /* Sections */
  #services, #dfy, #ai-features, #process, #testimonials, #booking { padding: 80px 0; }
  #pricing { padding: 80px 0; }

  /* Process timeline */
  .process-timeline::before { left: 20px; }
  .process-item { flex-direction: column !important; align-items: flex-start !important; padding-left: 50px; }
  .process-spacer { display: none !important; }
  .process-node {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  .process-content { text-align: left !important; padding: 0 !important; }

  /* DFY image */
  .dfy-image { margin-bottom: 2rem; }
  .dfy-badge { font-size: 0.95rem; padding: 1.2rem; }

  /* Testimonials */
  .testimonials-headline { font-size: 2rem; }

  /* Booking */
  .booking-info { margin-top: 3rem; }
  .booking-headline { font-size: 2.2rem; }
}

@media (max-width: 767.98px) {
  /* Typography scale down */
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3rem) !important; }
  .services-headline { font-size: 1.8rem; }
  .pricing-headline { font-size: 2rem; }
  .ai-headline { font-size: 1.8rem; }
  .dfy-headline { font-size: 2rem; }

  /* Pricing cards */
  .pricing-card { padding: 1.8rem 1.4rem; }
  .pricing-amount { font-size: 2rem; }

  /* Addon grid */
  .addon-grid { grid-template-columns: 1fr; }

  /* Stats */
  .hero-stats { flex-direction: column; gap: 1rem; }
  .hero-stat-num { font-size: 2rem; }

  /* Footer */
  footer .row > div { text-align: center; }
  .footer-logo, .ccs-logo-footer { justify-content: center; }
  .footer-links { text-align: center; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .social-coming-soon { justify-content: center; }
  .ccs-logo-text-wrap { align-items: flex-start; }

  /* WA float */
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 26px; height: 26px; }

  /* Ticker */
  .ticker-item { font-size: 0.85rem; padding: 0 24px; }

  /* Booking info */
  .booking-info-item { flex-direction: column; gap: 0.6rem; }
}

@media (max-width: 575.98px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
  .service-card { padding: 1.8rem 1.4rem; }
  .pricing-name { font-size: 1.3rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .dfy-steps { gap: 1.2rem; }
  .page-hero h1 { font-size: 2.2rem; }
}

/* ============================
   UTILITIES
   ============================ */
.section-pt { padding-top: 120px; }
@media (max-width: 991.98px) { .section-pt { padding-top: 80px; } }
