/* ============================================================
   Hiraki Localization — Main Stylesheet
   New Palette: Midnight Navy / Slate / Warm White / Gold Accent
   Trust-focused, premium B2B consulting aesthetic
   ============================================================ */

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

:root {
  /* Core Colors */
  --midnight:    #081827;
  --navy:        #0D2137;
  --slate:       #1E3A52;
  --blue:        #2563EB;
  --blue-light:  #3B82F6;
  --blue-soft:   #EFF6FF;
  --gold:        #B8914A;
  --gold-light:  #F5E6CC;

  /* Neutrals */
  --warm-white:  #FAFBFD;
  --gray-50:     #F8FAFC;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-300:    #CBD5E1;
  --gray-400:    #94A3B8;
  --gray-500:    #64748B;
  --gray-700:    #334155;
  --gray-900:    #0F172A;
  --white:       #FFFFFF;

  /* Text */
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-muted:     #64748B;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(8,24,39,.06);
  --shadow-sm: 0 2px 8px rgba(8,24,39,.08);
  --shadow-md: 0 6px 24px rgba(8,24,39,.10);
  --shadow-lg: 0 12px 48px rgba(8,24,39,.14);
  --shadow-xl: 0 20px 60px rgba(8,24,39,.18);

  --font: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --r-xs: 4px; --r-sm: 8px; --r-md: 14px; --r-lg: 20px; --r-xl: 28px;
  --t: .28s ease;
  --max-w: 1140px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-light); }
h1,h2,h3,h4,h5 { font-weight: 700; line-height: 1.22; color: var(--midnight); }

/* Layout */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
section { padding: 100px 0; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block; width: 20px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--midnight); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-secondary); max-width: 600px; line-height: 1.78; }

.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--t); white-space: nowrap;
  font-family: var(--font); letter-spacing: .01em;
}
.btn-primary {
  background: var(--blue); color: var(--white); border-color: var(--blue);
}
.btn-primary:hover {
  background: #1d4ed8; border-color: #1d4ed8; color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover {
  background: #a07840; border-color: #a07840; color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,145,74,.35);
}
.btn-outline {
  background: transparent; color: var(--midnight); border-color: var(--gray-300);
}
.btn-outline:hover {
  border-color: var(--blue); color: var(--blue);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,.40);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.80); color: var(--white);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================ NAVIGATION */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--t);
}
.site-nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 76px;
}
.nav-logo { display: flex; flex-direction: column; gap: 3px; text-decoration: none; }
.nav-logo-main {
  font-size: 1rem; font-weight: 800; color: var(--midnight);
  letter-spacing: -.02em; line-height: 1;
  white-space: nowrap;
}
.nav-logo-sub {
  font-size: .6rem; font-weight: 600; color: var(--gold);
  letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block; padding: 7px 12px;
  font-size: .85rem; font-weight: 500; color: var(--text-secondary);
  border-radius: var(--r-sm); transition: all var(--t);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--midnight); background: var(--gray-100);
}
.nav-links a.active { font-weight: 600; }
.nav-cta { margin-left: 8px; }

/* Language Toggle Button */
.lang-toggle-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--r-sm);
  font-size: .78rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--gray-300);
  background: transparent; color: var(--text-secondary);
  transition: all var(--t); white-space: nowrap;
  font-family: var(--font); margin-left: 8px;
  letter-spacing: .01em;
}
.lang-toggle-btn:hover {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-1px);
}
.lang-toggle-mobile {
  margin: 12px 0 0 0; width: 100%;
  justify-content: center;
  border-color: var(--gray-300);
}

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--midnight); border-radius: 2px; transition: all var(--t);
}
.mobile-nav {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  padding: 28px 24px; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li { border-bottom: 1px solid var(--gray-200); }
.mobile-nav ul li a {
  display: block; padding: 16px 0;
  font-size: 1rem; font-weight: 500; color: var(--text-primary);
}
.mobile-nav .mobile-cta { margin-top: 28px; }
.mobile-nav .mobile-cta .btn { width: 100%; justify-content: center; }

/* ============================================================ HERO */
.hero {
  background: var(--midnight);
  padding: 100px 0 88px;
  position: relative; overflow: hidden;
}
/* Subtle geometric accent */
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -40px; left: -40px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,74,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; position: relative; z-index: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.hero-eyebrow-line { width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 800; line-height: 1.12;
  color: var(--white); letter-spacing: -.025em;
  margin-bottom: 22px;
}
.hero-title .accent { color: var(--blue-light); }

.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.72);
  line-height: 1.78; margin-bottom: 38px; max-width: 500px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-divider { width: 100%; height: 1px; background: rgba(255,255,255,.10); margin-bottom: 28px; }

