/* ============================================================
   QP.SG — Design System & Global Styles
   Professional Engineering Authority Platform — Singapore
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  /* Colours */
  --navy:       #0A1628;
  --navy-mid:   #112240;
  --navy-light: #1B3A5C;
  --gold:       #C8962A;
  --gold-light: #E8B84B;
  --gold-pale:  #FDF3DC;
  --slate:      #4A5568;
  --slate-light:#718096;
  --smoke:      #F4F6F9;
  --white:      #FFFFFF;
  --border:     #DDE3EC;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w:      1200px;
  --max-w-text: 780px;
  --radius-sm:  4px;
  --radius:     8px;
  --radius-lg:  16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(10,22,40,.08), 0 1px 2px rgba(10,22,40,.06);
  --shadow:    0 4px 16px rgba(10,22,40,.10), 0 2px 6px rgba(10,22,40,.07);
  --shadow-lg: 0 10px 40px rgba(10,22,40,.14), 0 4px 16px rgba(10,22,40,.08);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-normal: 260ms ease;
  --t-slow:   400ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.625rem); }
h4 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-body); }
p  { color: var(--slate); line-height: 1.75; }
strong { font-weight: 600; color: var(--navy); }

.lead {
  font-size: 1.125rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ── Layout Utilities ──────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.container--narrow {
  max-width: var(--max-w-text);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.section { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }
.section--lg { padding-block: var(--sp-24); }
.section--dark { background: var(--navy); }
.section--smoke { background: var(--smoke); }
.section--gold-pale { background: var(--gold-pale); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-8); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-6); }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--t-normal);
  white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--outline {
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--outline-white {
  border: 2px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
}
.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.btn--wa {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
}
.btn--wa:hover {
  background: #20bf5b;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--phone {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: .01em;
}
.btn--phone:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ── Navigation ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t-normal);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo__main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}
.nav-logo__main span { color: var(--gold); }
.nav-logo__sub {
  font-size: 0.65rem;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--t-normal);
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: var(--sp-2); }

/* Mobile nav */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--t-normal);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--white);
  padding: var(--sp-8) var(--sp-6);
  flex-direction: column;
  gap: var(--sp-4);
  z-index: 899;
  border-top: 1px solid var(--border);
  animation: slideDown .25s ease;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--slate);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--navy); }
.nav-mobile .btn { margin-top: var(--sp-4); align-self: flex-start; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-block: var(--sp-24) var(--sp-20);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(200,150,42,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(27,58,92,.8) 0%, transparent 70%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200,150,42,.15);
  border: 1px solid rgba(200,150,42,.35);
  border-radius: 100px;
  padding: var(--sp-2) var(--sp-4);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
}
.hero__title {
  color: var(--white);
  margin-bottom: var(--sp-6);
  font-weight: 700;
}
.hero__title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__desc {
  color: rgba(255,255,255,.72);
  font-size: 1.0625rem;
  margin-bottom: var(--sp-8);
  max-width: 520px;
}
.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
}
.hero__trust {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  flex-direction: column;
}
.hero__trust-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero__trust-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: var(--sp-1);
}

/* Hero card */
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  backdrop-filter: blur(8px);
}
.hero__card-title {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold-light);
  margin-bottom: var(--sp-6);
}
.contact-form .form-group {
  margin-bottom: var(--sp-4);
}
.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-bottom: var(--sp-2);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 0.625rem 0.875rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: border-color var(--t-fast);
}
.contact-form input::placeholder { color: rgba(255,255,255,.35); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,.5)' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
}
.contact-form select option { background: var(--navy-mid); }

/* ── Section Headings ──────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.section-title {
  margin-bottom: var(--sp-4);
}
.section-desc {
  color: var(--slate);
  font-size: 1.0625rem;
  max-width: 600px;
}
.section-header--center {
  text-align: center;
  margin-bottom: var(--sp-12);
}
.section-header--center .section-desc {
  margin-inline: auto;
}

/* ── Service Cards ─────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-normal);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  margin-bottom: var(--sp-4);
}
.service-card__title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--navy);
  font-family: var(--font-body);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: var(--sp-4);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--t-fast);
}
.service-card__link:hover { gap: var(--sp-3); }

/* ── Process Steps ─────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-6);
  counter-reset: steps;
}
.process-step {
  position: relative;
  padding: var(--sp-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.process-step::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  margin-bottom: var(--sp-4);
}
.process-step h4 {
  margin-bottom: var(--sp-2);
  color: var(--navy);
}
.process-step p {
  font-size: 0.9rem;
  color: var(--slate);
}

/* ── FAQ Accordion ─────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--sp-5) var(--sp-6);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  cursor: pointer;
  transition: background var(--t-fast);
}
.faq-question:hover { background: var(--smoke); }
.faq-question.open { background: var(--gold-pale); color: var(--navy); }
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  transition: all var(--t-normal);
}
.faq-question.open .faq-icon {
  background: var(--gold);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-normal);
  padding-inline: var(--sp-6);
}
.faq-answer.open {
  max-height: 600px;
  padding-block: var(--sp-4) var(--sp-6);
}
.faq-answer p { font-size: 0.9375rem; color: var(--slate); line-height: 1.75; }
.faq-answer ul { margin-top: var(--sp-3); padding-left: var(--sp-5); list-style: disc; }
.faq-answer li { font-size: 0.9375rem; color: var(--slate); margin-bottom: var(--sp-2); }

/* ── Credentials / Trust Bar ───────────────────────────── */
.credentials-bar {
  background: var(--navy-mid);
  padding-block: var(--sp-8);
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-8);
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}
.credential-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.credential-text strong {
  display: block;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: var(--sp-1);
}
.credential-text span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

