/* ============== StartupAssist — Static Site ============== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #0b0b0b;
  --bg-2: #0f0f10;
  --primary: #ff6a1a;
  --primary-glow: rgba(255, 106, 26, 0.45);
  --whatsapp: #25d366;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.65);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --card: rgba(255, 255, 255, 0.03);
  --card-2: rgba(255, 255, 255, 0.05);
  --black-40: rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
  padding-bottom: 90px;
  background-image:
    radial-gradient(circle at 50% 8%, rgba(255, 106, 26, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 60%, rgba(255, 106, 26, 0.06) 0%, transparent 35%);
  background-attachment: fixed;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.font-display { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.glow-text { text-shadow: 0 0 30px rgba(255, 106, 26, 0.5); }

/* ============== Navbar ============== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 36px; object-fit: contain; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 18px var(--primary-glow);
  transition: all .25s ease;
}
.nav-cta:hover { background: #ff7d36; box-shadow: 0 0 28px var(--primary-glow); transform: translateY(-1px); }
.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s ease;
}
.nav-back:hover { color: var(--primary); }

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 16px;
  transition: all .25s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 30px var(--primary-glow);
}
.btn-primary:hover { background: #ff7d36; box-shadow: 0 0 45px rgba(255,106,26,0.65); transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.98); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.4); }
.btn-block { width: 100%; }
.btn-lg { padding: 22px 32px; font-size: 17px; }

/* ============== Hero ============== */
.hero {
  position: relative;
  padding: 110px 0 70px;
}
.hero-cta-top {
  max-width: 720px;
  margin: 0 auto 36px;
}
.hr-soft {
  border: none;
  border-top: 1px solid var(--border);
  max-width: 720px;
  margin: 0 auto 44px;
}
.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.hero-sub {
  font-size: clamp(15px, 2.2vw, 19px);
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 24px;
}
.trust-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-bottom: 14px;
}
.stats-inline {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 22px;
}
.stats-inline strong { color: #fff; font-weight: 700; }
.stats-inline .s-label { color: var(--muted); margin-left: 4px; }
.pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 22px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
}
.urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
}
.icon-orange { color: var(--primary); width: 16px; height: 16px; flex-shrink: 0; }

/* ============== Sections ============== */
.section { padding: 80px 0; position: relative; }
.section-dark { background: rgba(0,0,0,0.4); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 16px; }

/* ============== Cards / Grids ============== */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all .3s ease;
}
.card:hover { border-color: rgba(255,106,26,0.25); transform: translateY(-2px); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-card .feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255,106,26,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p { color: var(--muted); font-size: 15px; }

/* ============== Visibility section ============== */
.visibility-card { max-width: 980px; margin: 0 auto; padding: 40px; }
.visibility-card h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 12px;
}
.visibility-card .lead { color: var(--muted); margin-bottom: 28px; max-width: 560px; }
.bullet-list { list-style: none; margin-bottom: 32px; }
.bullet-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  color: rgba(255,255,255,0.92);
}
.bullet-list svg { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-box {
  padding: 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
}
.stat-box .num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box.accent .num { color: var(--primary); }
.stat-box .label { color: var(--muted); font-size: 14px; }

.industries { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--border); text-align: center; }
.industries h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.industries .ind-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.ind-tag {
  padding: 6px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* ============== Process steps ============== */
.process-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 18px; }
.process-card { position: relative; overflow: hidden; padding: 26px 28px; }
.process-num {
  position: absolute;
  top: 8px;
  right: 18px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  user-select: none;
  transition: color .3s ease;
}
.process-card:hover .process-num { color: rgba(255,106,26,0.18); }
.process-card .feature-icon { margin-bottom: 16px; }
.process-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}
.process-card p { color: var(--muted); max-width: 460px; }

/* ============== India badges ============== */
.india-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  max-width: 720px;
  margin: 0 auto 48px;
}
.india-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