.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-trust-label {
  font-size: .74rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
}
.trust-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-tag {
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07); padding: 4px 11px;
  border-radius: var(--r-xs); border: 1px solid rgba(255,255,255,.12);
}

/* QA Report Mock */
.hero-visual { position: relative; padding-top: 28px; padding-right: 28px; }
.qa-mock {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.qa-mock-header {
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.qa-mock-dots { display: flex; gap: 6px; }
.qa-mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.qa-mock-dot.red { background: #FF5F57; }
.qa-mock-dot.yellow { background: #FEBC2E; }
.qa-mock-dot.green { background: #28C840; }
.qa-mock-title { font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.qa-mock-badge { font-size: .66rem; font-weight: 700; background: var(--blue); color: var(--white); padding: 3px 10px; border-radius: 100px; }

.qa-mock-body { padding: 22px; display: flex; flex-direction: column; gap: 14px; }

.qa-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.qa-cell { border-radius: var(--r-sm); padding: 14px 16px; }
.qa-cell-lbl { font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.qa-cell-val { font-size: .9rem; font-weight: 700; line-height: 1.35; }
.qa-cell-note { font-size: .68rem; margin-top: 4px; line-height: 1.4; opacity: .85; }

.qa-cell.before { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.25); }
.qa-cell.before .qa-cell-lbl { color: #FCA5A5; }
.qa-cell.before .qa-cell-val { color: #FEE2E2; text-decoration: line-through; text-decoration-color: rgba(239,68,68,.5); }
.qa-cell.before .qa-cell-note { color: #FCA5A5; }

.qa-cell.after { background: rgba(34,197,94,.10); border: 1px solid rgba(34,197,94,.22); }
.qa-cell.after .qa-cell-lbl { color: #86EFAC; }
.qa-cell.after .qa-cell-val { color: #DCFCE7; }
.qa-cell.after .qa-cell-note { color: #86EFAC; }

.qa-meta { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.qa-meta-item {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm); padding: 10px 8px; text-align: center;
}
.qa-meta-icon { font-size: 1.1rem; }
.qa-meta-lbl { font-size: .58rem; font-weight: 700; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.qa-score {
  background: rgba(37,99,235,.18); border: 1px solid rgba(37,99,235,.30);
  border-radius: var(--r-md); padding: 16px 18px;
  display: flex; align-items: center; gap: 18px;
}
.qa-score-left {}
.qa-score-lbl { font-size: .62rem; font-weight: 700; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 2px; }
.qa-score-num { font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1; }
.qa-score-bar-wrap { flex: 1; }
.qa-score-track { height: 6px; background: rgba(255,255,255,.12); border-radius: 3px; overflow: hidden; margin-bottom: 5px; }
.qa-score-fill { height: 100%; width: 72%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 3px; }
.qa-score-note { font-size: .64rem; color: rgba(255,255,255,.42); line-height: 1.4; }

.hero-float {
  position: absolute; top: 0; right: 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 13px 17px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; color: var(--midnight); z-index: 2;
}
.hero-float-dot { width: 8px; height: 8px; background: #22C55E; border-radius: 50%; animation: pulse-g 2s infinite; }
@keyframes pulse-g { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

/* ============================================================ TRUST BAR */
.trust-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex; align-items: center;
  justify-content: center; gap: 48px; flex-wrap: wrap;
}
.trust-bar-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 600; color: var(--text-secondary);
}
.trust-bar-item .icon { font-size: 1.1rem; }

/* ============================================================ PROBLEM */
.section-problem { background: var(--midnight); padding: 96px 0; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.problem-copy .section-label { color: rgba(184,145,74,.85); }
.problem-copy .section-label::before { background: var(--gold); }
.problem-copy .section-title { color: var(--white); font-size: clamp(1.6rem, 2.8vw, 2.2rem); }
.problem-copy p { color: rgba(255,255,255,.68); line-height: 1.8; margin-top: 16px; font-size: .97rem; }

.problem-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.problem-list li {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 16px 20px;
  transition: all var(--t);
}
.problem-list li:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.p-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.p-text strong { display: block; color: var(--white); font-size: .9rem; font-weight: 600; margin-bottom: 3px; }
.p-text span { font-size: .8rem; color: rgba(255,255,255,.50); line-height: 1.5; }

/* ============================================================ SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.svc-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); padding: 36px 30px;
  transition: all var(--t); position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--blue));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t);
}
.svc-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: transparent; }
.svc-card:hover::after { transform: scaleX(1); }
.svc-icon {
  width: 52px; height: 52px;
  background: var(--blue-soft); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.45rem; margin-bottom: 20px;
  border: 1px solid rgba(37,99,235,.15);
}
.svc-title { font-size: 1.08rem; font-weight: 700; color: var(--midnight); margin-bottom: 11px; }
.svc-desc { font-size: .88rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 18px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: .69rem; font-weight: 600; color: var(--blue); background: var(--blue-soft); padding: 3px 10px; border-radius: 100px; border: 1px solid rgba(37,99,235,.18); }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-size: .83rem; font-weight: 600; color: var(--blue); transition: gap var(--t); }
.svc-link:hover { gap: 10px; }

/* ============================================================ BEFORE / AFTER */
.ba-section { background: var(--gray-50); }
.ba-cards { display: flex; flex-direction: column; gap: 16px; }
.ba-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow-xs); transition: box-shadow var(--t);
}
.ba-card:hover { box-shadow: var(--shadow-md); }
.ba-card-top {
  padding: 12px 24px; background: var(--midnight);
  display: flex; align-items: center; justify-content: space-between;
}
.ba-card-cat { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; }
.ba-card-tag { font-size: .67rem; font-weight: 700; color: var(--gold); background: rgba(184,145,74,.15); padding: 2px 9px; border-radius: 100px; border: 1px solid rgba(184,145,74,.25); }
.ba-card-body { display: grid; grid-template-columns: 1fr 44px 1fr 1.4fr; align-items: stretch; }
.ba-col { padding: 22px 24px; }
.ba-col-lbl { font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 9px; }
.ba-col-val { font-size: .98rem; font-weight: 700; line-height: 1.4; margin-bottom: 5px; }
.ba-col-note { font-size: .76rem; color: var(--text-muted); line-height: 1.48; }
.ba-col.col-before .ba-col-lbl { color: #DC2626; }
.ba-col.col-before .ba-col-val { color: #991B1B; text-decoration: line-through; text-decoration-color: #FCA5A5; }
.ba-col.col-after { border-left: 1px solid var(--gray-200); }
.ba-col.col-after .ba-col-lbl { color: #16A34A; }
.ba-col.col-after .ba-col-val { color: #14532D; }
.ba-col.col-why { border-left: 1px solid var(--gray-200); background: var(--gray-50); }
.ba-col.col-why .ba-col-lbl { color: var(--blue); }
.ba-col.col-why .ba-col-val { font-size: .87rem; font-weight: 500; color: var(--text-secondary); line-height: 1.6; }
.ba-arrow-col {
  display: flex; align-items: center; justify-content: center;
  border-left: 1px solid var(--gray-200); color: var(--gray-300); font-size: 1rem;
  background: var(--gray-50);
}

/* ============================================================ DELIVERABLES */
.deliverables-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.dlv-item {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 11px;
  transition: all var(--t); box-shadow: var(--shadow-xs);
}
.dlv-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dlv-icon-wrap {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--gold-light); border: 1px solid rgba(184,145,74,.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.dlv-title { font-size: .94rem; font-weight: 700; color: var(--midnight); }
.dlv-desc { font-size: .83rem; color: var(--text-secondary); line-height: 1.66; }

/* ============================================================ WHY */
.why-section { background: var(--midnight); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }

.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-stat {
  border-radius: var(--r-md); padding: 28px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.why-stat.gold-accent {
  background: rgba(184,145,74,.08);
  border-color: rgba(184,145,74,.20);
}
.why-stat-num {
  font-size: 2.5rem; font-weight: 800;
  color: var(--blue-light); line-height: 1; margin-bottom: 6px;
}
.why-stat.gold-accent .why-stat-num { color: var(--gold); }
.why-stat-lbl { font-size: .83rem; color: rgba(255,255,255,.58); line-height: 1.5; }

.why-copy .section-label { color: var(--gold); }
.why-copy .section-label::before { background: var(--gold); }
.why-copy .section-title { color: var(--white); }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.why-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .92rem; color: rgba(255,255,255,.72); line-height: 1.68;
}
.why-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(37,99,235,.20); border: 1px solid rgba(37,99,235,.35);
  flex-shrink: 0; display: flex; align-items: center;
  justify-content: center; font-size: .7rem; color: var(--blue-light); margin-top: 1px;
}

/* ============================================================ CTA BANNER */
.cta-section {
  background: linear-gradient(135deg, #0D2137 0%, #081827 50%, #0a1f38 100%);
  padding: 88px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,145,74,.10) 0%, transparent 70%);
}
.cta-section .section-label { color: var(--gold); }
.cta-section .section-label::before { background: var(--gold); justify-content: center; }
.cta-section h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 38px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.78; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-section .section-label { position: relative; z-index: 1; }
.cta-section h2 { position: relative; z-index: 1; }
.cta-section p { position: relative; z-index: 1; }

/* ============================================================ PAGE HERO (inner pages) */
.page-hero {
  background: var(--midnight);
  border-bottom: none;
  padding: 68px 0 60px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .74rem; color: rgba(255,255,255,.40); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.40); }
.breadcrumb a:hover { color: rgba(255,255,255,.80); }
.breadcrumb span { color: rgba(255,255,255,.55); }
.page-hero h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.65); max-width: 600px; line-height: 1.78; }
.page-hero .section-label { color: var(--gold); }
.page-hero .section-label::before { background: var(--gold); }

/* ============================================================ SERVICES PAGE */
.svc-detail {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-lg); margin-bottom: 28px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow var(--t);
}
.svc-detail:hover { box-shadow: var(--shadow-md); }
.svc-detail-top { display: grid; grid-template-columns: 280px 1fr; }
.svc-detail-left {
  background: var(--midnight); padding: 42px 34px;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.svc-detail-left::before {
  content: ''; position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(184,145,74,.08);
}
.svc-detail-icon { font-size: 2.6rem; margin-bottom: 16px; }
.svc-detail-name { font-size: 1.25rem; font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.28; }
.svc-detail-sub { font-size: .83rem; color: rgba(255,255,255,.58); line-height: 1.68; }
.svc-detail-num {
  margin-top: auto; padding-top: 20px;
  font-size: 3rem; font-weight: 800; color: rgba(255,255,255,.06); line-height: 1;
}
.svc-detail-right { padding: 40px 38px; }
.svc-detail-right h3 { font-size: 1rem; color: var(--midnight); margin-bottom: 13px; font-weight: 700; }
.svc-detail-right p { font-size: .92rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.svc-feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-feat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .88rem; color: var(--text-secondary); line-height: 1.58;
}
.svc-feat-list li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }
.svc-detail-foot {
  background: var(--gray-50); border-top: 1px solid var(--gray-200);
  padding: 18px 34px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.svc-detail-foot p { font-size: .82rem; color: var(--text-secondary); }
.svc-detail-foot strong { color: var(--midnight); }

/* ============================================================ MINI AUDIT */
.audit-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.audit-price-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.audit-price-head {
  background: var(--midnight); padding: 30px 32px;
  position: relative; overflow: hidden;
}
.audit-price-head::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(184,145,74,.12);
}
.audit-price-tag { font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.audit-price-name { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 7px; }
.audit-price-tagline { font-size: .84rem; color: rgba(255,255,255,.60); line-height: 1.55; }
.audit-price-body { padding: 32px; }
.audit-price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 7px; }
.audit-price-from { font-size: .8rem; font-weight: 600; color: var(--text-muted); }
.audit-price-num { font-size: 2.8rem; font-weight: 800; color: var(--blue); line-height: 1; }
.audit-price-note { font-size: .75rem; color: var(--text-muted); margin-bottom: 24px; }
.audit-includes { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.audit-includes li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-secondary); line-height: 1.5; }
.audit-includes li .chk { color: #16A34A; flex-shrink: 0; font-size: 1rem; margin-top: 1px; }
.audit-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.audit-step {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 24px;
}
.audit-step-num { font-size: .66rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.audit-step-title { font-size: .94rem; font-weight: 700; color: var(--midnight); margin-bottom: 6px; }
.audit-step-desc { font-size: .82rem; color: var(--text-secondary); line-height: 1.66; }

/* ============================================================ SAMPLES */
.sample-table-wrap {
  overflow-x: auto; border-radius: var(--r-md);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); margin-bottom: 52px;
}
.sample-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 700px; }
.sample-table th {
  padding: 14px 20px; background: var(--midnight);
  color: rgba(255,255,255,.75); font-size: .72rem;
  font-weight: 700; letter-spacing: .09em; text-transform: uppercase; text-align: left;
}
.sample-table th:first-child { border-radius: 0; }
.sample-table td {
  padding: 18px 20px; border-bottom: 1px solid var(--gray-200);
  font-size: .88rem; line-height: 1.62; color: var(--text-primary); vertical-align: top;
}
.sample-table tr:last-child td { border-bottom: none; }
.sample-table tr:hover td { background: var(--gray-50); }
.td-before { color: #991B1B; font-weight: 600; }
.td-after { color: #14532D; font-weight: 600; }
.td-why { color: var(--text-secondary); font-size: .83rem; line-height: 1.6; }
.td-cat {
  font-size: .68rem; font-weight: 700; color: var(--blue);
  background: var(--blue-soft); padding: 3px 9px;
  border-radius: 100px; border: 1px solid rgba(37,99,235,.20); white-space: nowrap;
}
.sample-cat-title {
  font-size: 1.12rem; font-weight: 700; color: var(--midnight);
  margin-bottom: 16px; margin-top: 52px;
  display: flex; align-items: center; gap: 14px;
}
.sample-cat-title:first-of-type { margin-top: 0; }
.sample-cat-title::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }

/* ============================================================ ABOUT */
.about-layout { display: grid; grid-template-columns: 300px 1fr; gap: 80px; align-items: start; }
.about-sidebar { position: sticky; top: 90px; }
.about-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md);
}
.about-card-top {
  background: var(--midnight); height: 190px;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
}
.about-card-top::before {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: rgba(184,145,74,.12);
}
.about-card-body { padding: 24px; }
.about-name { font-size: 1.15rem; font-weight: 800; color: var(--midnight); margin-bottom: 4px; }
.about-role { font-size: .8rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.5; }
.about-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.about-badge {
  font-size: .67rem; font-weight: 600; color: var(--blue);
  background: var(--blue-soft); padding: 3px 10px;
  border-radius: 100px; border: 1px solid rgba(37,99,235,.18);
}
.about-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 18px; }
.about-content p { color: var(--text-secondary); line-height: 1.82; margin-bottom: 20px; font-size: .96rem; }
.about-content h3 { font-size: 1.08rem; color: var(--midnight); margin-bottom: 14px; margin-top: 36px; font-weight: 700; }
.expertise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 32px; }
.exp-item {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--r-md); padding: 20px;
}
.exp-icon { font-size: 1.4rem; margin-bottom: 9px; }
.exp-title { font-size: .87rem; font-weight: 700; color: var(--midnight); margin-bottom: 4px; }
.exp-desc { font-size: .79rem; color: var(--text-secondary); line-height: 1.62; }
.clients-wrap { padding-top: 28px; border-top: 1px solid var(--gray-200); }
.clients-lbl { font-size: .7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 14px; }
.client-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.client-tag {
  font-size: .78rem; font-weight: 600; color: var(--text-secondary);
  background: var(--white); border: 1px solid var(--gray-200);
  padding: 6px 14px; border-radius: var(--r-sm); box-shadow: var(--shadow-xs);
}

/* ============================================================ PROCESS */
.process-timeline { max-width: 800px; margin: 0 auto; }
.proc-step { display: grid; grid-template-columns: 80px 1fr; gap: 28px; }
.proc-step-num { display: flex; flex-direction: column; align-items: center; }
.step-circle {
  width: 52px; height: 52px; background: var(--midnight);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; font-weight: 800; flex-shrink: 0;
  border: 2px solid var(--gold); position: relative; z-index: 1;
}
.step-line { flex: 1; width: 2px; background: var(--gray-200); margin-top: 6px; }
.proc-step:last-child .step-line { display: none; }
.proc-step-body { padding-bottom: 48px; }
.proc-step:last-child .proc-step-body { padding-bottom: 0; }
.proc-step-title { font-size: 1.15rem; font-weight: 700; color: var(--midnight); margin-bottom: 9px; margin-top: 12px; }
.proc-step-desc { font-size: .91rem; color: var(--text-secondary); line-height: 1.74; }
.proc-deliverable {
  margin-top: 14px; background: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding: 12px 16px; border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .81rem; color: var(--text-secondary); line-height: 1.6;
}
.proc-deliverable strong { color: var(--midnight); font-weight: 600; }

/* ============================================================ CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.contact-info p { color: var(--text-secondary); line-height: 1.78; margin-bottom: 32px; font-size: .96rem; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: .9rem; color: var(--text-secondary); }
.contact-item-icon {
  width: 42px; height: 42px; background: var(--blue-soft);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid rgba(37,99,235,.18);
}

.contact-form-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.form-group label .req { color: #DC2626; margin-left: 3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 15px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--r-sm); font-size: .9rem;
  font-family: var(--font); color: var(--text-primary);
  background: var(--white); transition: border-color var(--t), box-shadow var(--t); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; min-height: 115px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { text-align: center; font-size: .74rem; color: var(--text-muted); margin-top: 12px; }
.form-success { display: none; text-align: center; padding: 40px 16px; }
.form-success .s-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--midnight); font-size: 1.25rem; margin-bottom: 9px; }
.form-success p { color: var(--text-secondary); font-size: .9rem; line-height: 1.6; }

/* ============================================================ FOOTER */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.55); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 32px;
}
.footer-brand-name { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.footer-brand-role { font-size: .65rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer-brand-desc { font-size: .84rem; line-height: 1.72; max-width: 280px; }
.footer-col-title { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.32); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: .76rem; flex-wrap: wrap; gap: 8px; }
.footer-copy { color: rgba(255,255,255,.28); }
.footer-tag { font-size: .67rem; color: rgba(255,255,255,.20); }
.footer-gold { color: var(--gold); font-weight: 600; }

/* ============================================================ UTILITIES */
.text-center { text-align: center; }
.mt-8{margin-top:8px} .mt-16{margin-top:16px} .mt-24{margin-top:24px}
.mt-32{margin-top:32px} .mt-48{margin-top:48px} .mt-56{margin-top:56px}
.mb-8{margin-bottom:8px} .mb-16{margin-bottom:16px} .mb-24{margin-bottom:24px} .mb-32{margin-bottom:32px}

/* ============================================================ RESPONSIVE */
@media(max-width:1024px){
  .hero-grid{gap:44px}
  .services-grid{grid-template-columns:1fr 1fr}
  .deliverables-grid{grid-template-columns:1fr 1fr}
  .why-grid{gap:52px}
  .about-layout{grid-template-columns:1fr}
  .about-sidebar{position:static}
  .footer-grid{grid-template-columns:1fr 1fr}
  .svc-detail-top{grid-template-columns:240px 1fr}
  .audit-page-grid{gap:44px}
  .contact-layout{gap:52px}
}
@media(max-width:768px){
  section{padding:64px 0}
  .container{padding:0 20px}
  .nav-links,.nav-cta{display:none}
  .nav-hamburger{display:flex}
  .hero{padding:64px 0 56px}
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero-float{display:none}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}
  .problem-grid{grid-template-columns:1fr;gap:40px}
  .services-grid{grid-template-columns:1fr}
  .trust-bar-inner{gap:24px}
  .ba-card-body{grid-template-columns:1fr}
  .ba-arrow-col{display:none}
  .ba-col.col-after,.ba-col.col-why{border-left:none;border-top:1px solid var(--gray-200)}
  .deliverables-grid{grid-template-columns:1fr 1fr}
  .why-grid{grid-template-columns:1fr}
  .why-stats{grid-template-columns:1fr 1fr}
  .contact-layout{grid-template-columns:1fr;gap:44px}
  .contact-form-card{padding:26px 20px}
  .form-row{grid-template-columns:1fr}
  .audit-page-grid{grid-template-columns:1fr}
  .audit-steps-grid{grid-template-columns:1fr}
  .about-layout{grid-template-columns:1fr}
  .expertise-grid{grid-template-columns:1fr}
  .svc-detail-top{grid-template-columns:1fr}
  .svc-detail-foot{flex-direction:column}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{flex-direction:column;text-align:center}
  .cta-actions{flex-direction:column;align-items:center}
  .cta-actions .btn{width:100%;max-width:320px;justify-content:center}
  .sample-table td,.sample-table th{padding:12px 14px}
  .deliverables-grid{grid-template-columns:1fr}
}
