/* Career Spark — shared site styles */

:root {
  --bg: #f0f4ff;
  --ink: #0d1526;
  --blue: #1a4bcc;
  --blue2: #3a6eee;
  --navy: #0a1f5c;
  --gold: #e8a020;
  --gold2: #f5c040;
  --green: #1a9660;
  --muted: #6a7a9a;
  --border: #ccd8f0;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }

img, svg { max-width: 100%; display: block; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(10,31,92,0.18);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo { width: 38px; height: 38px; flex-shrink: 0; }

.brand-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
}

.brand-name span { color: var(--gold2); }

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

.nav-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--gold2);
  border-color: var(--gold2);
}

.nav-cta {
  background: var(--gold2);
  color: var(--navy) !important;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 20px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; padding: 10px 0; }
  .nav-cta { margin-top: 8px; text-align: center; }
}

/* ---------- Hero ---------- */

.hero {
  padding: 70px 0 60px;
  border-bottom: 3px solid var(--blue);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 240px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-title .accent { color: var(--blue); }

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 26px 26px 22px;
  border: 1px solid rgba(232,160,32,0.4);
  box-shadow: 0 12px 40px rgba(10,31,92,0.25);
}

.hero-card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.6;
  margin-bottom: 10px;
}

.hero-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.hero-card li {
  font-size: 13.5px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
  color: rgba(255,255,255,0.85);
}

.hero-card li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold2);
  font-size: 11px;
}

.hero-card li strong { color: var(--gold2); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, color 0.2s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue2); }

.btn-gold { background: var(--gold2); color: var(--navy); }
.btn-gold:hover { background: var(--gold); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ---------- Sections ---------- */

section { padding: 70px 0; }

.section-head { max-width: 640px; margin-bottom: 44px; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
}

.section-sub { color: var(--muted); font-size: 15.5px; line-height: 1.6; }

.section-alt { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy .section-sub { color: rgba(255,255,255,0.65); }

/* ---------- Cards / grid ---------- */

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

@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-icon { font-size: 26px; }

.card-title { font-size: 17px; font-weight: 800; }

.card-text { font-size: 14px; color: var(--muted); line-height: 1.55; }

.pill {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pill-blue  { background: rgba(26,75,204,0.1);  color: var(--blue); border: 1px solid rgba(26,75,204,0.3); }
.pill-gold  { background: rgba(232,160,32,0.12); color: #a06a10; border: 1px solid rgba(232,160,32,0.35); }
.pill-green { background: rgba(26,150,96,0.1);  color: var(--green); border: 1px solid rgba(26,150,96,0.3); }

/* ---------- Pricing ---------- */

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

@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(232,160,32,0.25);
  position: relative;
}

.price-card.featured {
  border-color: var(--gold2);
  box-shadow: 0 14px 40px rgba(10,31,92,0.3);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -12px; right: 20px;
  background: var(--gold2);
  color: var(--navy);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.price-name { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.85); }

.price-amount {
  font-family: 'Raleway', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--gold2);
}

.price-amount span { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 400; }

.price-list { list-style: none; display: flex; flex-direction: column; gap: 8px; flex: 1; }

.price-list li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.price-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold2); }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}

@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step { position: relative; padding-left: 4px; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: 34px;
  color: var(--blue);
  opacity: 0.35;
  margin-bottom: 6px;
}

.step-title { font-weight: 800; font-size: 15.5px; margin-bottom: 6px; }
.step-text { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ---------- Testimonial ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .quote-grid { grid-template-columns: 1fr; } }

.quote-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.quote-text { font-size: 14px; line-height: 1.6; color: var(--ink); margin-bottom: 14px; font-style: italic; }
.quote-name { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--blue); letter-spacing: 0.5px; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
  padding: 46px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(22px, 3.4vw, 30px);
  max-width: 480px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }

.contact-list li { display: flex; gap: 14px; align-items: flex-start; }

.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(26,75,204,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.contact-list strong { display: block; font-size: 14px; margin-bottom: 2px; }
.contact-list span { font-size: 13.5px; color: var(--muted); }

.form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.field input, .field select, .field textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 11px 13px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  color: var(--ink);
  background: var(--bg);
}

.field textarea { resize: vertical; min-height: 90px; }

.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-note {
  font-size: 12px;
  color: var(--muted);
  font-family: 'IBM Plex Mono', monospace;
  line-height: 1.5;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 40px 0 26px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .brand-name { font-size: 18px; }

.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }

.footer-links a {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--gold2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: rgba(255,255,255,0.4);
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  bottom: 22px; right: 22px;
  background: var(--green);
  color: var(--white);
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  box-shadow: 0 8px 24px rgba(26,150,96,0.4);
  z-index: 90;
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.08); }
