/* ============ MULTI SKILL HUB — Landing Page CSS ============ */

:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #0F0F1A;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --accent-purple: #7B2FFF;
  --accent-cyan: #00D4FF;
  --gradient: linear-gradient(135deg, #7B2FFF 0%, #00D4FF 100%);
  --gradient-subtle: linear-gradient(135deg, rgba(123,47,255,0.15), rgba(0,212,255,0.08));
  --success: #00E676;
  --whatsapp: #25D366;
  --warning: #FF6B35;
  --text-primary: #F0EBE3;
  --text-secondary: #888BA0;
  --text-muted: #5A5D70;
  --border: rgba(123, 47, 255, 0.18);
  --border-hover: rgba(123, 47, 255, 0.45);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --shadow-card: 0 0 30px rgba(123, 47, 255, 0.12);
  --shadow-hover: 0 12px 40px rgba(123, 47, 255, 0.25);
  --radius-card: 16px;
  --radius-btn: 12px;
  --radius-input: 10px;
  --radius-pill: 50px;
  --font-display: 'Clash Display', 'Space Grotesk', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }
.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: 0 4px 20px rgba(123, 47, 255, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(123, 47, 255, 0.45); }
.btn-primary:active { transform: scale(0.98); }
.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover { border-color: var(--border-hover); background: var(--bg-card); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); }

