/* ============================================
   CAREER4ME.IN — Main Stylesheet
   Fonts: Playfair Display (headings) + DM Sans (body)
   Palette: Deep Navy #1a3a5c · Warm White #faf9f6 · Gold accent #c9a84c
   ============================================ */

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

:root {
  --navy:    #1a3a5c;
  --navy-lt: #2a5080;
  --gold:    #c9a84c;
  --cream:   #faf9f6;
  --white:   #ffffff;
  --text:    #1c1c1e;
  --muted:   #6b6b6b;
  --border:  #e4e0d8;
  --red-bg:  #fdf2f0;
  --red-bd:  #e8b4a8;
  --grn-bg:  #f0f6f0;
  --grn-bd:  #a8ccaa;
  --radius:  12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 24px;
}

/* ---- UTILITIES ---- */
.container { max-width: 1080px; margin: 0 auto; padding: 0 1.5rem; }

.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.01em;
}
.btn-primary:hover { background: var(--navy-lt); transform: translateY(-1px); }
.btn-primary.large { padding: 18px 40px; font-size: 24px; }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-ghost:hover { background: var(--navy); color: #fff; }

.btn-ghost-dark {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-dark:hover { border-color: var(--navy); color: var(--navy); }

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-nav:hover { opacity: 0.85; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 2rem;
}

.problem-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
  border-top: 1px solid var(--border);
}
.nav-mobile a { text-decoration: none; color: var(--navy); font-size: 24px; }
.nav-mobile.open { display: flex; }

/* ---- HERO ---- */
.hero {
  padding: 80px 1.5rem 60px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 24px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-sub strong { color: var(--navy); font-weight: 500; }

.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 2rem;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
}
.stat-label { font-size: 16px; color: var(--muted); text-align: center; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }

/* ---- PROBLEM ---- */
.problem {
  background: var(--white);
  padding: 80px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 3rem;
}

.problem-card {
  border-radius: var(--radius);
  padding: 2rem;
}
.problem-card.red { background: var(--red-bg); border: 1px solid var(--red-bd); }
.problem-card.green { background: var(--grn-bg); border: 1px solid var(--grn-bd); }

.problem-icon {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.problem-card.red .problem-icon { color: #c0392b; }
.problem-card.green .problem-icon { color: #27ae60; }

.problem-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1rem;
}

.problem-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.problem-card ul li {
  font-size: 16px;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.5;
}
.problem-card.red ul li::before { content: '✗'; position: absolute; left: 0; color: #c0392b; font-weight: 700; }
.problem-card.green ul li::before { content: '✓'; position: absolute; left: 0; color: #27ae60; font-weight: 700; }

.professor-quote {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
}
.quote-bar {
  width: 4px;
  min-height: 100%;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.quote-author { font-size: 16px; color: var(--muted); }

/* ---- HOW IT WORKS ---- */
.how {
  padding: 80px 0;
  background: var(--cream);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.step p { font-size: 16px; color: var(--muted); line-height: 1.7; }

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  margin-top: 60px;
  flex-shrink: 0;
}

/* ---- REPORT SECTION ---- */
.report-section {
  padding: 80px 0;
  background: var(--navy);
}
.report-section .problem-label { color: var(--gold); }
.report-section .section-title { color: var(--white); }

.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.report-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.report-icon { font-size: 24px; margin-bottom: 0.75rem; }
.report-item h4 {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.report-item p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ---- SCIENCE ---- */
.science {
  padding: 80px 0;
  background: var(--white);
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 2rem;
}

.science-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sci-label {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.science-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.science-card p { font-size: 16px; color: var(--muted); line-height: 1.6; }

.science-disclaimer {
  background: #fdf8ee;
  border: 1px solid #e8d9a0;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 16px;
  color: #7a6020;
  line-height: 1.7;
}

/* ---- PRICING ---- */
.pricing {
  padding: 80px 0;
  background: var(--cream);
}

.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 760px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.price-card.featured {
  border: 2px solid var(--navy);
  position: relative;
}

.price-popular {
  display: inline-block;
  background: var(--navy);
  color: white;
  font-size: 16px;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 0.5rem;
  align-self: flex-start;
}
.price-tier { font-size: 16px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
}
.price-amount span { font-size: 16px; font-family: 'DM Sans', sans-serif; color: var(--muted); font-weight: 400; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.price-features li {
  font-size: 16px;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text);
  line-height: 1.4;
}
.price-features li::before { position: absolute; left: 0; font-size: 16px; }
.price-features li.yes::before { content: '✓'; color: #27ae60; font-weight: 700; }
.price-features li.no { color: var(--muted); }
.price-features li.no::before { content: '–'; color: var(--border); }

.price-note { font-size: 16px; color: var(--muted); text-align: center; font-style: italic; }

/* ---- TRUST ---- */
.trust {
  padding: 80px 0;
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.trust-item { text-align: center; }
.trust-icon { font-size: 28px; margin-bottom: 0.75rem; display: block; }
.trust-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.trust-item p { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* ---- FINAL CTA ---- */
.final-cta {
  padding: 100px 0;
  background: var(--navy);
  text-align: center;
}
.final-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 500;
}
.final-cta p {
  font-size: 24px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.5rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.final-cta .btn-primary:hover { opacity: 0.9; background: var(--gold); }
.cta-sub {
  margin-top: 1rem;
  font-size: 16px;
  color: rgba(255,255,255,0.4);
}

/* ---- FOOTER ---- */
.footer {
  background: #111d28;
  padding: 48px 0 24px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer-brand .logo { color: var(--white); font-size: 24px; margin-bottom: 0.5rem; display: block; }
.footer-brand p { font-size: 16px; color: rgba(255,255,255,0.4); max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.5); font-size: 16px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  font-size: 16px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag    { animation: fadeUp 0.5s ease both; }
.hero-title  { animation: fadeUp 0.5s 0.1s ease both; }
.hero-sub    { animation: fadeUp 0.5s 0.2s ease both; }
.hero-cta-group { animation: fadeUp 0.5s 0.3s ease both; }
.hero-stats  { animation: fadeUp 0.5s 0.4s ease both; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { width: 2px; height: 24px; margin: 0 auto; }
  .price-cards { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .stat-divider { display: none; }
  .stat { padding: 0 0.75rem; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 1.25rem 40px; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  section { padding: 60px 0; }
}
