/* ============================================================
   KENSHO HR SOLUTIONS — DESIGN SYSTEM
   ============================================================ */

/* === VARIABLES === */
:root {
  --navy:        #0D1F3C;
  --navy-deep:   #091830;
  --navy-mid:    #162B50;
  --navy-light:  #1E3A6E;
  --teal:        #0C8599;
  --teal-bright: #10A0B8;
  --teal-dark:   #0A6B79;
  --gold:        #C9A84C;
  --gold-light:  #DFC56A;
  --gold-dark:   #A88730;
  --cream:       #F7F5F0;
  --cream-dark:  #EDE9E0;
  --white:       #FFFFFF;
  --text-primary:   #0D1F3C;
  --text-secondary: #3D4F6B;
  --text-muted:     #6B7C9D;
  --text-light:     #9CA8BF;
  --border-light:   rgba(13, 31, 60, 0.08);
  --border-mid:     rgba(13, 31, 60, 0.15);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm:  0 1px 3px rgba(13,31,60,0.08), 0 1px 2px rgba(13,31,60,0.05);
  --shadow-md:  0 4px 12px rgba(13,31,60,0.08), 0 2px 4px rgba(13,31,60,0.05);
  --shadow-lg:  0 10px 30px rgba(13,31,60,0.10), 0 4px 8px rgba(13,31,60,0.05);
  --shadow-xl:  0 20px 50px rgba(13,31,60,0.12), 0 8px 16px rgba(13,31,60,0.06);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.20);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  --transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* === BASE === */
body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
html { overflow-x: hidden; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem);   font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-secondary); line-height: 1.75; }

.text-lg   { font-size: 1.125rem; }
.text-xl   { font-size: 1.25rem; }
.text-2xl  { font-size: 1.5rem; }
.text-sm   { font-size: 0.875rem; }
.text-xs   { font-size: 0.75rem; }

.font-serif { font-family: var(--font-serif); }
.font-sans  { font-family: var(--font-sans); }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold   { font-weight: 700; }

.text-navy   { color: var(--navy); }
.text-teal   { color: var(--teal); }
.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }

.text-center { text-align: center; }
.text-left   { text-align: left; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  display: block;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-white { color: rgba(255,255,255,0.6); }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

.section {
  padding: 6rem 0;
}
.section-sm   { padding: 4rem 0; }
.section-lg   { padding: 8rem 0; }

.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-dark .eyebrow { color: var(--teal-bright); }

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-navy-mid { background: var(--navy-mid); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(90deg, #0D1F3C 0%, #0a6677 35%, #0c8599 55%, #0a6677 75%, #0D1F3C 100%);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.announcement-bar-link {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  transition: opacity 0.2s;
}
.announcement-bar-link:hover { opacity: 0.78; }
.announcement-bar-cta {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.18rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.announcement-bar-dot {
  width: 4px;
  height: 4px;
  background: rgba(255,255,255,0.35);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .announcement-bar { height: 36px; }
  .announcement-bar-link { font-size: 0.68rem; gap: 0.5rem; padding: 0 0.75rem; text-align:center; }
  .announcement-bar-dot { display: none; }
  .announcement-bar-cta { display: none; }
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
}
.nav.transparent { background: transparent; }
.nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(13,31,60,0.08), var(--shadow-sm);
  padding: 0.875rem 0;
}
.nav.dark {
  background: rgba(9, 24, 48, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
}
.nav.scrolled .nav-logo-main { color: var(--navy); }
.nav.scrolled .nav-logo-sub  { color: var(--text-muted); }
.nav-logo-img {
  height: 144px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.3s;
}
.nav.scrolled .nav-logo-img {
  filter: none;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: var(--transition-fast);
}
.footer-social-link:hover { opacity: 1; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  text-decoration: none;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-link { color: var(--text-secondary); }
.nav.scrolled .nav-link:hover { color: var(--navy); background: var(--cream); }
.nav-link.active { color: var(--teal-bright); }
.nav.scrolled .nav-link.active { color: var(--teal); }

.nav-cta {
  margin-left: 1rem;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.nav.scrolled .nav-hamburger span { background: var(--navy); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 1.5rem;
  color: var(--white);
  padding: 1rem 2rem;
  font-family: var(--font-serif);
}
.nav-mobile .nav-link:hover { color: var(--teal-bright); background: transparent; }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 14px rgba(12,133,153,0.3);
}
.btn-primary:hover {
  background: var(--teal-bright);
  border-color: var(--teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(12,133,153,0.35);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border-mid);
}
.btn-secondary:hover {
  background: var(--cream);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,168,76,0.3);
}

/* === SECTION HEADER === */
.section-header {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-header.left { margin: 0 0 3rem; text-align: left; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* === CARDS === */
.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(12,133,153,0.15);
}
.card-dark {
  background: var(--navy-mid);
  border-color: rgba(255,255,255,0.08);
}
.card-dark:hover { border-color: rgba(12,133,153,0.3); }
.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.65); }

.card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(12,133,153,0.12), rgba(12,133,153,0.06));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
  flex-shrink: 0;
}
.card-icon svg { width: 24px; height: 24px; }
.card-icon-gold { background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.07)); color: var(--gold); }

