/* ============================================
   InspireHR Group – Main Stylesheet
   ============================================ */

/* Fonts loaded via <link> in seo-head.php (parallel fetch, not render-blocking @import) */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0f2040;
  --navy2:  #1a3255;
  --gold:   #c9952a;
  --gold2:  #e0b040;
  --blue:   #1e6fa8;
  --light:  #f4f6fa;
  --white:  #ffffff;
  --gray:   #6b7280;
  --dark:   #111827;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(15,32,64,.12);
  --trans:  .3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---- Typography ---- */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 18px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  transition: var(--trans);
  letter-spacing: .02em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,149,42,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,149,42,.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn-dark {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(15,32,64,.25);
}
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }

/* ============================================
   NAV
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
  padding: 22px 0;
}
#navbar.scrolled {
  background: rgba(10,20,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .02em;
  display: flex;
  flex-direction: column;
}
.nav-logo .logo-text .brand-main {
  color: var(--white);
  letter-spacing: .04em;
}
.nav-logo .logo-text .brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .58rem;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: .25em;
  margin-top: 4px;
  text-transform: uppercase;
}
.footer-brand .logo .name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  color: var(--white);
  line-height: 1;
  display: flex;
  flex-direction: column;
  letter-spacing: .04em;
}
.footer-brand .logo .name .brand-sub {
  font-family: 'Poppins', sans-serif;
  font-size: .6rem;
  font-weight: 600;
  color: var(--gold2);
  letter-spacing: .25em;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,20,40,.97);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  transition: color var(--trans);
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/stock/about-team.jpg');
  background-image: -webkit-image-set(url('/images/stock/about-team.webp') 1x);
  background-image: image-set(url('/images/stock/about-team.webp') type('image/webp'), url('/images/stock/about-team.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,32,64,.95) 0%, rgba(15,32,64,.7) 60%, rgba(30,111,168,.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 80px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,149,42,.18);
  border: 1px solid rgba(201,149,42,.4);
  color: var(--gold2);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold2); }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 40px;
  padding: 32px 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold2);
}
.hero-stat .label {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
}
/* Floating card */
.hero-card {
  position: absolute;
  right: 80px;
  bottom: 120px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 24px 28px;
  min-width: 220px;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
}
.hero-card .card-title { font-size: .78rem; color: rgba(255,255,255,.6); margin-bottom: 12px; }
.hero-card .card-avatars { display: flex; margin-bottom: 10px; }
.hero-card .card-avatars img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  margin-right: -10px;
  object-fit: cover;
}
.hero-card .card-text { font-size: .82rem; color: var(--white); font-weight: 500; }
.hero-card .card-gold { color: var(--gold2); }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   TRUST LOGOS
   ============================================ */
.trust-bar {
  background: var(--light);
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-inner .label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}
.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #9ca3af;
  opacity: .7;
  transition: opacity var(--trans);
}
.trust-logo:hover { opacity: 1; color: var(--navy); }

