/* ==========================================================================
   Elite CV Crafters — Design System
   ========================================================================== */

:root {
  --navy: #0F172A;
  --navy-soft: #1E293B;
  --royal: #2563EB;
  --royal-dark: #1D4ED8;
  --royal-light: #EFF4FF;
  --gold: #D4AF37;
  --gold-light: #F1DFA1;
  --white: #FFFFFF;
  --bg-section: #F8FAFC;
  --text: #111827;
  --text-muted: #5B6472;
  --text-soft: #8A94A3;
  --border: #E5E7EB;

  --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(15, 23, 42, 0.18);
  --shadow-gold: 0 12px 32px rgba(212, 175, 55, 0.25);

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

p { margin: 0 0 16px; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--navy); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.icon { width: 20px; height: 20px; flex-shrink: 0; }
.rotate-180 { transform: rotate(180deg); }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-heading);
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary { background: var(--royal); color: var(--white); }
.btn-primary:hover { background: var(--royal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #c49f2c; transform: translateY(-2px); box-shadow: var(--shadow-gold); }

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

.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-ghost-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

/* ==========================================================================
   Navbar
   ========================================================================== */

.navbar {
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.navbar::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); border-color: var(--border); }

.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }
.navbar .container { max-width: 1360px; }

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--royal));
  color: var(--white); font-family: var(--font-heading); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.logo-text { font-family: var(--font-heading); font-size: 19px; font-weight: 500; color: var(--navy); }
.logo-text strong { font-weight: 800; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-badge {
  display: inline-flex; align-items: center; background: var(--white);
  border-radius: var(--radius-sm); padding: 8px 14px;
}
.logo-badge .logo-img { height: 40px; }

.nav-links { display: flex; align-items: center; gap: 18px; flex-wrap: nowrap; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text); position: relative; padding: 6px 0; white-space: nowrap; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width .2s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--royal); }

.navbar-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: none; padding: 6px; color: var(--navy); }
.nav-toggle .icon-close { display: none; }
.nav-toggle.open .icon-menu { display: none; }
.nav-toggle.open .icon-close { display: block; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 96px 0 100px;
  background: radial-gradient(ellipse 1200px 500px at 50% -10%, rgba(37,99,235,.10), transparent),
              linear-gradient(180deg, #FBFCFE 0%, #FFFFFF 60%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 800px 400px at 50% 0%, black, transparent);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--royal-light); color: var(--royal-dark);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
  letter-spacing: .02em;
}
.hero-eyebrow .icon { width: 14px; height: 14px; }
.hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
.hero h1 .accent { color: var(--royal); }
.hero-sub { font-size: 18px; max-width: 680px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }

.hero-badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
}
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-size: 13.5px; font-weight: 600; color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.badge-pill .icon { width: 16px; height: 16px; color: var(--gold); }

/* Page header (non-home hero) */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, #16213E 55%, var(--navy) 100%);
  padding: 90px 0 76px;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle 500px at 85% 20%, rgba(212,175,55,.15), transparent),
                     radial-gradient(circle 400px at 10% 90%, rgba(37,99,235,.25), transparent);
}
.page-header .container { position: relative; text-align: center; }
.page-header .hero-eyebrow { background: rgba(255,255,255,.08); color: var(--gold-light); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-header p { color: rgba(255,255,255,.72); max-width: 640px; margin: 0 auto; font-size: 17px; }
.breadcrumb { color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: var(--gold); }

/* ==========================================================================
   Sections
   ========================================================================== */

.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--bg-section); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-navy p { color: rgba(255,255,255,.68); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--royal); margin-bottom: 14px;
}
.section-navy .eyebrow { color: var(--gold); }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; transition: all .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.icon-tile {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--royal-light), #E4ECFF);
  color: var(--royal); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-tile .icon { width: 26px; height: 26px; }
.icon-tile.gold { background: linear-gradient(135deg, #FCF6E4, #F6E9C2); color: #B8932C; }

.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; margin-bottom: 18px; }
.service-card .card-link { color: var(--royal); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; }
.service-card .card-link .icon { width: 16px; height: 16px; transition: transform .2s ease; }
.service-card .card-link:hover .icon { transform: translateX(4px); }

.feature-card { text-align: left; }
.feature-list { display: flex; flex-direction: column; gap: 22px; }
.feature-row { display: flex; gap: 18px; align-items: flex-start; }
.feature-row .icon-tile { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; }
.feature-row .icon-tile .icon { width: 22px; height: 22px; }
.feature-row h4 { font-size: 16.5px; margin-bottom: 4px; }
.feature-row p { font-size: 14.5px; margin: 0; }

/* Steps / How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: step; }
.step { position: relative; text-align: center; padding: 12px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: var(--font-heading);
  font-weight: 700; font-size: 18px; margin: 0 auto 20px; position: relative; z-index: 1;
}
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 14px; }
.steps-6 { grid-template-columns: repeat(3, 1fr); }
@media (min-width: 900px) { .steps-6 { grid-template-columns: repeat(6, 1fr); } }
.steps-6 .step-num { width: 44px; height: 44px; font-size: 15px; }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: var(--navy); border-radius: var(--radius-lg); padding: 52px 40px;
  position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 400px at 15% 0%, rgba(212,175,55,.18), transparent),
              radial-gradient(circle 400px at 90% 100%, rgba(37,99,235,.3), transparent);
}
.stat-item { position: relative; text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; color: var(--white); display: block; }
.stat-num .gold { color: var(--gold); }
.stat-label { color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; margin-top: 6px; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: stretch; }
.pricing-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; display: flex; flex-direction: column; position: relative;
  transition: all .25s ease;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--royal); box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, var(--white), var(--royal-light) 500%);
}
.pricing-card.ultimate { border-color: var(--gold); background: linear-gradient(160deg, var(--navy), #182644); }
.pricing-card.ultimate * { color: var(--white); }
.pricing-card.ultimate p { color: rgba(255,255,255,.65); }
.pricing-card.ultimate .price-strike { color: rgba(255,255,255,.5); }

.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 700;
  padding: 6px 18px; border-radius: var(--radius-pill); white-space: nowrap;
  box-shadow: var(--shadow-gold);
}
.pricing-name { font-family: var(--font-heading); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.pricing-desc { font-size: 13.5px; margin-bottom: 20px; min-height: 40px; }
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.price-amount { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--navy); }
.pricing-card.ultimate .price-amount { color: var(--white); }
.price-currency { font-size: 16px; font-weight: 600; color: var(--text-muted); }
.price-note { font-size: 13px; color: var(--text-soft); margin-bottom: 26px; }
.pricing-features { display: flex; flex-direction: column; gap: 13px; margin-bottom: 30px; flex-grow: 1; }
.pricing-features li { display: flex; gap: 10px; font-size: 14px; align-items: flex-start; }
.pricing-features .icon { width: 18px; height: 18px; color: var(--royal); flex-shrink: 0; margin-top: 1px; }
.pricing-card.ultimate .pricing-features .icon { color: var(--gold); }

/* Feature comparison table */
.compare-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table th { font-family: var(--font-heading); background: var(--bg-section); color: var(--navy); }
.compare-table td:first-child, .compare-table th:first-child { text-align: left; font-weight: 600; color: var(--navy); }
.compare-table .icon-yes { color: var(--royal); width: 20px; height: 20px; }
.compare-table .icon-no { color: var(--text-soft); width: 18px; height: 18px; }
.compare-table tr:last-child td { border-bottom: none; }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px;
}
.stars { display: inline-flex; gap: 3px; margin-bottom: 16px; }
.stars .icon { width: 16px; height: 16px; }
.star-filled { color: var(--gold); fill: var(--gold); }
.star-empty { color: var(--border); }
.testimonial-quote { font-size: 15px; color: var(--text); margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 700;
  font-family: var(--font-heading); font-size: 14px; flex-shrink: 0;
}
.person-name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.person-role { font-size: 13px; color: var(--text-soft); }
.flag { font-size: 15px; margin-left: 4px; }

.carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 24px; transition: transform .45s ease; }
.carousel-track .testimonial-card { flex: 0 0 calc(33.333% - 16px); }
.carousel-nav { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); border: none; padding: 0; }
.carousel-dot.active { background: var(--royal); width: 24px; border-radius: 5px; transition: all .2s ease; }
.carousel-arrows { display: flex; justify-content: center; gap: 14px; margin-top: 28px; }
.carousel-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--white); display: flex; align-items: center; justify-content: center;
  transition: all .2s ease;
}
.carousel-arrow:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 22px 26px; background: none; border: none; text-align: left;
  font-family: var(--font-heading); font-weight: 600; font-size: 15.5px; color: var(--navy);
}
.faq-question .icon { color: var(--royal); transition: transform .25s ease; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer-inner { padding: 0 26px 22px; font-size: 14.5px; color: var(--text-muted); }
.faq-item.open .faq-answer { max-height: 400px; }

.faq-categories { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.faq-cat-btn {
  padding: 10px 20px; border-radius: var(--radius-pill); border: 1px solid var(--border);
  background: var(--white); font-size: 13.5px; font-weight: 600; color: var(--text-muted);
}
.faq-cat-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
label { display: block; font-size: 13.5px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
input, select, textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 14.5px; color: var(--text); background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--royal); box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12.5px; color: var(--text-soft); margin-top: 6px; }
.form-alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 14px; font-weight: 500; }
.form-alert.success { background: #ECFDF5; color: #065F46; border: 1px solid #A7F3D0; }
.form-alert.error { background: #FEF2F2; color: #991B1B; border: 1px solid #FECACA; }

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1B2A4A 60%, var(--navy) 100%);
  border-radius: var(--radius-lg); padding: 70px 50px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 450px at 20% 20%, rgba(212,175,55,.18), transparent),
              radial-gradient(circle 450px at 85% 90%, rgba(37,99,235,.28), transparent);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-banner p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; }
.logo-footer .logo-text { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 14px; margin: 18px 0 22px; max-width: 320px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .2s ease;
}
.footer-social a:hover { background: var(--gold); color: var(--navy); }
.footer-social .icon { width: 17px; height: 17px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.6); }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: rgba(255,255,255,.6); }
.footer-contact .icon { width: 16px; height: 16px; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { margin: 0; font-size: 13px; color: rgba(255,255,255,.5); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.5); }
.footer-legal a:hover { color: var(--gold); }

/* ==========================================================================
   Floating buttons
   ========================================================================== */

.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float .icon { width: 28px; height: 28px; }

.scroll-top {
  position: fixed; bottom: 26px; right: 96px; z-index: 900;
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--white);
  border: none; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .25s ease;
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top .icon { width: 20px; height: 20px; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

/* ==========================================================================
   Misc utility
   ========================================================================== */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ==========================================================================
   Photography
   ========================================================================== */

.photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-frame.ratio-4-3 { aspect-ratio: 4 / 3; }
.photo-frame.ratio-16-9 { aspect-ratio: 16 / 9; }
.photo-frame.ratio-1-1 { aspect-ratio: 1 / 1; }

.photo-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 320px; display: flex; align-items: flex-end; box-shadow: var(--shadow-lg); margin-bottom: 64px;
}
.photo-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.photo-banner::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,23,42,.1) 0%, rgba(15,23,42,.55) 55%, rgba(15,23,42,.92) 100%);
}
.photo-banner-caption { position: relative; z-index: 2; padding: 40px 44px; color: var(--white); }
.photo-banner-caption span.eyebrow { color: var(--gold-light); }
.photo-banner-caption h3 { color: var(--white); font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin-bottom: 8px; }
.photo-banner-caption p { color: rgba(255,255,255,.75); margin: 0; max-width: 560px; }

.stats-bar-photo::before {
  background: linear-gradient(135deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.8) 55%, rgba(15,23,42,.92) 100%),
              radial-gradient(circle 400px at 15% 0%, rgba(212,175,55,.22), transparent),
              radial-gradient(circle 400px at 90% 100%, rgba(37,99,235,.35), transparent);
}