/* ============== Difference cards ============== */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
.diff-card { padding: 32px; }
.diff-card.bad { border-color: rgba(220, 38, 38, 0.3); background: rgba(220, 38, 38, 0.05); }
.diff-card.good { border-color: rgba(255,106,26,0.35); background: rgba(255,106,26,0.05); box-shadow: 0 0 40px rgba(255,106,26,0.15); position: relative; overflow: hidden; }
.diff-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.diff-icon-circle {
  width: 40px; height: 40px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.diff-icon-circle.bad { background: rgba(220,38,38,0.18); border: 1px solid rgba(220,38,38,0.35); color: #ef4444; }
.diff-icon-circle.good { background: rgba(255,106,26,0.18); border: 1px solid rgba(255,106,26,0.4); color: var(--primary); }
.diff-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.diff-list li { display: flex; align-items: flex-start; gap: 12px; }
.diff-list li svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.diff-list.bad li { color: var(--muted); }
.diff-list.bad li svg { color: rgba(239,68,68,0.85); }
.diff-list.good li { color: rgba(255,255,255,0.92); }
.diff-list.good li svg { color: var(--primary); }
.diff-card.good .shield-bg {
  position: absolute;
  top: 12px; right: 12px;
  width: 96px; height: 96px;
  opacity: 0.08;
  color: var(--primary);
}

/* ============== Testimonials ============== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.test-card { padding: 26px; }
.stars { display: flex; gap: 4px; margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; color: var(--primary); }
.test-quote { color: rgba(255,255,255,0.88); font-style: italic; line-height: 1.6; margin-bottom: 22px; }
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: rgba(255,106,26,0.2);
  border: 1px solid rgba(255,106,26,0.35);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
}
.author-info .author-name { font-weight: 700; font-size: 15px; }
.author-info .author-role { color: var(--primary); font-size: 13px; }
.author-info .verified {
  color: var(--muted); font-size: 12px;
  display: inline-flex; align-items: center; gap: 4px; margin-top: 2px;
}
.author-info .verified svg { width: 12px; height: 12px; color: var(--primary); }

/* ============== Pricing ============== */
.pricing-pills {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  align-items: center;
  padding: 14px 24px;
  background: rgba(255,106,26,0.06);
  border: 1px solid rgba(255,106,26,0.25);
  border-radius: 18px;
}
.pricing-pills span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.92); }
.pricing-pills svg { color: var(--primary); width: 16px; height: 16px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 1100px;
  margin: 30px auto 0;
}
.price-card {
  padding: 34px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.price-card.best { transform: translateY(-8px); border-color: rgba(255,106,26,0.4); box-shadow: 0 0 40px rgba(255,106,26,0.25); position: relative; }
.price-card.regular { transform: translateY(8px); }
.best-tag {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 0 15px var(--primary-glow);
  white-space: nowrap;
}
.price-tier {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
  margin-top: 6px;
}
.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
}
.price-old {
  font-size: 18px;
  color: var(--muted);
  text-decoration: line-through;
}
.price-new {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 700;
  line-height: 1;
}
.price-card .btn { margin-top: auto; }

/* ============== FAQ ============== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s ease;
}
.faq-item.open { background: rgba(255,255,255,0.04); border-color: rgba(255,106,26,0.3); }
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #fff;
  transition: color .2s ease;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 18px; height: 18px; flex-shrink: 0; transition: transform .25s ease; color: var(--primary); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 24px 22px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.faq-item.open .faq-answer { max-height: 400px; }

/* ============== Final CTA ============== */
.final-cta { padding: 100px 0; position: relative; overflow: hidden; }
.final-cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: rgba(255,106,26,0.18);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.final-cta .container { position: relative; z-index: 1; max-width: 720px; text-align: center; }
.final-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 22px;
}

/* ============== Footer ============== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); max-width: 360px; line-height: 1.6; }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: color .2s ease;
}
.footer-col a svg { width: 16px; height: 16px; color: var(--primary); }
.footer-col a:hover { color: var(--primary); }
.footer-col a.wa-link svg { color: var(--whatsapp); }
.footer-col a.wa-link:hover { color: var(--whatsapp); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.footer-bottom .we-handle { color: #fff; font-weight: 600; }
.footer-bottom .we-handle .text-primary { color: var(--primary); }

/* ============== Sticky bottom bar ============== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border);
  padding: 12px;
  padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 12px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-bar .btn-primary { flex: 1; padding: 16px; font-size: 15px; }
.sticky-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.45);
  transition: all .25s ease;
  flex-shrink: 0;
}
.sticky-wa:hover { background: #20bd5a; transform: translateY(-1px); }
.sticky-wa svg { width: 20px; height: 20px; }

/* ============== Booking page ============== */
.booking-wrap {
  padding: 110px 0 40px;
  max-width: 680px;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
  transition: color .2s ease;
}
.back-link:hover { color: #fff; }
.back-link svg { width: 16px; height: 16px; transition: transform .2s ease; }
.back-link:hover svg { transform: translateX(-3px); }

.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255,106,26,0.1);
  border: 1px solid rgba(255,106,26,0.35);
  border-radius: 999px;
  margin-bottom: 24px;
}
.step-pill .num-circle {
  width: 22px; height: 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
}
.step-pill span:last-child {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-head { text-align: center; margin-bottom: 40px; }
.booking-head h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 6vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.booking-head p { color: var(--muted); font-size: 17px; max-width: 500px; margin: 0 auto 28px; }

.head-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.head-checks span { display: inline-flex; align-items: center; gap: 8px; }
.head-checks .check-dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(255,106,26,0.18);
  border: 1px solid rgba(255,106,26,0.35);
  display: flex; align-items: center; justify-content: center;
}
.head-checks .check-dot svg { width: 12px; height: 12px; color: var(--primary); }