/* ============ ANNOUNCEMENT BAR ============ */
.announcement-bar {
  background: var(--gradient);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee { display: flex; }
.marquee span { animation: scroll 30s linear infinite; padding-left: 100%; }
@keyframes scroll { to { transform: translateX(-100%); } }

/* ============ HEADER ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}
.header.scrolled { background: rgba(10, 10, 15, 0.95); border-bottom-color: var(--border); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--text-primary); }
.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 0 20px rgba(123, 47, 255, 0.4);
  animation: logoPulse 3s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(123, 47, 255, 0.4); }
  50% { box-shadow: 0 0 30px rgba(123, 47, 255, 0.7); }
}
.nav-desktop { display: flex; gap: 28px; }
.nav-desktop a { color: var(--text-secondary); font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-desktop a:hover { color: var(--text-primary); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-btn);
  transition: color 0.2s;
}
.phone-link:hover { color: var(--accent-cyan); }
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px;
  border-radius: var(--radius-btn);
  cursor: pointer;
}
.mobile-menu {
  display: none;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 12px; }
.mobile-menu a { color: var(--text-secondary); padding: 12px 0; border-bottom: 1px solid var(--border-subtle); font-weight: 500; }
.mobile-menu a:last-child { border: none; }
.mobile-menu.active { display: block; animation: fadeSlide 0.3s ease; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.mesh-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}
.mesh-glow.m1 { background: var(--accent-purple); top: -200px; left: -150px; animation: meshFloat 8s ease-in-out infinite; }
.mesh-glow.m2 { background: var(--accent-cyan); bottom: -200px; right: -150px; animation: meshFloat 10s ease-in-out infinite reverse; }
@keyframes meshFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(123,47,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,47,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.pill-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 10px var(--success); animation: pillPulse 2s infinite; }
@keyframes pillPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}
.trust-item svg { color: var(--accent-cyan); }

/* Hero Right — Browser Mockup */
.hero-right { position: relative; }
.hero-mockup { position: relative; perspective: 1500px; }
.browser-mock {
  background: linear-gradient(145deg, #13131F, #0A0A0F);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(123, 47, 255, 0.3), 0 0 0 1px rgba(255,255,255,0.05) inset;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.3s ease;
  animation: mockupFloat 6s ease-in-out infinite;
}
@keyframes mockupFloat {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translateY(-12px); }
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border-subtle);
}
.bd { width: 10px; height: 10px; border-radius: 50%; }
.bd.red { background: #FF5F57; }
.bd.amber { background: #FEBC2E; }
.bd.green { background: #28C840; }
.browser-url {
  flex: 1;
  margin-left: 12px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
}
.browser-content { padding: 20px; }
.bc-hero { height: 60px; background: var(--gradient-subtle); border-radius: 8px; margin-bottom: 16px; }
.bc-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.bc-block { height: 50px; background: rgba(255,255,255,0.03); border-radius: 6px; }
.bc-btn { height: 32px; width: 100px; background: var(--gradient); border-radius: 6px; }

.float-card {
  position: absolute;
  padding: 14px 18px;
  background: rgba(20, 20, 32, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  z-index: 2;
  animation: cardFloat 4s ease-in-out infinite;
}
.float-card-1 { top: 20px; left: -20px; animation-delay: 0.5s; }
.float-card-2 { bottom: 40px; right: -10px; animation-delay: 1s; }
@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.fc-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.fc-value { font-family: var(--font-display); font-size: 20px; font-weight: 600; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  animation: bounceY 2s ease-in-out infinite;
}
@keyframes bounceY { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 8px); } }

/* ============ SECTIONS ============ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-secondary); }
.section-head { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-head p { color: var(--text-secondary); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-card {
  padding: 28px 24px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  margin-bottom: 20px;
}
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.service-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.price-pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-align: center;
}
.step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(123, 47, 255, 0.4);
}
.step-icon {
  width: 60px; height: 60px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-purple);
  margin: 16px auto 20px;
}
.process-step h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.process-step p { color: var(--text-secondary); font-size: 14px; }
.process-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}
.price-card {
  position: relative;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-hover); }
.price-card.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-secondary), var(--bg-secondary)) padding-box,
    var(--gradient) border-box;
  box-shadow: 0 10px 40px rgba(123, 47, 255, 0.25);
  transform: translateY(-8px);
}
.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(123, 47, 255, 0.4);
  white-space: nowrap;
}
.price-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.price-range { font-family: var(--font-display); font-size: 28px; font-weight: 600; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 6px; }
.price-type { color: var(--text-secondary); font-size: 14px; margin-bottom: 4px; }
.price-pages { color: var(--text-muted); font-size: 13px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-subtle); }
.price-features { list-style: none; margin-bottom: 24px; flex: 1; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 14px;
}
.price-features svg { color: var(--accent-cyan); flex-shrink: 0; margin-top: 2px; }
.pricing-note { text-align: center; color: var(--text-secondary); font-size: 15px; }
.pricing-note a { color: var(--accent-cyan); font-weight: 500; }

/* ============ INCLUDED ============ */
.included-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.included-left .section-tag { text-align: left; }
.included-left h2 { text-align: left; margin-bottom: 14px; }
.included-left > p { color: var(--text-secondary); margin-bottom: 32px; }
.included-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  font-size: 14px;
}
.inc-item svg { flex-shrink: 0; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  padding: 28px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.stat-label { color: var(--text-secondary); font-size: 13px; font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

/* ============ WORK ============ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all 0.3s ease;
}
.work-card:hover { transform: translateY(-6px); border-color: var(--border-hover); box-shadow: var(--shadow-hover); }
.work-preview {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.work-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent 60%);
}
.work-meta { padding: 20px; }
.work-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.work-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.work-tech { color: var(--text-muted); font-size: 13px; font-family: var(--font-mono); }

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testi-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  transition: all 0.3s ease;
}
.testi-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.stars { color: #FFB800; font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { color: var(--text-primary); font-size: 15px; line-height: 1.6; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border-subtle); }
.avatar {
  width: 44px;
  height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 14px; }
.testi-meta { color: var(--text-muted); font-size: 12px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--border); }
.faq-q {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-cyan); }
.faq-q svg { flex-shrink: 0; transition: transform 0.3s; color: var(--text-secondary); }
.faq-item.active .faq-q svg { transform: rotate(180deg); color: var(--accent-cyan); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-a { max-height: 300px; }
.faq-a p { padding: 0 24px 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }

/* ============ CONTACT ============ */
.contact-section { background: var(--bg-secondary); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-left h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; line-height: 1.15; margin-bottom: 14px; }
.contact-left > p { color: var(--text-secondary); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-card);
  transition: all 0.2s;
}
.contact-item:hover { border-color: var(--border-hover); transform: translateX(4px); }
.ci-icon {
  width: 44px; height: 44px;
  background: var(--gradient-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-purple);
  flex-shrink: 0;
}
.ci-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.ci-val { font-weight: 500; font-size: 15px; }

.contact-form {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}
.contact-form h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-input);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(123, 47, 255, 0.15);
}
.form-group textarea { resize: vertical; min-height: 90px; font-family: var(--font-body); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23888BA0' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-note { margin-top: 12px; font-size: 12px; color: var(--text-muted); text-align: center; }

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-wrap {
  padding: 64px 40px;
  background: var(--gradient);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123, 47, 255, 0.35);
}
.cta-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15), transparent 50%);
}
.cta-wrap > * { position: relative; z-index: 1; }
.cta-wrap h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 40px); font-weight: 600; color: white; margin-bottom: 14px; }
.cta-wrap p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-primary { background: white; color: var(--accent-purple); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.cta-buttons .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

/* ============ FOOTER ============ */
.footer {
  background: #050508;
  padding: 64px 0 24px;
  border-top: 1px solid var(--border-subtle);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--text-primary); margin-bottom: 10px; }
