/* ================================================
   HAFSA B2B MARKETING THEME — MAIN STYLESHEET
   Design System: Gold (#b8915a) + Navy (#2F4A9D)
   Fonts: Cormorant Garamond + DM Sans
   ================================================ */

/* ── Google Fonts ──────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

/* ── CSS Variables ─────────────────────────────── */
:root {
  --gold:        #b8915a;
  --gold-dk:     #9a7545;
  --navy:        #2F4A9D;
  --navy-dk:     #1e3178;
  --teal:        #2a6b6b;
  --ink:         #0e0e0e;
  --ink-soft:    #4a4a4a;
  --mist:        #f5f3ef;
  --cream:       #faf9f6;
  --border:      #e2ddd6;
  --white:       #ffffff;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'DM Sans', system-ui, sans-serif;
  --radius:      6px;
  --shadow:      0 4px 32px rgba(14,14,14,0.09);
  --shadow-lg:   0 16px 64px rgba(14,14,14,0.14);
  --container:   1180px;
  --header-h:    70px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }
input, textarea, select {
  font-family: var(--sans);
  outline: none;
}

/* ── Container ─────────────────────────────────── */
.hf-container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

/* ── Section ───────────────────────────────────── */
.hf-section { padding: 90px 0; }
.hf-section--dark { background: var(--ink); }
.hf-section--mist { background: var(--mist); }
.hf-section--navy { background: var(--navy); }

/* ── Typography ────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

/* ── Section Label ─────────────────────────────── */
.hf-label {
  display: inline-block;
  background: rgba(184,145,90,0.12);
  border: 1px solid rgba(184,145,90,0.3);
  color: var(--gold);
  padding: 5px 18px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 14px;
}

/* ── Buttons ───────────────────────────────────── */
.hf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  border: none;
  transition: all 0.25s ease;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
}
.hf-btn--primary   { background: var(--navy); color: #fff; }
.hf-btn--primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,145,90,0.3); color: #fff; }
.hf-btn--gold      { background: var(--gold); color: #fff; }
.hf-btn--gold:hover { background: var(--gold-dk); transform: translateY(-2px); color: #fff; }
.hf-btn--outline   { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.hf-btn--outline:hover { background: var(--navy); color: #fff; }
.hf-btn--white     { background: #fff; color: var(--navy); }
.hf-btn--white:hover { background: var(--gold); color: #fff; }
.hf-btn--lg        { padding: 15px 34px; font-size: 15px; }

/* ================================================
   HEADER
   ================================================ */
.hf-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: var(--header-h);
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(14,14,14,0.06);
  transition: all 0.3s ease;
}
.hf-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
/* Logo */
.hf-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.hf-logo__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--ink);
}
.hf-logo__name span { color: var(--gold); }
.hf-logo__sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}
/* Nav */
.hf-nav { display: flex; align-items: center; gap: 32px; }
.hf-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.2s;
}
.hf-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.hf-nav a:hover { color: var(--gold); }
.hf-nav a:hover::after,
.hf-nav a.current { color: var(--gold); }
.hf-nav a.current::after { width: 100%; }
.hf-nav__cta {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.hf-nav__cta:hover {
  background: var(--gold-dk) !important;
  transform: translateY(-1px) !important;
}
.hf-nav__cta::after { display: none !important; }
/* Hamburger */
.hf-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink);
  padding: 4px;
}
/* Mobile overlay */
.hf-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 9998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.hf-mobile-nav.is-open { display: flex; }
.hf-mobile-nav a {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  color: #fff;
  transition: color 0.2s;
}
.hf-mobile-nav a:hover { color: var(--gold); }
.hf-mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
}

/* ── Body offset for fixed header ──────────────── */
body { padding-top: var(--header-h); }
.hf-page-canvas { padding-top: 0; }

/* ================================================
   HERO
   ================================================ */
