/* ═══════════════════════════════════════════════
   Empower Consulting — Main Stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1a2640;
  --navy-md: #243350;
  --navy-lt: #2e4270;
  --gold:    #c9a84c;
  --gold-lt: #e2c070;
  --off-white: #f7f7f5;
  --gray-50:   #fafafa;
  --gray-100:  #f0f0ed;
  --gray-300:  #c8c8c4;
  --gray-500:  #8a8a85;
  --gray-700:  #4a4a48;
  --white:     #ffffff;
  --radius:    6px;
  --shadow-sm: 0 2px 8px rgba(26,38,64,.07);
  --shadow-md: 0 8px 32px rgba(26,38,64,.12);
  --shadow-lg: 0 20px 60px rgba(26,38,64,.18);
  --transition: .25s ease;
}

/* ─── DARK MODE VARIABLES ─── */
/* Do NOT remap --white — it's used for text in always-dark sections (hero, why, footer).
   Instead, override section backgrounds explicitly below. */
[data-theme="dark"] {
  --off-white: #111e30;
  --gray-50:   #131f32;
  --gray-100:  #1c2d45;
  --gray-300:  #4a5e78;
  --gray-500:  #9ab0c8;
  --gray-700:  #c8d8e8;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.3);
  --shadow-md: 0 8px 32px rgba(0,0,0,.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.5);
}