.footer-col a, .footer-col span { color: var(--text-secondary); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent-cyan); }
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-top: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ CHAT WIDGET ============ */
.chat-widget { position: fixed; bottom: 24px; right: 24px; z-index: 98; }
.chat-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: all 0.3s ease;
}
.chat-widget.open .chat-options { opacity: 1; pointer-events: auto; transform: translateY(0); }
.chat-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: all 0.2s;
  text-decoration: none;
}
.chat-opt:hover { transform: translateX(-4px); border-color: var(--border-hover); }
.chat-opt.chat-wa { background: var(--whatsapp); border-color: var(--whatsapp); color: white; }
.chat-opt.chat-call { background: linear-gradient(135deg, #00D4FF, #0080FF); border-color: #00D4FF; color: white; }
.chat-opt.chat-ai { background: var(--gradient); border-color: transparent; color: white; }
.chat-trigger {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(123, 47, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.2s;
}
.chat-trigger:hover { transform: scale(1.08); }
.chat-trigger::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--accent-purple);
  animation: pulseRing 2s infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
.chat-trigger .ct-close { display: none; }
.chat-widget.open .ct-open { display: none; }
.chat-widget.open .ct-close { display: block; }

/* ============ AI CHAT MODAL ============ */
.chat-modal {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 140px);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 99;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: fadeSlide 0.3s ease;
}
.chat-modal.active { display: flex; }
.chat-box { display: flex; flex-direction: column; height: 100%; }
.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--gradient);
  color: white;
}
.chat-avatar {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
}
.chat-title { font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.chat-sub { font-size: 12px; opacity: 0.9; }
.online-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; box-shadow: 0 0 8px var(--success); }
.chat-close {
  margin-left: auto;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  padding: 6px;
  border-radius: 8px;
  cursor: pointer;
}
.chat-close:hover { background: rgba(255,255,255,0.25); }
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.msg { display: flex; }
.msg-ai { justify-content: flex-start; }
.msg-user { justify-content: flex-end; }
.msg-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}
.msg-ai .msg-bubble {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
}
.msg-user .msg-bubble {
  background: var(--gradient);
  color: white;
  border-bottom-right-radius: 4px;
}
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 12px;
}
.qr {
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.2s;
}
.qr:hover { border-color: var(--accent-purple); background: var(--gradient-subtle); }
.chat-input {
  display: flex;
  gap: 8px;
  padding: 14px 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}
.chat-input input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
}
.chat-input input:focus { outline: none; border-color: var(--accent-purple); }
.chat-input button {
  width: 40px; height: 40px;
  background: var(--gradient);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ TOAST ============ */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  color: var(--text-primary);
  font-weight: 500;
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--warning); }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-right { max-width: 500px; margin: 0 auto; }
  .pill, .trust-strip, .hero-actions { justify-content: center; }
  .hero-actions { display: inline-flex; }
  .process-grid { grid-template-columns: 1fr; }
  .process-line { display: none; }
  .included-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-desktop, .header-cta .phone-link, .header-cta .btn { display: none; }
  .header-cta .btn { display: inline-flex; padding: 8px 16px; font-size: 13px; }
  .mobile-toggle { display: block; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-card { display: none; }
  .chat-modal { width: calc(100vw - 24px); right: 12px; left: 12px; }
  .cta-wrap { padding: 40px 24px; }
  .included-list { grid-template-columns: 1fr; }
  .browser-mock { transform: none; animation: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-inner { gap: 12px; padding: 14px 16px; }
  .logo-text { font-size: 17px; }
  .contact-form { padding: 24px 20px; }
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }
