/* ═══════════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════════ */
:root {
  --bg:            #FFFEF7;
  --bg-alt:        #F7F5EE;
  --surface:       #FFFFFF;
  --border:        #E9E5DC;
  --border-light:  #F0EDE4;

  --text-primary:   #111827;
  --text-secondary: #6B7280;
  --text-tertiary:  #9CA3AF;

  --accent:         #1D4ED8;
  --accent-hover:   #1E40AF;
  --accent-light:   #EFF6FF;
  --accent-border:  #BFDBFE;

  --warm:           #F97316;
  --warm-light:     #FFF7ED;
  --warm-border:    #FED7AA;

  --success:        #065F46;
  --success-light:  #ECFDF5;
  --success-border: #6EE7B7;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg:  0 12px 32px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl:  0 24px 48px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.06);

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad: 100px;
  --container:   1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ═══════════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  font-size: 15px;
  box-shadow: 0 1px 2px rgba(29,78,216,0.2), 0 4px 12px rgba(29,78,216,0.2);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(29,78,216,0.3), 0 8px 20px rgba(29,78,216,0.25);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  padding: 12px 24px;
  font-size: 15px;
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--text-secondary);
  transform: translateY(-1px);
}

.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-xl { padding: 16px 32px; font-size: 17px; width: 100%; border-radius: var(--radius-sm); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,254,247,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.nav-logo {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  flex-shrink: 0;
}
.logo-dot { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-alt);
}