/* ── Body & section backgrounds ── */
[data-theme="dark"] body     { background: #0e1624; }
[data-theme="dark"] #hero    { background: #0a1220; }
[data-theme="dark"] #problem { background: #0e1624; }
[data-theme="dark"] #about   { background: #0a1220; }
[data-theme="dark"] #tiwiw   { background: #0e1624; }
[data-theme="dark"] #services{ background: #0a1220; }
[data-theme="dark"] #francis { background: #0e1624; }
[data-theme="dark"] #why     { background: #060e1a; }
[data-theme="dark"] #contact { background: #0e1624; }
[data-theme="dark"] footer   { background: #060e1a; }

/* ── Nav ── */
[data-theme="dark"] nav                  { background: rgba(10,18,32,.96); border-bottom-color: rgba(201,168,76,.12); }
[data-theme="dark"] .nav-links a         { color: rgba(255,255,255,.65); }
[data-theme="dark"] .nav-links a:hover   { color: #fff; }
[data-theme="dark"] .nav-logo .logo-text { color: #e2eaf5; }
[data-theme="dark"] .hamburger span      { background: rgba(255,255,255,.75); }

/* ── Cards & surfaces ── */
[data-theme="dark"] .service-card:not(.featured),
[data-theme="dark"] .contact-form,
[data-theme="dark"] .methodology-strip,
[data-theme="dark"] .process-strip      { background: #131f32; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .pillar             { background: #131f32; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .francis-badge      { background: #131f32; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .about-float-badge  { background: #131f32; border-color: rgba(201,168,76,.2); }
[data-theme="dark"] .tiwiw-stage:not(:last-child) { border-bottom-color: rgba(255,255,255,.07); }
[data-theme="dark"] .tiwiw-ip-note      { background: #131f32; border-color: rgba(255,255,255,.07); }
[data-theme="dark"] .about-tiwiw-mark   { border-bottom-color: rgba(201,168,76,.2); }

/* ── Form inputs & button ── */
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .form-group textarea { background: #1c2d45; border-color: #2a3f58; color: #c8d8e8; }
[data-theme="dark"] .form-group label    { color: #9ab0c8; }
[data-theme="dark"] .form-submit         { background: var(--gold); color: #1a2640; }
[data-theme="dark"] .form-submit:hover   { background: var(--gold-lt); }

/* ── Text on light sections — elements using color: var(--navy) ── */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4                  { color: #e2eaf5; }
/* Headings already-white in hero/why/footer — keep them white */
[data-theme="dark"] .hero-content h1,
[data-theme="dark"] .why-content h2,
[data-theme="dark"] .problem-header h2  { color: #ffffff; }
[data-theme="dark"] .pillar h4,
[data-theme="dark"] .ts-body h4,
[data-theme="dark"] .method-item h4,
[data-theme="dark"] .process-step h4    { color: #c8d8e8; }
[data-theme="dark"] .ci-value           { color: #c8d8e8; }
[data-theme="dark"] .badge-info .val    { color: #c8d8e8; }
[data-theme="dark"] .francis-badge span { color: #c8d8e8; }
[data-theme="dark"] .contact-form h3    { color: #e2eaf5; }

/* ── SVG icons — override hardcoded stroke="#1a2640" via CSS presentation attribute ── */
[data-theme="dark"] .contact-icon svg   { stroke: var(--gold); }
[data-theme="dark"] .service-icon svg,
[data-theme="dark"] .method-icon svg,
[data-theme="dark"] .problem-icon svg   { stroke: #9ab0c8; }
[data-theme="dark"] .check-icon svg     { stroke: var(--gold); }
[data-theme="dark"] .badge-icon svg,
[data-theme="dark"] .francis-badge svg  { stroke: rgba(255,255,255,.75); }

/* ── Icon containers ── */
[data-theme="dark"] .contact-icon       { background: #1c2d45; }
[data-theme="dark"] .service-icon       { background: #1c2d45; }
[data-theme="dark"] .method-icon        { background: #1c2d45; }
[data-theme="dark"] .problem-icon       { background: rgba(201,168,76,.12); }
[data-theme="dark"] .process-num        { background: #2e4270; }

/* ── Mobile menu — uses inline styles so needs !important ── */
[data-theme="dark"] #mobileMenu         { background: #131f32 !important; border-bottom-color: rgba(255,255,255,.07) !important; }
[data-theme="dark"] #mobileMenu a       { color: #c8d8e8 !important; }
[data-theme="dark"] #mobileMenu a[href="#contact"] { background: var(--gold) !important; color: #1a2640 !important; }

/* ── Pillar hover border ── */
[data-theme="dark"] .pillar:hover       { border-color: rgba(201,168,76,.25); }

/* ── Service tag on non-featured cards ── */
[data-theme="dark"] .service-secondary-tag { background: #1c2d45; color: #9ab0c8; }

/* Theme toggle button */
.theme-toggle {
  background: none; border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 20px; width: 38px; height: 22px;
  cursor: pointer; position: relative;
  display: flex; align-items: center; padding: 0 3px;
  transition: border-color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.theme-toggle:hover { border-color: var(--gold); }
.theme-toggle-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,.7);
  transition: transform var(--transition), background var(--transition);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; line-height: 1;
}
[data-theme="dark"] .theme-toggle { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.08); }
[data-theme="dark"] .theme-toggle-thumb { transform: translateX(16px); background: var(--gold); }

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; color: var(--navy); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 500; }
h3 { font-size: 1.25rem; font-weight: 600; font-family: 'Inter', sans-serif; }
p  { color: var(--gray-700); }
a  { text-decoration: none; color: inherit; }

/* ─── LAYOUT ─── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26,38,64,.06);
  transition: box-shadow var(--transition);
}
nav.scrolled { box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
}
.nav-logo .logo-icon {
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.nav-logo .logo-icon svg { width: 38px; height: 38px; }
.nav-logo .logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.01em;
  color: var(--navy);
  white-space: nowrap;
}
.nav-logo .logo-text span { color: var(--gold); }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: .55rem 1.25rem; border-radius: var(--radius);
  font-size: .88rem !important; font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--navy-lt) !important; }

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

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(201,168,76,.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255,255,255,.04) 0%, transparent 40%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.3);
  color: var(--gold-lt); font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .4rem .85rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-content h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-content h1 em { color: var(--gold-lt); font-style: normal; }
.hero-content p {
  color: rgba(255,255,255,.7); font-size: 1.1rem; line-height: 1.7;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--gold); color: var(--navy);
  padding: .85rem 1.75rem; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem;
  transition: all var(--transition);
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,.4); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: var(--white);
  padding: .85rem 1.75rem; border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  border: 2px solid rgba(255,255,255,.3);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

.hero-stats {
  display: flex; gap: 2.5rem; margin-top: 3.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
}
.stat-item { }
.stat-number {
  display: block; font-size: 1.8rem; font-weight: 700;
  color: var(--white); line-height: 1;
  font-family: 'Playfair Display', serif;
}
.stat-label { font-size: .78rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .05em; margin-top: .3rem; }

/* Hero visual */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.hero-card-stack { position: relative; width: 380px; height: 420px; }
.hcard {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  padding: 1.75rem;
}
.hcard-main {
  width: 340px; bottom: 0; left: 0;
  background: rgba(255,255,255,.09);
}
.hcard-top {
  width: 300px; top: 0; right: 0;
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.2);
}
.hcard-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.hcard-icon svg { width: 24px; height: 24px; }
.hcard h4 { color: var(--white); font-family: 'Inter',sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: .4rem; }
.hcard p  { font-size: .83rem; color: rgba(255,255,255,.55); line-height: 1.5; }
.hcard-metric { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); display: flex; gap: 1.5rem; }
.hcard-metric-item .val { font-size: 1.4rem; font-weight: 700; color: var(--gold-lt); display: block; }
.hcard-metric-item .lbl { font-size: .72rem; color: rgba(255,255,255,.4); }
.hcard-avatars { display: flex; margin-top: 1rem; }
.hcard-avatars .av {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.15);
  background: var(--navy-lt);
  margin-right: -10px;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.8);
}
.av-more { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; }

/* ─── ABOUT ─── */
#about { background: var(--white); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.section-eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .75rem;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content .lead {
  font-size: 1.1rem; color: var(--gray-700); line-height: 1.75;
  margin-bottom: 1.5rem;
}
.about-content p { margin-bottom: 1rem; color: var(--gray-500); }
.about-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1.25rem; border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.pillar:hover { border-color: rgba(26,38,64,.15); box-shadow: var(--shadow-sm); }
.pillar-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); margin-top: 5px; flex-shrink: 0;
}
.pillar h4 { font-size: .95rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.pillar p  { font-size: .85rem; color: var(--gray-500); }

/* About visual */
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 16px; overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/5;
  display: flex; align-items: stretch;
}
.about-img-fill {
  width: 100%; height: 100%;
  background:
    linear-gradient(135deg, var(--navy-md) 0%, var(--navy) 60%),
    radial-gradient(circle at 60% 30%, rgba(201,168,76,.2), transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2.5rem;
}
.about-tiwiw-mark {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.about-tiwiw-mark img {
  width: 100%; max-width: 320px; height: auto; display: block;
}
.about-quote {
  color: rgba(255,255,255,.85); font-size: 1.15rem;
  font-family: 'Playfair Display', serif; font-style: italic;
  line-height: 1.6; margin-bottom: 1.5rem;
}
.about-quote-attr { display: flex; align-items: center; gap: .75rem; }
.attr-line { width: 30px; height: 2px; background: var(--gold); }
.attr-text { font-size: .82rem; color: rgba(255,255,255,.55); font-weight: 500; }
.about-float-badge {
  position: absolute; top: -1.5rem; right: -1.5rem;
  background: var(--white); border-radius: 12px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .85rem;
  min-width: 180px;
}
.badge-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.badge-icon svg { width: 20px; height: 20px; }
.badge-info .val { font-size: 1.2rem; font-weight: 700; color: var(--navy); display: block; }
.badge-info .lbl { font-size: .72rem; color: var(--gray-500); }

/* ─── SERVICES ─── */
#services { background: var(--gray-50); }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 4rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.7; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 12px;
  padding: 2rem;
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(26,38,64,.1); }
.service-card.featured {
  background: var(--navy); border-color: var(--navy);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card.featured .service-icon { background: rgba(255,255,255,.1); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: .6rem; font-size: 1.05rem; }
.service-card.featured h3 { color: var(--white); }
.service-card p { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }
.service-card.featured p { color: rgba(255,255,255,.6); }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.25rem; }
.service-tag {
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  padding: .28rem .7rem; border-radius: 50px;
  background: var(--gray-100); color: var(--gray-700);
}
.service-card.featured .service-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.service-link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.5rem; font-size: .85rem; font-weight: 600;
  color: var(--gold); transition: gap var(--transition);
}
.service-link:hover { gap: .7rem; }
.service-link svg { width: 14px; height: 14px; }

/* process strip */
.process-strip {
  margin-top: 4rem; padding: 2.5rem;
  background: var(--white); border-radius: 14px;
  border: 1px solid var(--gray-100);
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1rem;
}
.process-step {
  text-align: center; padding: 1rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -8px; top: 50%;
  transform: translateY(-50%);
  color: var(--gray-300); font-size: 1.2rem;
}
.process-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.process-step h4 { font-size: .88rem; font-weight: 600; color: var(--navy); font-family: 'Inter',sans-serif; margin-bottom: .25rem; }
.process-step p  { font-size: .78rem; color: var(--gray-500); }

/* ─── WHY US ─── */
#why { background: var(--navy); padding: 5rem 0; }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.why-content .section-eyebrow { color: var(--gold-lt); }
.why-content h2 { color: var(--white); margin-bottom: 1.25rem; }
.why-content p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.why-list { display: flex; flex-direction: column; gap: .85rem; }
.why-item { display: flex; align-items: flex-start; gap: .9rem; }
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.4);
  flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
}
.check-icon svg { width: 11px; height: 11px; }
.why-item p { color: rgba(255,255,255,.75); font-size: .92rem; }
.why-item p strong { color: var(--white); font-weight: 600; }

.why-metrics {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.metric-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 1.75rem;
  transition: background var(--transition);
}
.metric-card:hover { background: rgba(255,255,255,.08); }
.metric-val {
  font-size: 2.4rem; font-weight: 700;
  color: var(--white); font-family: 'Playfair Display', serif;
  display: block; margin-bottom: .25rem;
}
.metric-val span { color: var(--gold-lt); }
.metric-desc { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* ─── CONTACT ─── */
#contact { background: var(--white); }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 5rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: var(--gray-500); font-size: .98rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-item .ci-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gray-300); }
.contact-item .ci-value { font-size: .9rem; color: var(--navy); font-weight: 500; }

/* form */
.contact-form {
  background: var(--gray-50); border-radius: 16px;
  padding: 2.5rem; border: 1px solid var(--gray-100);
  box-sizing: border-box; width: 100%;
}
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.2rem; font-weight: 600; font-family: 'Inter',sans-serif; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--gray-700); letter-spacing: .02em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white); border: 1.5px solid var(--gray-100);
  border-radius: var(--radius); padding: .75rem 1rem;
  font-family: 'Inter', sans-serif; font-size: .9rem; color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; resize: none;
  width: 100%; box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(26,38,64,.07);
}
.form-group textarea { min-height: 110px; }
.form-group select { appearance: none; cursor: pointer; }
.form-submit {
  width: 100%; padding: .9rem;
  background: var(--navy); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: 'Inter',sans-serif; font-size: .95rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  margin-top: .5rem;
}
.form-submit:hover { background: var(--navy-lt); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.form-submit svg { width: 16px; height: 16px; }
.form-note { font-size: .75rem; color: var(--gray-300); text-align: center; margin-top: .75rem; }

/* ─── FOOTER ─── */
footer { background: var(--navy); padding: 3rem 0 2rem; }
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo .logo-text { color: var(--white) !important; }
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-socials { display: flex; gap: .75rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.social-btn:hover { background: rgba(255,255,255,.14); }
.social-btn svg { width: 15px; height: 15px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual    { display: none; }
  .about-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual   { display: none; }
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .why-inner      { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner  { grid-template-columns: 1fr; gap: 3rem; }
  .process-strip  { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .why-metrics   { grid-template-columns: 1fr 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form  { padding: 1.5rem; }
  .footer-inner  { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links  { justify-content: center; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: .75rem; text-align: center; }
  .hero-stats    { gap: 1.5rem; }
  .process-strip { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
  .why-metrics { grid-template-columns: 1fr; }
}

/* ─── SCROLL ANIMATIONS ─── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }


/* ═══════════════════════════════════════════════
   NEW SECTIONS — Added for full content overhaul
   ═══════════════════════════════════════════════ */

/* ─── HERO — TIWIW card stages ─── */
.hcard-stages { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.hcard-stage { display: flex; align-items: center; gap: .6rem; font-size: .78rem; color: rgba(255,255,255,.4); }
.hcard-stage.done { color: rgba(255,255,255,.75); }
.hcard-stage.active { color: var(--gold-lt); }
.hs-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.2); flex-shrink: 0; }
.hcard-stage.done .hs-dot { background: #4caf82; }
.hcard-stage.active .hs-dot { background: var(--gold); }
.hs-dot.pulse { animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,.5); }
  50%       { box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}

/* ─── PROBLEM SECTION ─── */
#problem { background: #0d1520; padding: 6rem 0; }
.problem-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.problem-header p { color: rgba(255,255,255,.55); font-size: 1.05rem; line-height: 1.75; margin-top: .75rem; }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.problem-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 2rem;
  transition: border-color var(--transition), background var(--transition);
}
.problem-card:hover { background: rgba(255,255,255,.07); border-color: rgba(201,168,76,.25); }
.problem-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.problem-icon svg { width: 22px; height: 22px; }
.problem-card h3 { color: var(--white); font-size: 1rem; font-weight: 600; font-family: 'Inter',sans-serif; margin-bottom: .6rem; }
.problem-card p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.65; }
.problem-closing {
  text-align: center; margin-top: 3.5rem;
  padding: 2rem; border-top: 1px solid rgba(255,255,255,.07);
}
.problem-closing p { color: rgba(255,255,255,.5); font-size: 1.05rem; font-family: 'Playfair Display', serif; font-style: italic; line-height: 1.7; }
.problem-closing strong { color: var(--gold-lt); font-style: normal; }

/* ─── TIWIW SECTION ─── */
#tiwiw { background: var(--off-white); }
.tiwiw-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.tiwiw-content h2 { margin-bottom: .4rem; }
.tiwiw-sub { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.tiwiw-content p { color: var(--gray-500); line-height: 1.75; margin-bottom: 1rem; }
.tiwiw-ip-note {
  display: flex; gap: .85rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--gray-100);
  border-left: 3px solid var(--gold); border-radius: var(--radius);
  padding: 1rem 1.1rem; margin-top: 1.75rem;
}
.tiwiw-ip-note svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: var(--gray-500); }
.tiwiw-ip-note p { font-size: .78rem; color: var(--gray-500); margin: 0; line-height: 1.55; }

.tiwiw-stages { display: flex; flex-direction: column; gap: 0; position: relative; }
.tiwiw-stage {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem 0; position: relative;
}
.tiwiw-stage:not(:last-child) { border-bottom: 1px solid var(--gray-100); }
.ts-num {
  font-size: 1.5rem; font-weight: 700; color: var(--gold);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0; width: 40px; line-height: 1; padding-top: 2px;
}
.ts-body h4 { font-size: .95rem; font-weight: 700; color: var(--navy); font-family: 'Inter',sans-serif; margin-bottom: .4rem; }
.ts-body p  { font-size: .85rem; color: var(--gray-500); line-height: 1.6; margin-bottom: .5rem; }
.ts-tools { font-size: .72rem; font-weight: 600; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; }

/* ─── SERVICES — updated layout ─── */
.services-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.service-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; }
.service-primary-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: rgba(201,168,76,.25); color: var(--gold-lt);
  padding: .25rem .65rem; border-radius: 50px;
}
.service-secondary-tag {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  background: var(--gray-100); color: var(--gray-500);
  padding: .25rem .65rem; border-radius: 50px;
}

.methodology-strip {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: 14px;
  padding: 2.5rem; margin-bottom: 1.5rem;
}
.method-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: var(--gray-300); margin-bottom: 1.75rem;
}
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.method-item { }
.method-icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.method-icon svg { width: 18px; height: 18px; }
.method-item h4 { font-size: .88rem; font-weight: 700; color: var(--navy); font-family: 'Inter',sans-serif; margin-bottom: .4rem; }
.method-item p  { font-size: .82rem; color: var(--gray-500); line-height: 1.6; }

.industry-strip {
  background: var(--navy); border-radius: 14px; padding: 2rem 2.5rem;
}
.industry-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.35); margin-bottom: 1rem;
}
.industry-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.1rem; }
.industry-tags span {
  font-size: .78rem; font-weight: 500;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7); padding: .3rem .85rem; border-radius: 50px;
}
.industry-note { font-size: .8rem; color: rgba(255,255,255,.35); font-style: italic; }

/* ─── MEET FRANCIS ─── */
#francis { background: var(--gray-50); }
.francis-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem; align-items: start; }
.francis-visual { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.francis-avatar-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; width: 100%; }
.francis-avatar {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--navy);
  border: 4px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(26,38,64,.2);
  overflow: hidden;
}
.francis-avatar img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  border-radius: 50%;
}
.francis-avatar span {
  font-size: 2.8rem; font-weight: 700; color: var(--gold);
  font-family: 'Playfair Display', serif; letter-spacing: -.02em;
}
.francis-badge-stack { display: flex; flex-direction: column; gap: .6rem; width: 100%; }
.francis-badge {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius); padding: .7rem 1rem;
  box-shadow: var(--shadow-sm);
}
.francis-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.francis-badge span { font-size: .8rem; font-weight: 600; color: var(--navy); }