.hf-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--ink);
  overflow: hidden;
}
.hf-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(47,74,157,0.25), transparent),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(184,145,90,0.18), transparent);
}
.hf-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hf-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 800px;
}
.hf-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,145,90,0.12);
  border: 1px solid rgba(184,145,90,0.3);
  color: var(--gold);
  padding: 7px 18px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-bottom: 28px;
}
.hf-hero h1 {
  color: #fff;
  font-style: italic;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
}
.hf-hero h1 em { font-style: normal; color: var(--gold); }
.hf-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hf-hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 64px;
}
.hf-hero__btns .hf-btn--outline {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
}
.hf-hero__btns .hf-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.hf-hero__stats {
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hf-hero__stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.hf-hero__stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ================================================
   TRUST BAR
   ================================================ */
.hf-trust {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.hf-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hf-trust__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  opacity: 0.7;
}
.hf-trust__item i { color: var(--gold); }

/* ================================================
   ABOUT SPLIT
   ================================================ */
.hf-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hf-about-visual {
  background: linear-gradient(135deg, var(--navy), var(--gold));
  border-radius: var(--radius);
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 6rem;
  color: rgba(255,255,255,0.15);
  font-style: italic;
  position: relative;
}
.hf-about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}
.hf-about__badge-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hf-about__badge-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 4px;
}
.hf-about-text h2 { margin-bottom: 16px; }
.hf-about-text p { color: var(--ink-soft); margin-bottom: 18px; line-height: 1.8; }
.hf-checklist {
  margin: 24px 0 32px;
}
.hf-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-soft);
}
.hf-checklist li:last-child { border-bottom: none; }
.hf-checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.hf-btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* ================================================
   SERVICES GRID
   ================================================ */