.package-visual-figure {
  position: absolute; right: 6px; bottom: 0; width: 230px; max-width: 32%;
  opacity: .92; pointer-events: none; z-index: 0;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.35));
}
.job-ready-package-box > .package-visual-figure { position: absolute; }

@media (max-width: 860px) {
  .photo-banner-caption { padding: 28px 26px; }
  .package-visual-figure { display: none; }
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 8px 16px; border-radius: var(--radius-pill); background: var(--bg-section);
  border: 1px solid var(--border); font-size: 13px; font-weight: 600; color: var(--navy);
}
.divider { height: 1px; background: var(--border); margin: 56px 0; }

.value-card { text-align: center; padding: 36px 24px; }
.value-card .icon-tile { margin: 0 auto 20px; }

.portfolio-frame {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-sm); transition: all .25s ease;
}
.portfolio-frame:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.mock-doc { background: var(--bg-section); border-radius: var(--radius-sm); padding: 20px; font-size: 11px; }
.mock-doc-header { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 12px; border-bottom: 2px solid var(--navy); margin-bottom: 12px; }
.mock-doc-name { font-family: var(--font-heading); font-weight: 800; font-size: 15px; color: var(--navy); }
.mock-doc-role { color: var(--royal); font-weight: 600; }
.mock-doc-contact { text-align: right; color: var(--text-soft); font-size: 9.5px; line-height: 1.7; }
.mock-doc-section-title { font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; font-size: 9.5px; margin: 12px 0 6px; }
.mock-line { height: 6px; background: var(--border); border-radius: 3px; margin-bottom: 6px; }
.mock-line.w-60 { width: 60%; } .mock-line.w-80 { width: 80%; } .mock-line.w-40 { width: 40%; } .mock-line.w-90{width:90%;}
.portfolio-caption { margin-top: 18px; text-align: center; }
.portfolio-caption h4 { font-size: 15px; margin-bottom: 4px; }
.portfolio-caption p { font-size: 13px; margin: 0; }

.industry-badges { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }

/* Service detail sections */
.service-detail { padding: 88px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-of-type { border-bottom: none; }
.service-visual {
  background: linear-gradient(150deg, var(--navy), #1B2A4A 70%);
  border-radius: var(--radius-lg); padding: 52px 40px; color: var(--white);
  position: relative; overflow: hidden; text-align: center;
}
.service-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle 300px at 15% 10%, rgba(212,175,55,.2), transparent),
              radial-gradient(circle 300px at 90% 95%, rgba(37,99,235,.3), transparent);
}
.service-visual > * { position: relative; }
.service-visual .icon-tile {
  width: 76px; height: 76px; margin: 0 auto 22px; background: rgba(212,175,55,.15); color: var(--gold);
}
.service-visual .icon-tile .icon { width: 34px; height: 34px; }
.service-visual h4 { color: var(--white); font-size: 18px; margin-bottom: 24px; }
.deliverable-chip-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.deliverable-chip {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15); padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600;
}
.deliverable-chip .icon { width: 14px; height: 14px; color: var(--gold); }