/* === DIVIDER / ACCENT LINE === */
.accent-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-bright));
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.accent-line-gold { background: linear-gradient(90deg, var(--gold-dark), var(--gold-light)); }
.accent-line-center { margin: 0 auto 1.5rem; }

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-teal { background: rgba(12,133,153,0.1); color: var(--teal); }
.badge-navy { background: rgba(13,31,60,0.08); color: var(--navy); }
.badge-gold { background: rgba(201,168,76,0.12); color: var(--gold-dark); }
.badge-white { background: rgba(255,255,255,0.12); color: var(--white); }

/* === FORM ELEMENTS === */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--radius-lg);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-primary);
  transition: var(--transition-fast);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12,133,153,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; }

/* === STAT BOX === */
.stat-box {
  text-align: center;
  padding: 1.5rem;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--teal-bright);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

/* === HERO COMMON === */
.hero-section {
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.page-hero {
  background: var(--navy);
  padding: 12.5rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 60% 40%, rgba(12,133,153,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero p   { color: rgba(255,255,255,0.72); font-size: 1.125rem; }

/* === PROCESS STEPS === */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
}

/* === TESTIMONIAL === */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: 0.15;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* === TAG / PILL === */
.tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--cream-dark);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.tag-teal { background: rgba(12,133,153,0.1); color: var(--teal-dark); }

/* === DIVIDER === */
.divider {
  border: none;
  border-top: 1px solid var(--border-light);
  margin: 2rem 0;
}
.divider-dark { border-color: rgba(255,255,255,0.08); }

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === FOOTER === */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo-main {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-desc { font-size: 0.875rem; line-height: 1.8; }
.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer-link {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding: 0.3rem 0;
  transition: var(--transition-fast);
  text-decoration: none;
}
.footer-link:hover { color: var(--teal-bright); }
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  margin-bottom: 0.875rem;
}
.footer-contact-icon { color: var(--teal); margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-link { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: var(--transition-fast); }
.footer-bottom-link:hover { color: rgba(255,255,255,0.75); }

/* === UTILITY === */
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.max-w-lg  { max-width: 540px; }
.max-w-xl  { max-width: 700px; }
.max-w-2xl { max-width: 860px; }
.mx-auto   { margin-left: auto; margin-right: auto; }

.hidden       { display: none !important; }
.block        { display: block; }
.inline-block { display: inline-block; }
.relative     { position: relative; }
.overflow-hidden { overflow: hidden; }

/* === FAQ ACCORDION === */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
}
.faq-question:hover { color: var(--teal); }
.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: var(--transition-fast);
  color: var(--teal);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* === BLOG CARD === */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-mid), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.blog-card-image span {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  line-height: 1.5;
}
.blog-card-body { padding: 1.5rem; }
.blog-card-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.blog-card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 0.75rem;
}
.blog-card-excerpt { font-size: 0.875rem; line-height: 1.7; }
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* === WHATSAPP FLOAT === */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 28px; height: 28px; color: white; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Responsive 2-col layouts (inline-style replacements) */
.positioning-grid   { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.two-col-wide       { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.two-col-top        { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.profile-grid       { display:grid; grid-template-columns:380px 1fr; gap:5rem; align-items:start; }
.contact-layout     { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
.pain-grid          { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; max-width:900px; margin:0 auto; }
.form-row-grid      { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1rem; }

@media (max-width: 768px) {
  .positioning-grid, .two-col-wide, .two-col-top,
  .profile-grid, .contact-layout { grid-template-columns:1fr; gap:2rem; }
  .pain-grid    { grid-template-columns:1fr; }
  .form-row-grid { grid-template-columns:1fr; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }

  .section    { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }
  .container  { padding: 0 1.25rem; }

  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo-img { height: 64px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-auto { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }

  .section-header { margin-bottom: 2.5rem; }
  .section-header p { font-size: 0.95rem; }
}

@media (max-width: 640px) {
  .nav { top: 36px; }
}

@media (max-width: 480px) {
  .btn { padding: 0.75rem 1.25rem; font-size: 0.85rem; }
  .btn-lg { padding: 0.875rem 1.5rem; font-size: 0.9rem; }
  .card { padding: 1.5rem; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 48px; height: 48px; }
}

/* === BLOG ARTICLE MOBILE === */
@media (max-width: 768px) {
  body .article-body { padding: 2rem 1.25rem; }
  .article-body h2 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
  .article-body h3 { font-size: 1.1rem; margin: 1.5rem 0 0.6rem; }
  .author-bio { flex-direction: column; gap: 1rem; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  body .article-body { padding: 1.5rem 1rem; }
}