.hf-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.hf-section-head h2 { margin-bottom: 14px; }
.hf-section-head p { color: var(--ink-soft); font-size: 16px; }
.hf-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.hf-service-card {
  background: var(--white);
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.hf-service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.hf-service-card:hover { background: var(--cream); }
.hf-service-card:hover::after { width: 100%; }
.hf-service-card__icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hf-service-card h4 { margin-bottom: 10px; }
.hf-service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.hf-service-card__link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.hf-service-card:hover .hf-service-card__link { gap: 8px; }
.hf-services-cta { text-align: center; margin-top: 36px; }

/* ================================================
   WHY CHOOSE + STATS
   ================================================ */
.hf-why-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 48px;
}
.hf-why-card {
  background: #111;
  padding: 36px 28px;
  transition: background 0.3s;
}
.hf-why-card:hover { background: #161616; }
.hf-why-card__icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hf-why-card h5 { color: #fff; font-size: 15px; font-family: var(--sans); margin-bottom: 10px; }
.hf-why-card p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.hf-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.08);
}
.hf-stat {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hf-stat:last-child { border-right: none; }
.hf-stat__num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hf-stat__lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ================================================
   PRICING
   ================================================ */
.hf-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.hf-price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: all 0.3s;
}
.hf-price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hf-price-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  position: relative;
  margin-top: -14px;
}
.hf-price-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  padding: 4px 18px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: var(--sans);
}
.hf-price-card__tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hf-price-card__name {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.hf-price-card--featured .hf-price-card__name { color: #fff; }
.hf-price-card__amount {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.hf-price-card--featured .hf-price-card__amount { color: #fff; }
.hf-price-card__period {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.hf-price-card--featured .hf-price-card__period { color: rgba(255,255,255,0.55); }
.hf-price-card__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}
.hf-price-card--featured .hf-price-card__divider { border-color: rgba(255,255,255,0.1); }
.hf-price-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 18px;
}
.hf-price-card--featured .hf-price-card__desc { color: rgba(255,255,255,0.65); }
.hf-price-card__features { margin-bottom: 28px; }
.hf-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.hf-price-card--featured .hf-price-card__features li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.1);
}
.hf-price-card__features li:last-child { border-bottom: none; }
.hf-price-card__features li::before {
  content: '✓';
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 700;
}
.hf-price-card .hf-btn { width: 100%; justify-content: center; }
.hf-price-card--featured .hf-btn--gold { background: var(--gold); }

/* ================================================
   CTA BANNER
   ================================================ */
.hf-cta {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  border-radius: 12px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hf-cta::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hf-cta .hf-label { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; }
.hf-cta h2 { color: #fff; margin-bottom: 14px; font-size: 2.4rem; }
.hf-cta p { color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 28px; font-size: 15px; }

/* ================================================
   FAQS
   ================================================ */
.hf-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hf-faq-visual {
  background: linear-gradient(135deg, var(--navy), var(--gold));
  border-radius: var(--radius);
  min-height: 420px;
  position: relative;
}
.hf-faq-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hf-faq-badge span {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hf-faq-badge small { font-size: 11px; color: var(--ink-soft); letter-spacing: 0.06em; }
.hf-faq h2 { margin-bottom: 24px; }
.hf-faq-list {}
.hf-faq-item { border-bottom: 1px solid var(--border); }
.hf-faq-item:first-child { border-top: 1px solid var(--border); }
.hf-faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 0.2s;
}
.hf-faq-question:hover { color: var(--gold); }
.hf-faq-question i {
  flex-shrink: 0;
  font-size: 18px;
  color: var(--gold);
  transition: transform 0.3s;
}
.hf-faq-item.is-open .hf-faq-question i { transform: rotate(45deg); }
.hf-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.hf-faq-item.is-open .hf-faq-answer { max-height: 300px; }
.hf-faq-answer p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.hf-contact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 72px;
  align-items: start;
}
.hf-contact-info h2 { margin-bottom: 16px; }
.hf-contact-info p { color: var(--ink-soft); margin-bottom: 32px; line-height: 1.8; }
.hf-contact-items { display: flex; flex-direction: column; gap: 18px; }
.hf-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hf-contact-item__icon {
  width: 44px; height: 44px;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
}
.hf-contact-item__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hf-contact-item__value {
  font-size: 14px;
  color: var(--ink-soft);
}
.hf-contact-item__value a { color: inherit; transition: color 0.2s; }
.hf-contact-item__value a:hover { color: var(--gold); }
.hf-contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}
.hf-contact-social a {
  width: 40px; height: 40px;
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.hf-contact-social a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
  transform: translateY(-3px);
}
/* Contact Form */
.hf-contact-form {
  background: var(--mist);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}
.hf-contact-form h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: 28px;
}
.hf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hf-form-group { margin-bottom: 16px; }
.hf-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.hf-form-group input,
.hf-form-group select,
.hf-form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hf-form-group input:focus,
.hf-form-group select:focus,
.hf-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,90,0.12);
}
.hf-form-group textarea { resize: vertical; min-height: 120px; }
.hf-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}
.hf-form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #2e7d32;
  font-size: 14px;
  margin-bottom: 18px;
  align-items: center;
  gap: 10px;
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.hf-page-hero {
  background: var(--mist);
  padding: 80px 0 60px;
  text-align: center;
}
.hf-page-hero h1 { font-style: italic; margin-bottom: 14px; }
.hf-page-hero p { color: var(--gold); font-size: 1.05rem; font-weight: 500; }
/* Education grid */
.hf-edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.hf-edu-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.hf-edu-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.hf-edu-card__year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hf-edu-card h4 { margin-bottom: 4px; font-size: 1.1rem; }
.hf-edu-card__school {
  font-size: 13px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 8px;
}
.hf-edu-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
/* Experience timeline */
.hf-timeline {
  border-left: 2px solid var(--gold);
  padding-left: 32px;
  margin-left: 8px;
}
.hf-timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.hf-timeline-item:last-child { margin-bottom: 0; }
.hf-timeline-item::before {
  content: '';
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  left: -39px; top: 5px;
}
.hf-timeline-item__period {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.hf-timeline-item h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}
.hf-timeline-item__company {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.hf-timeline-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* ================================================
   PAGE HERO (Inner pages)
   ================================================ */
.hf-inner-hero {
  background: var(--mist);
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.hf-inner-hero h1 { font-style: italic; margin-bottom: 14px; }
.hf-inner-hero p { color: var(--ink-soft); max-width: 520px; margin: 0 auto; font-size: 16px; line-height: 1.8; }

/* ================================================
   FOOTER
   ================================================ */
.hf-footer {
  background: #080808;
  color: rgba(255,255,255,0.5);
  padding: 70px 0 0;
}
.hf-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
}
.hf-footer-brand .hf-logo__name { color: #fff; font-size: 1.8rem; }
.hf-footer-brand .hf-logo__sub { color: rgba(255,255,255,0.4); }
.hf-footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.45); margin-top: 16px; }
.hf-footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  font-family: var(--sans);
}
.hf-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.hf-footer-col ul li a { font-size: 13px; transition: color 0.2s; }
.hf-footer-col ul li a:hover { color: var(--gold); }
.hf-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  padding: 4px 0;
}
.hf-footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.hf-footer-contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.hf-footer-contact a:hover { color: var(--gold); }
.hf-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.hf-footer-social { display: flex; gap: 14px; }
.hf-footer-social a { font-size: 16px; transition: color 0.2s; }
.hf-footer-social a:hover { color: var(--gold); }