/* ============================================
   SERVICES (Home teaser)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border: 1px solid #e9ecef;
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0);
  transition: transform var(--trans);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--gold2);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: var(--navy); font-family: 'Poppins', sans-serif; font-weight: 600; }
.service-card p { font-size: .92rem; color: var(--gray); margin-bottom: 20px; }
.service-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--trans), color var(--trans);
}
.service-link:hover { gap: 10px; color: var(--gold); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--light); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-wrap {
  position: relative;
}
.why-image-wrap img {
  border-radius: 16px;
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.why-badge-float {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--white);
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 200px;
}
.why-badge-float .icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  flex-shrink: 0;
}
.why-badge-float .text .num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.why-badge-float .text .sub { font-size: .75rem; color: var(--gray); }

.why-features { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; }
.why-feature .check {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(201,149,42,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .9rem;
  margin-top: 2px;
}
.why-feature h4 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.why-feature p { font-size: .88rem; color: var(--gray); }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,149,42,.15) 0%, transparent 70%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item { text-align: center; }
.stat-item .stat-icon { font-size: 2rem; color: var(--gold2); margin-bottom: 16px; }
.stat-item .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label { font-size: .88rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* ============================================
   PROCESS
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,149,42,.25);
}
.step h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.step p { font-size: .85rem; color: var(--gray); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative;
}
.testimonial-card .quote-icon {
  font-size: 3rem;
  color: var(--gold2);
  opacity: .25;
  position: absolute;
  top: 20px; right: 28px;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-card .stars { color: #f59e0b; font-size: .9rem; margin-bottom: 16px; }
.testimonial-card p { font-size: .95rem; color: var(--dark); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .name { font-weight: 600; font-size: .92rem; color: var(--navy); }
.testimonial-author .role { font-size: .8rem; color: var(--gray); }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold2) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--navy); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cta-band p { color: rgba(15,32,64,.8); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy2); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .logo .icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 1.1rem;
}
.footer-brand p { font-size: .88rem; line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--trans);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-col h4 { color: var(--white); font-family: 'Poppins', sans-serif; font-size: .95rem; font-weight: 600; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .87rem; color: rgba(255,255,255,.6); transition: color var(--trans); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--gold2); }
.footer-col ul li a i { font-size: .75rem; }

.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact .icon { color: var(--gold2); font-size: .9rem; margin-top: 4px; flex-shrink: 0; }
.footer-contact span { font-size: .87rem; line-height: 1.6; color: rgba(255,255,255,.65); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.4); }
.footer-bottom a { color: var(--gold2); }

/* ============================================
   PAGE HEROES (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/images/stock/hr-team-meeting.jpg');
  background-image: -webkit-image-set(url('/images/stock/hr-team-meeting.webp') 1x);
  background-image: image-set(url('/images/stock/hr-team-meeting.webp') type('image/webp'), url('/images/stock/hr-team-meeting.jpg') type('image/jpeg'));
  background-size: cover;
  background-position: center;
  opacity: .08;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold2); }
.breadcrumb i { font-size: .65rem; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-mission img {
  border-radius: 16px;
  height: 480px;
  object-fit: cover;
  width: 100%;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: var(--trans);
}
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.value-card .icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.4rem;
  color: var(--gold2);
}
.value-card h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: .84rem; color: var(--gray); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: var(--trans);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-photo { position: relative; overflow: hidden; }
.team-photo img { width: 100%; height: 300px; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,32,64,.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.team-socials { display: flex; gap: 8px; }
.team-socials a {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .8rem;
  transition: background var(--trans);
}
.team-socials a:hover { background: var(--gold); color: var(--navy); }
.team-info { padding: 20px 24px; background: var(--white); }
.team-info .name { font-weight: 600; font-size: 1.05rem; color: var(--navy); }
.team-info .role { font-size: .83rem; color: var(--gold); font-weight: 500; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: var(--trans);
  display: flex;
}
.service-full-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-full-icon {
  width: 90px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.8rem;
  color: var(--gold2);
}
.service-full-body { padding: 28px 28px 28px 24px; }
.service-full-body h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.service-full-body p { font-size: .88rem; color: var(--gray); margin-bottom: 16px; line-height: 1.7; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tag {
  background: var(--light);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.pricing-card {
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid #e9ecef;
  transition: var(--trans);
  position: relative;
  background: var(--white);
}
.pricing-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  border-color: var(--gold);
  color: var(--white);
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 50px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.pricing-card h3 { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.pricing-card .pricing-card:not(.featured) h3 { color: var(--navy); }
.price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; line-height: 1; margin: 20px 0; }
.price span { font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 400; }
.pricing-card:not(.featured) .price { color: var(--navy); }
.pricing-card.featured .price { color: var(--gold2); }
.pricing-features { margin: 24px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.pricing-features li { display: flex; gap: 10px; align-items: center; font-size: .88rem; }
.pricing-features li i { color: var(--gold2); font-size: .85rem; flex-shrink: 0; }
.pricing-card:not(.featured) .pricing-features li { color: var(--gray); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.8); }
.pricing-card:hover:not(.featured) { border-color: var(--gold); box-shadow: var(--shadow); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 28px; margin-top: 36px; }
.contact-info-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info-item .icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold2);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-info-item p { font-size: .88rem; color: var(--gray); line-height: 1.6; }

.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.09);
}
.contact-form-wrap h3 { font-family: 'Poppins', sans-serif; font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap .sub { font-size: .88rem; color: var(--gray); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  color: var(--dark);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,149,42,.12); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .why-grid { gap: 48px; }
  .services-full-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid, .about-mission, .contact-grid { grid-template-columns: 1fr; }
  .why-badge-float { display: none; }
  .hero-card { display: none; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 70px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
}

/* ============================================
   MOBILE FIXES – inline grid sections
   ============================================ */
@media (max-width: 768px) {
  /* About page – founder spotlight */
  [style*="grid-template-columns:1fr 1.4fr"],
  [style*="grid-template-columns: 1fr 1.4fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* Services page – hourly & project tables side by side */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* About page – stat badges row */
  [style*="display:flex;gap:20px;flex-wrap:wrap;margin-top:36px"] {
    justify-content: center;
  }
  /* Founder photo height */
  [style*="height:420px"] {
    height: 300px !important;
  }
  /* Pricing grid – already handled but ensure single column */
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  /* Team photo height */
  .team-photo img { height: 250px !important; }
  /* Contact page – remote section image */
  [style*="height:400px"] {
    height: 260px !important;
  }
  /* Contact info card – smaller padding on mobile */
  [style*="padding:28px 36px"] {
    padding: 20px 24px !important;
  }
  /* Extended network box – stack icon and text */
  [style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  /* Stat badges – center and wrap */
  [style*="display:flex;gap:24px;flex-wrap:wrap"] {
    justify-content: center;
  }
  /* Hero section – smaller text */
  .hero h1 { font-size: 2rem !important; }
  .page-hero h1 { font-size: 1.8rem !important; }
  /* Mission/vision cards */
  .about-mission img { height: 300px !important; }
}

@media (max-width: 480px) {
  /* Extra small screens */
  [style*="height:420px"] { height: 240px !important; }
  [style*="height:400px"] { height: 200px !important; }
  .pricing-card { padding: 28px 20px !important; }
  .price { font-size: 2.2rem !important; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