/* ── PE Profile Card ───────────────────────────────────── */
.pe-profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-12);
  align-items: start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  box-shadow: var(--shadow);
}
.pe-profile__photo {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.pe-profile__name {
  font-size: 1.625rem;
  margin-bottom: var(--sp-1);
}
.pe-profile__reg {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--sp-1) var(--sp-3);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}
.pe-quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.pe-qual-item {
  padding: var(--sp-4);
  background: var(--smoke);
  border-radius: var(--radius);
}
.pe-qual-item strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--slate-light);
  margin-bottom: var(--sp-1);
}
.pe-qual-item span {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

/* ── Testimonials ──────────────────────────────────────── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-6);
  opacity: .4;
}
.testimonial-text {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  padding-top: var(--sp-6);
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--slate-light);
}
.stars {
  color: var(--gold);
  font-size: 0.875rem;
  margin-bottom: var(--sp-4);
}

/* ── CTA Section ───────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,150,42,.12) 0%, transparent 70%);
}
.cta-inner {
  position: relative;
  text-align: center;
  padding-block: var(--sp-20);
}
.cta-inner h2 { color: var(--white); margin-bottom: var(--sp-4); }
.cta-inner p  { color: rgba(255,255,255,.7); font-size: 1.0625rem; margin-bottom: var(--sp-8); max-width: 540px; margin-inline: auto; }
.cta-actions  { display: flex; gap: var(--sp-4); justify-content: center; flex-wrap: wrap; }

/* ── Blog Cards ────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-normal);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.blog-card__img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; }
.blog-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.blog-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-3);
  line-height: 1.45;
  font-family: var(--font-body);
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--slate);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-4);
}
.blog-card__meta {
  font-size: 0.8rem;
  color: var(--slate-light);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

/* ── Page Hero (inner pages) ───────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-block: var(--sp-16) var(--sp-12);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 0%, rgba(200,150,42,.15) 0%, transparent 65%);
}
.page-hero__content { position: relative; }
.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-4);
}
.page-hero__breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--t-fast); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); }
.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.7); margin-top: var(--sp-4); max-width: 620px; }

/* ── Pricing Table ─────────────────────────────────────── */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.pricing-table th,
.pricing-table td {
  padding: var(--sp-4) var(--sp-6);
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.pricing-table th:first-child { border-radius: var(--radius) 0 0 0; }
.pricing-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.pricing-table tr:nth-child(even) td { background: var(--smoke); }
.pricing-table td:last-child { font-weight: 600; color: var(--navy); }
.pricing-note {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-top: var(--sp-4);
  font-style: italic;
}

/* ── Highlight Box ─────────────────────────────────────── */
.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-6) var(--sp-8);
}
.highlight-box p { color: var(--navy); font-weight: 500; }

.warning-box {
  background: #FFF3CD;
  border-left: 4px solid #F59E0B;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--sp-6) var(--sp-8);
}
.warning-box strong { color: #B45309; }
.warning-box p { color: #78350F; }

/* ── Checklist ─────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: var(--sp-3); }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.9375rem;
  color: var(--slate);
}
.checklist li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: var(--sp-8);
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo span { color: var(--gold); }
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-1);
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
}
.footer-reg {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(200,150,42,.12);
  border: 1px solid rgba(200,150,42,.3);
  border-radius: var(--radius-sm);
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.75rem;
  color: var(--gold-light);
  font-weight: 500;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--sp-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-3);
}
.footer-contact-item .icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color var(--t-fast); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Floating WhatsApp ─────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  z-index: 800;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: #25D366;
  color: var(--white);
  border-radius: 100px;
  padding: 0.75rem 1.25rem 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--t-normal);
  text-decoration: none;
}
.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1200px) {
  .nav-links { gap: var(--sp-3); }
  .nav-links a { font-size: 0.8rem; }
}
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .pe-profile { grid-template-columns: 1fr; }
  .pe-profile__photo { aspect-ratio: unset; height: 200px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* Hide lower-priority nav items at medium width */
  .nav-links a[href="services.html"],
  .nav-links a[href="qp-submission.html"] { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .hero__trust { gap: var(--sp-6); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .pe-quals { grid-template-columns: 1fr; }
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th, .pricing-table td { padding: var(--sp-3) var(--sp-4); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-actions  { flex-direction: column; align-items: center; }
  .wa-float span { display: none; }
  .wa-float { padding: 0.875rem; border-radius: 50%; }
}