/* ================================================
   ANIMATIONS
   ================================================ */
.hf-fade { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.hf-fade.is-visible { opacity: 1; transform: translateY(0); }
.hf-fade:nth-child(2) { transition-delay: 0.1s; }
.hf-fade:nth-child(3) { transition-delay: 0.2s; }
.hf-fade:nth-child(4) { transition-delay: 0.3s; }
.hf-fade:nth-child(5) { transition-delay: 0.4s; }
.hf-fade:nth-child(6) { transition-delay: 0.5s; }

/* ================================================
   PROCESS STEPS
   ================================================ */
.hf-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.hf-process-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.3s, transform 0.3s;
}
.hf-process-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.hf-process-card--featured { background: var(--navy); border-color: var(--navy); }
.hf-process-card__num {
  font-family: var(--serif);
  font-size: 2.8rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}
.hf-process-card h4 { font-size: 1.1rem; margin-bottom: 8px; }
.hf-process-card--featured h4 { color: #fff; }
.hf-process-card p { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }
.hf-process-card--featured p { color: rgba(255,255,255,0.65); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hf-about-grid { grid-template-columns: 1fr; gap: 48px; }
  .hf-about-visual { max-height: 380px; min-height: 280px; }
  .hf-about__badge { right: 0; }
  .hf-services-grid { grid-template-columns: 1fr 1fr; }
  .hf-why-cards { grid-template-columns: 1fr 1fr; }
  .hf-stats-bar { grid-template-columns: 1fr 1fr; }
  .hf-faq-grid { grid-template-columns: 1fr; }
  .hf-contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hf-pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .hf-footer-grid { grid-template-columns: 1fr 1fr; }
  .hf-process-grid { grid-template-columns: 1fr 1fr; }
  .hf-edu-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .hf-section { padding: 64px 0; }
  .hf-nav { display: none; }
  .hf-menu-toggle { display: block; }
  .hf-hero h1 { font-size: 2.6rem; }
  .hf-hero__stats { gap: 24px; }
  .hf-services-grid { grid-template-columns: 1fr; }
  .hf-why-cards { grid-template-columns: 1fr; }
  .hf-cta { padding: 40px 24px; }
  .hf-cta h2 { font-size: 1.8rem; }
  .hf-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hf-footer-bottom { flex-direction: column; text-align: center; }
  .hf-form-row { grid-template-columns: 1fr; }
  .hf-process-grid { grid-template-columns: 1fr 1fr; }
  .hf-pricing-grid { max-width: 100%; }
  .hf-price-card--featured { margin-top: 0; }
}