.nav-cta { margin-left: auto; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.hero-bg-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(29,78,216,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
}

.hero-content { max-width: 560px; }

.eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.headline-line { display: block; }

.headline-highlight {
  background: linear-gradient(135deg, #1D4ED8 0%, #7C3AED 60%, #F97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.proof-avatars {
  display: flex;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  margin-right: -8px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent-border));
}
.av1 { background: linear-gradient(135deg, #BFDBFE, #93C5FD); z-index: 3; }
.av2 { background: linear-gradient(135deg, #FDE68A, #FCA5A5); z-index: 2; }
.av3 { background: linear-gradient(135deg, #A7F3D0, #6EE7B7); z-index: 1; }

.hero-social-proof p {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 8px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  min-width: 220px;
  white-space: nowrap;
}

.fc-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.fc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fc-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.fc-sub {
  font-size: 11px;
  color: var(--text-secondary);
}

.fc-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fc-resume  { top: 10%;  left: 0; }
.fc-naukri  { top: 40%;  right: 0; }
.fc-linkedin { bottom: 12%; left: 5%; }

.hero-stat-card {
  position: absolute;
  background: var(--text-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hero-stat-card:first-of-type,
.hero-stat-card.stat-price { }

.stat-number {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 4px;
}

.hero-stat-card:nth-child(4) { top: 2%; right: 8%; }
.hero-stat-card.stat-price    { bottom: 2%; right: 5%; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--text-tertiary);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--text-tertiary);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

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

.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--border);
}

.service-badge-popular {
  position: absolute;
  top: -1px;
  left: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 0 0 8px 8px;
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon-blue   { background: var(--accent-light);   color: var(--accent); }
.service-icon-orange { background: var(--warm-light);     color: var(--warm); }
.service-icon-green  { background: var(--success-light);  color: var(--success); }

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.service-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.5;
}

.feat-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--success-light);
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { gap: 8px; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.steps-wrapper {
  position: relative;
}

.steps-connector {
  position: absolute;
  top: 40px;
  left: calc(16.6% + 24px);
  right: calc(16.6% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--accent-border), var(--border), var(--accent-border));
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.step-num-wrap {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: var(--surface);
  border: 2px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--bg-alt);
}

.step-num {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
}

.step-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.step-body p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing {
  padding: var(--section-pad) 0;
  background: var(--surface);
}

.pricing-selector {
  max-width: 900px;
  margin: 0 auto 56px;
}

/* Bundle savings banner */
.bundle-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--text-primary);
  border-radius: var(--radius);
  padding: 14px 28px;
  margin-bottom: 20px;
}

.bb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.bb-item.bb-best { color: #fff; }

.bb-count { font-weight: 600; }
.bb-arrow { opacity: 0.4; }

.bb-price {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.bb-save {
  font-size: 11px;
  font-weight: 600;
  background: rgba(110,231,183,0.15);
  color: #6EE7B7;
  border: 1px solid rgba(110,231,183,0.3);
  padding: 2px 8px;
  border-radius: 100px;
}

.bb-star { font-size: 14px; }

.bb-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  margin: 0 28px;
}

.pricing-hint {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

/* ── Toggle cards ──────────────────────────────────────────── */
.pricing-toggle-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.pricing-toggle {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  user-select: none;
}

.pricing-toggle:hover {
  border-color: var(--accent-border);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing-toggle.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
  transform: translateY(-2px);
}

/* Check circle — top-right */
.pt-check-circle {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.18s ease, border-color 0.18s ease;
  flex-shrink: 0;
}

.pricing-toggle.selected .pt-check-circle {
  background: var(--accent);
  border-color: var(--accent);
}

.pt-check-circle svg {
  opacity: 0;
  transition: opacity 0.15s ease;
}
.pricing-toggle.selected .pt-check-circle svg { opacity: 1; }

/* Card body */
.pt-body {
  padding-right: 32px; /* space for check circle */
}

.pt-emoji { font-size: 28px; display: block; margin-bottom: 8px; }

.pt-name {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.pt-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pricing-toggle.selected .pt-desc {
  color: #3B5FBF;
}

/* Price block */
.pt-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid var(--border-light);
}

.pricing-toggle.selected .pt-price-block {
  border-top-color: var(--accent-border);
}

.pt-was {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.pt-now {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.pricing-toggle.selected .pt-now { color: var(--accent); }

/* Action bar */
.pt-action-bar {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding-top: 4px;
}

.pt-add-text { color: var(--accent); }
.pt-added-text { color: var(--success); display: none; }

.pricing-toggle.selected .pt-add-text { display: none; }
.pricing-toggle.selected .pt-added-text { display: block; }

/* ── Price Output ──────────────────────────────────────────── */
.price-output {
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-height: 96px;
  display: flex;
  align-items: center;
}

.po-empty {
  width: 100%;
  text-align: center;
}

.po-empty-prompt {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.po-empty-sub {
  font-size: 13px;
  color: var(--text-tertiary);
}

.po-active {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.po-summary { flex: 1; }

.po-chips-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.po-service-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.po-includes-line {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.po-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.po-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.po-mrp {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.po-actual {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.po-savings {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-light);
  border: 1px solid var(--success-border);
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
}

.po-cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.po-cta-col .btn-xl { width: 180px; }

.po-note {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
}

/* Pricing Table */
.pricing-table {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pt-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 12px 20px;
  background: var(--bg-alt);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.pt-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  align-items: center;
  font-size: 14px;
  transition: background 0.15s;
}
.pt-row:last-child { border-bottom: none; }
.pt-row:hover { background: var(--bg-alt); }

.pt-row-highlight {
  background: var(--accent-light);
}
.pt-row-highlight:hover { background: var(--accent-light); }

.pt-plan { font-weight: 600; color: var(--text-primary); }
.pt-regular { color: var(--text-tertiary); text-decoration: line-through; }
.pt-pay { font-weight: 700; color: var(--text-primary); font-size: 15px; }
.pt-save-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
  background: var(--success-light);
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border-light);
}

.faq-list {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--accent-border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  color: var(--text-secondary);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */

.contact {
  padding: 80px 0;
  background: var(--bg);
}

.contact-cards {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 420px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(29,78,216,0.1);
  transform: translateY(-2px);
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 12px;
  color: var(--accent);
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-arrow {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.contact-card:hover .contact-arrow {
  transform: translateX(4px);
}

.contact-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .contact-cards { flex-direction: column; align-items: center; }
  .contact-card { max-width: 100%; width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.9);
}

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

.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; display: block; }
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 260px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════
   CHECKOUT MODAL
═══════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px 32px 24px;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-alt);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--border); color: var(--text-primary); }

.modal-header { margin-bottom: 14px; }
.modal-header h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 7px;
}

.modal-services-summary {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.modal-service-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
}

/* Amount block — all in one compact row */
.modal-amount-block {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-amount-label { display: none; } /* removed to save space */

.modal-amount-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 0;
  flex: 1;
}

.modal-mrp-small {
  font-size: 14px;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.modal-amount-big {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.modal-savings-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
  background: var(--success-light);
  border: 1px solid var(--success-border);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
}

.modal-steps-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.mstep {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.mstep-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* UPI section */
.upi-block {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 14px;
}

.upi-qr-wrap { flex-shrink: 0; }

.upi-qr-placeholder {
  width: 88px;
  height: 88px;
  background: var(--surface);
  border: 2px dashed var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 3px;
}

.upi-qr-placeholder p {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
}

.qr-replace-note {
  font-size: 8px !important;
  color: var(--text-tertiary) !important;
}

.upi-qr-img {
  width: 88px;
  height: 88px;
  border-radius: 8px;
  object-fit: contain;
}

.upi-details { flex: 1; }
.upi-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 3px;
}

.upi-id-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
  margin-bottom: 7px;
}

.btn-copy-upi {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 6px;
}
.btn-copy-upi:hover { background: var(--accent-border); }

.upi-apps {
  font-size: 10px;
  color: var(--text-tertiary);
}

.modal-submit-btn {
  display: block;
  text-align: center;
  margin-bottom: 10px;
}

.modal-disclaimer {
  font-size: 11px;
  color: var(--text-tertiary);
  text-align: center;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET & MOBILE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255,254,247,0.97);
    backdrop-filter: blur(12px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    gap: 4px;
  }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 32px;
    padding-bottom: 48px;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .eyebrow-wrap { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }

  .hero-visual { height: 320px; }

  .floating-card { min-width: 180px; }
  .fc-resume  { top: 5%;   left: 0; }
  .fc-naukri  { top: 38%;  right: 0; font-size: 12px; }
  .fc-linkedin { bottom: 5%; left: 0; }

  .hero-stat-card:nth-child(4) { top: 0;  right: 0; }
  .hero-stat-card.stat-price   { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; max-width: 100%; }

  /* How it works */
  .steps-connector { display: none; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .step { flex-direction: row; text-align: left; }
  .step-body p { max-width: 100%; margin: 0; }

  /* Pricing */
  .bundle-banner { flex-direction: column; gap: 10px; padding: 16px; }
  .bb-divider { width: 100%; height: 1px; margin: 0; }
  .pricing-toggle-row { grid-template-columns: 1fr; gap: 12px; }
  .po-active { flex-wrap: wrap; gap: 16px; }
  .po-price-col { align-items: flex-start; }
  .po-cta-col { width: 100%; }
  .po-cta-col .btn-xl { width: 100%; }

  .pt-header, .pt-row { grid-template-columns: 2fr 1fr 1fr; }
  .pt-header span:last-child, .pt-save-tag { display: none; }

  /* Modal */
  .modal { padding: 20px 18px 18px; }
  .modal-amount-block { flex-wrap: wrap; gap: 8px; }
  .upi-block { flex-direction: column; text-align: center; }
  .upi-label, .upi-apps { text-align: center; }
  .btn-copy-upi { margin: 0 auto 6px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 32px; padding-top: 40px; }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 16px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 38px; }
  .floating-card { min-width: 160px; }
  .fc-icon { font-size: 16px; }
  .fc-title { font-size: 12px; }
  .fc-sub { display: none; }
}