.contact-block { margin-bottom: 36px; }
.contact-block h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all .25s ease;
  margin-bottom: 12px;
}
.contact-link:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,106,26,0.3); }
.contact-link.wa:hover { border-color: rgba(37,211,102,0.4); }
.contact-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,106,26,0.15);
  border: 1px solid rgba(255,106,26,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 16px; height: 16px; color: var(--primary); }
.contact-link.wa .contact-icon { background: rgba(37,211,102,0.15); border-color: rgba(37,211,102,0.3); }
.contact-link.wa .contact-icon svg { color: var(--whatsapp); }
.contact-link span { color: #fff; font-weight: 500; }

/* ============== Form ============== */
.form-card { padding: 28px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: var(--black-40);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all .2s ease;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: dark;
}
.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:hover,
.form-group select:hover { border-color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus { outline: none; border-color: rgba(255,106,26,0.5); box-shadow: 0 0 0 3px rgba(255,106,26,0.15); }
.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group input[type="date"] { line-height: 48px; }
.form-group input.invalid,
.form-group select.invalid { border-color: rgba(239,68,68,0.5); }
.form-error { color: #ef4444; font-size: 13px; margin-top: 6px; display: none; }
.form-error.show { display: block; }

.time-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.time-slot {
  padding: 14px 8px;
  background: var(--black-40);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all .2s ease;
  text-align: center;
}
.time-slot:hover { border-color: rgba(255,255,255,0.3); background: rgba(0,0,0,0.6); }
.time-slot.selected {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 0 18px rgba(255,106,26,0.4);
}

.urgency-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin: 24px 0;
}

.submit-btn { width: 100%; padding: 22px; font-size: 16px; }

.below-form-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-top: 22px;
}
.below-form-checks span { display: inline-flex; align-items: center; gap: 6px; }
.below-form-checks svg { width: 16px; height: 16px; color: var(--primary); }

.confidential {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}
.confidential svg { width: 14px; height: 14px; }

.guarantee {
  margin-top: 28px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255,106,26,0.3);
  background: rgba(255,106,26,0.05);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.guarantee .g-icon {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,106,26,0.18);
  border: 1px solid rgba(255,106,26,0.35);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.guarantee .g-icon svg { width: 16px; height: 16px; color: var(--primary); }
.guarantee p { font-size: 14px; color: rgba(255,255,255,0.92); line-height: 1.55; }
.guarantee p strong { color: #fff; font-weight: 700; }

.bottom-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 12px;
  color: var(--primary);
  margin-top: 22px;
}
.bottom-trust span { display: inline-flex; align-items: center; gap: 6px; }
.bottom-trust svg { width: 14px; height: 14px; }

/* Success state */
.success-state { text-align: center; padding: 80px 20px; max-width: 420px; margin: 0 auto; }
.success-circle {
  width: 80px; height: 80px;
  background: rgba(255,106,26,0.18);
  border: 1px solid rgba(255,106,26,0.35);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 30px rgba(255,106,26,0.35);
}
.success-circle svg { width: 40px; height: 40px; color: var(--primary); }
.success-state h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
}
.success-state p { color: var(--muted); margin-bottom: 28px; }

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

/* ============== Responsive ============== */
@media (max-width: 768px) {
  .nav-cta .full { display: none; }
  .nav-cta::before { content: 'Book Call'; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .diff-grid { grid-template-columns: 1fr; }
  .price-card.best, .price-card.regular { transform: none; }
  .visibility-card { padding: 28px 22px; }
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 50px; }
  .container { padding: 0 16px; }
  .india-badges { gap: 10px 16px; }
  .pricing-pills { padding: 12px 18px; gap: 6px 16px; }
}
@media (min-width: 769px) {
  .nav-cta .short { display: none; }
}