.francis-content h2 { margin-bottom: 1.25rem; }
.francis-content .lead { font-size: 1.05rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 1.25rem; }
.francis-content p { color: var(--gray-500); line-height: 1.75; margin-bottom: 1rem; font-size: .95rem; }
.francis-actions { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.btn-linkedin {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #0077b5;
  padding: .7rem 1.4rem; border-radius: var(--radius);
  font-weight: 600; font-size: .88rem;
  border: 2px solid #0077b5;
  transition: all var(--transition);
}
.btn-linkedin:hover { background: #0077b5; color: white; }
.btn-linkedin svg { width: 15px; height: 15px; }

/* ─── RESPONSIVE — new sections ─── */
@media (max-width: 1024px) {
  .tiwiw-inner   { grid-template-columns: 1fr; gap: 3rem; }
  .francis-inner { grid-template-columns: 1fr; gap: 3rem; }
  .francis-visual { flex-direction: row; align-items: flex-start; }
  .francis-avatar-wrap { flex-direction: row; flex-wrap: wrap; gap: 1rem; }
  .francis-avatar { width: 100px; height: 100px; }
  .francis-avatar span { font-size: 1.8rem; }
  .method-grid   { grid-template-columns: repeat(2,1fr); }
  .services-duo  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .problem-grid  { grid-template-columns: 1fr; }
  .method-grid   { grid-template-columns: 1fr; }
  .francis-visual { flex-direction: column; align-items: center; }
  .francis-avatar-wrap { flex-direction: column; align-items: center; }
  .services-duo  { grid-template-columns: 1fr; }
}