.detail-label { font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); margin: 26px 0 12px; }
.detail-label:first-child { margin-top: 0; }
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text-muted); align-items: flex-start; }
.check-list .icon { width: 18px; height: 18px; color: var(--royal); flex-shrink: 0; margin-top: 2px; }
.mini-process { display: flex; flex-wrap: wrap; gap: 10px; }
.mini-process span {
  background: var(--bg-section); border: 1px solid var(--border); padding: 8px 14px;
  border-radius: var(--radius-pill); font-size: 13px; font-weight: 600; color: var(--navy);
}
.ideal-client-box {
  background: var(--royal-light); border-radius: var(--radius); padding: 18px 22px; margin-top: 20px;
  font-size: 14px; color: var(--navy); display: flex; gap: 12px; align-items: flex-start;
}
.ideal-client-box .icon { color: var(--royal); flex-shrink: 0; margin-top: 2px; }
.service-detail-head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.service-detail-head .icon-tile { margin-bottom: 0; }
.service-price-tag { font-size: 14px; font-weight: 700; color: var(--royal); margin-bottom: 18px; display: inline-block; }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1240px) {
  .nav-links {
    position: fixed; top: 84px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 32px 24px; gap: 8px; transform: translateX(100%); transition: transform .3s ease;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .navbar-actions .btn { display: none; }
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .carousel-track .testimonial-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .compare-table { display: block; overflow-x: auto; white-space: nowrap; font-size: 12.5px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps-6 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .carousel-track .testimonial-card { flex: 0 0 100%; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 72px; }
  .cta-banner { padding: 48px 24px; }
  .whatsapp-float { width: 50px; height: 50px; bottom: 18px; right: 18px; }
  .scroll-top { width: 40px; height: 40px; bottom: 18px; right: 78px; }
}

@media (max-width: 480px) {
  .steps-6 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Repositioning & Career Consultation Updates
   ========================================================================== */

/* Nav link highlight for Career Consultation */
.nav-links a.nav-highlight {
  color: var(--royal) !important;
  font-weight: 700;
  border: 1.5px dashed var(--royal);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
}
.nav-links a.nav-highlight::after {
  display: none !important;
}
.nav-links a.nav-highlight:hover {
  background: var(--royal-light);
  border-style: solid;
  border-color: var(--royal-dark);
  color: var(--royal-dark) !important;
}
.nav-links a.nav-highlight.active {
  background: var(--royal);
  border-style: solid;
  border-color: var(--royal);
  color: var(--white) !important;
}

@media (max-width: 1024px) {
  .nav-links a.nav-highlight {
    border: none;
    padding: 14px 0;
    border-radius: 0;
    color: var(--royal) !important;
    font-weight: 700;
  }
  .nav-links a.nav-highlight:hover {
    background: none;
  }
}

/* Highlighted card in Job Ready Program */
.card.service-card.highlighted-card {
  border: 2px solid var(--gold);
  background: linear-gradient(180deg, var(--white), #FFFDF5 80%);
  box-shadow: var(--shadow-gold);
  position: relative;
  transform: scale(1.02);
}
.card.service-card.highlighted-card:hover {
  transform: scale(1.04) translateY(-6px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.35);
}
.card.service-card.highlighted-card::before {
  content: 'RECOMMENDED SERVICE';
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9.5px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.4);
}

/* Career Consultation Timeline/Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37,99,235,.2);
}
.process-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--royal-light);
  color: var(--royal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 24px;
  font-size: 16px;
  box-shadow: inset 0 2px 4px rgba(37,99,235,.1);
}
.process-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 700;
}
.process-step p {
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Who Needs Grid */
.who-needs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.who-needs-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: all .25s ease;
}
.who-needs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.who-needs-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy);
}
.who-needs-card p {
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .who-needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .who-needs-grid {
    grid-template-columns: 1fr;
  }
}

/* Job Ready Package Box (Premium side-by-side showstopper) */
.job-ready-package-box {
  background: linear-gradient(135deg, var(--navy) 0%, #16213E 60%, var(--navy) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}
.job-ready-package-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 500px at 85% 15%, rgba(212,175,55,.16), transparent),
              radial-gradient(circle 500px at 15% 85%, rgba(37,99,235,.22), transparent);
  pointer-events: none;
}
.job-ready-package-box > * {
  position: relative;
}
.job-ready-package-content h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.job-ready-package-content p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  margin-bottom: 32px;
}
.job-ready-package-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.job-ready-package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}
.job-ready-package-features .icon {
  color: var(--gold);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.job-ready-package-pricing {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15,23,42,.15);
}
.job-ready-package-pricing .pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 11.5px;
  font-weight: 800;
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
}
.job-ready-package-pricing .pricing-price {
  justify-content: center;
  margin-bottom: 6px;
}
.job-ready-package-pricing .price-amount {
  color: var(--white);
  font-size: 52px;
  line-height: 1;
}
.job-ready-package-pricing .price-currency {
  color: rgba(255,255,255,.75);
}
.job-ready-package-pricing .price-note {
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}

@media (max-width: 992px) {
  .job-ready-package-box {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    gap: 40px;
  }
  .job-ready-package-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .job-ready-package-features {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .job-ready-package-pricing {
    padding: 36px 24px;
  }
}

