/* ============================================================
   ROYSON YORK — Enterprise Stylesheet v3
   Style: RTX-inspired, authoritative, geometric
   Fonts: Outfit (headings) + Inter (body/UI)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ── Variables ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #0f2040;
  --royal:       #1340a0;
  --royal-light: #1a52c8;
  --ice:         #4a8ec2;
  --ice-light:   #7fb3d9;
  --ice-pale:    #daeef8;
  --white:       #ffffff;
  --off:         #f4f7fb;
  --text:        #0d1321;
  --muted:       #4a5568;
  --border:      #c8d8e8;
  --border-dark: rgba(255,255,255,0.12);

  --heading: 'Outfit', system-ui, sans-serif;
  --body:    'Inter', system-ui, sans-serif;

  --nav-h:    72px;
  --max:      1280px;
  --pad:      80px;
  --pad-sm:   24px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t:    0.25s;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.18);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography scale ── */
h1, h2, h3, h4 {
  font-family: var(--heading);
  line-height: 1.1;
  color: var(--navy);
}
h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 800; }
h2 { font-size: clamp(30px, 3.5vw, 52px); font-weight: 700; }
h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 600; }
p  { font-size: 17px; line-height: 1.8; color: var(--muted); }

.label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice);
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--ice);
  flex-shrink: 0;
}

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

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  transition: box-shadow var(--t) var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { line-height: 1; }
.logo-name {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  display: block;
}
.logo-sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 36px; margin-left: auto;
}
.nav-links a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--t);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--navy); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 12px 28px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--t) !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--royal) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: 1.5px solid var(--border);
  padding: 10px 12px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
}

/* ── HERO ── */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  background: var(--navy);
  padding: 80px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: -1px;
  width: 4px;
  background: var(--ice);
}
.hero-left .label { color: var(--ice-light); }
.hero-left .label::before { background: var(--ice-light); }
.hero-left h1 {
  color: var(--white);
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  margin: 24px 0 28px;
  letter-spacing: -0.02em;
}
.hero-left h1 em {
  font-style: normal;
  color: var(--ice-light);
}
.hero-left p {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-right {
  background: var(--off);
  padding: 80px var(--pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
}

/* Stat blocks */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.stat-block {
  background: var(--white);
  padding: 36px 32px;
}
.stat-num {
  font-family: var(--heading);
  font-size: 52px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.4;
}
.hero-quote {
  padding: 32px;
  border-left: 4px solid var(--royal);
  background: var(--navy);
}
.hero-quote p {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}
.hero-quote cite {
  display: block;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice-light);
  margin-top: 16px;
  font-style: normal;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  transition: background var(--t), transform var(--t);
}
.btn:hover { transform: translateY(-1px); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--ice-pale); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--royal); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  padding: 14px 34px;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 14px 34px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── SECTION HEADERS ── */
.section-hd { margin-bottom: 60px; }
.section-hd h2 { margin: 16px 0 20px; }
.section-hd p { font-size: 18px; max-width: 640px; }
.section-hd.center { text-align: center; }
.section-hd.center .label { justify-content: center; }
.section-hd.center p { margin: 0 auto; }
.section-hd.light h2 { color: var(--white); }
.section-hd.light p { color: rgba(255,255,255,0.65); }
.section-hd.light .label { color: var(--ice-light); }
.section-hd.light .label::before { background: var(--ice-light); }

/* ── SERVICES ── */
.services { background: var(--off); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}
.service-card {
  background: var(--white);
  padding: 48px 44px;
  border-top: 4px solid transparent;
  transition: border-color var(--t), box-shadow var(--t);
}
.service-card:hover {
  border-top-color: var(--royal);
  box-shadow: var(--shadow);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--white); fill: none; stroke-width: 1.5; }
.service-card h3 { font-size: 22px; margin-bottom: 14px; color: var(--navy); }
.service-card p { font-size: 16px; line-height: 1.75; margin-bottom: 24px; }
.service-list { display: flex; flex-direction: column; gap: 10px; }
.service-list li {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.service-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--royal);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ── WHY US ── */
.why { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-points { display: flex; flex-direction: column; gap: 0; }
.why-point {
  display: flex; gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.why-point:first-child { border-top: 1px solid var(--border); }
.why-num {
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ice);
  flex-shrink: 0;
  padding-top: 4px;
  width: 32px;
}
.why-point h3 { font-size: 19px; margin-bottom: 10px; }
.why-point p { font-size: 16px; margin: 0; }

.why-panel {
  background: var(--navy);
  padding: 56px 52px;
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.why-panel-quote {
  font-family: var(--heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-dark);
}
.why-panel-quote::before {
  content: '"';
  display: block;
  font-size: 72px;
  line-height: 0.8;
  color: var(--ice);
  margin-bottom: 16px;
  font-family: var(--heading);
}
.why-panel-cite {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice-light);
}
.why-creds {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border-dark);
}
.why-cred {
  background: rgba(255,255,255,0.05);
  padding: 20px 20px;
}
.why-cred-title {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.why-cred-sub {
  font-family: var(--body);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── APPROACH ── */
.approach { background: var(--navy); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border-dark);
  margin-top: 60px;
}
.approach-step {
  background: var(--navy-mid);
  padding: 44px 36px;
  transition: background var(--t);
}
.approach-step:hover { background: rgba(255,255,255,0.06); }
.step-num {
  font-family: var(--heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--ice);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.step-title {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.step-desc {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--royal);
  padding: 80px 0;
}
.cta-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 700;
  max-width: 600px;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  margin-top: 12px;
  max-width: 500px;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 80px 0 0;
}
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-logo-name {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ice-light);
  margin-bottom: 20px;
}
.footer-desc {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-address {
  font-family: var(--body);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.8;
  font-style: normal;
}
.footer-col h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice-light);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  transition: color var(--t);
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 16px;
}
.footer-contact-item span {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice-light);
}
.footer-contact-item a {
  font-family: var(--body);
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  transition: color var(--t);
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── ABOUT PAGE ── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 80px) var(--pad) 80px;
}
.page-hero-inner { max-width: var(--max); margin: 0 auto; }
.page-hero h1 { color: var(--white); margin: 20px 0 24px; }
.page-hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.7);
  max-width: 640px;
  line-height: 1.75;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-body h2 { font-size: 32px; margin: 40px 0 16px; }
.about-body h2:first-child { margin-top: 0; }
.about-body p { font-size: 17px; line-height: 1.85; margin-bottom: 20px; color: var(--muted); }
.about-body p:last-child { margin-bottom: 0; }

.cred-grid { display: flex; flex-direction: column; gap: 2px; }
.cred-item {
  padding: 22px 28px;
  background: var(--off);
  border-left: 4px solid var(--royal);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred-title {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
}
.cred-desc {
  font-family: var(--body);
  font-size: 14px;
  color: var(--muted);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}
.value-item {
  background: var(--white);
  padding: 44px 40px;
}
.value-item h3 { font-size: 20px; margin-bottom: 14px; }
.value-item p { font-size: 16px; margin: 0; }

/* ── BLOG PAGE ── */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.blog-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t);
}
.blog-card:hover { box-shadow: var(--shadow-lg); z-index: 1; position: relative; }
.blog-card-img {
  height: 220px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.blog-card-img-text {
  font-family: var(--heading);
  font-size: 80px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  position: absolute;
}
.blog-card-body { padding: 40px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 14px;
  display: flex; gap: 16px;
}
.blog-card h3 { font-size: 22px; margin-bottom: 14px; line-height: 1.25; }
.blog-card p { font-size: 16px; flex: 1; margin-bottom: 28px; }
.blog-card-link {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal);
  display: flex; align-items: center; gap: 8px;
  transition: gap var(--t);
}
.blog-card:hover .blog-card-link { gap: 14px; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 0; }
.contact-info-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.contact-info-item:first-child { border-top: 1px solid var(--border); }
.contact-info-item h4 {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-info-item p, .contact-info-item a {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--royal); }

/* Form */
.form-wrap { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  background: var(--white);
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--royal); }
.form-group textarea { resize: vertical; min-height: 140px; }
.upload-zone {
  border: 2px dashed var(--border);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t), background var(--t);
  position: relative;
}
.upload-zone:hover { border-color: var(--ice); background: var(--off); }
.upload-zone input[type=file] {
  position: absolute; inset: 0; opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.upload-zone p {
  font-size: 14px;
  margin: 0;
}
.upload-zone strong { color: var(--royal); }
.file-list { margin-top: 12px; }
.file-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  background: var(--off);
  margin-top: 6px;
  font-size: 13px;
}
.file-remove {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 16px; line-height: 1;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--off);
}
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p { font-size: 16px; }

/* ── POST PAGE ── */
.post-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 80px) var(--pad) 80px;
}
.post-hero-inner { max-width: 860px; }
.post-hero .post-date {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ice-light);
  margin-bottom: 20px;
}
.post-hero h1 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
}
.post-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px var(--pad);
}
.post-body p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 28px;
}
.post-body h2 {
  font-size: 30px;
  margin: 56px 0 18px;
  color: var(--navy);
}
.post-body h3 {
  font-size: 22px;
  margin: 36px 0 14px;
  color: var(--navy);
}
.post-body ul, .post-body ol {
  margin: 0 0 28px 24px;
}
.post-body li {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 10px;
}
.post-body blockquote {
  border-left: 4px solid var(--royal);
  padding: 20px 28px;
  margin: 36px 0;
  background: var(--off);
  font-size: 20px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
}
.post-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  margin-top: 48px;
}
.post-nav a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--royal);
}

/* ── ADMIN ── */
.admin-wrap { min-height: 100vh; background: var(--off); }
.admin-nav {
  background: var(--navy); padding: 0 40px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-nav-logo {
  font-family: var(--heading); font-size: 18px; font-weight: 800; color: var(--white);
}
.admin-nav a { font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--t); }
.admin-nav a:hover { color: var(--white); }
.admin-inner { max-width: 1100px; margin: 0 auto; padding: 48px 40px; }
.admin-header { margin-bottom: 36px; }
.admin-header h1 { font-family: var(--heading); font-size: 32px; font-weight: 700; color: var(--navy); }
.admin-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.admin-posts-list { display: flex; flex-direction: column; gap: 2px; background: var(--border); }
.admin-post-row {
  background: var(--white); padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.admin-post-title { font-family: var(--body); font-weight: 600; color: var(--navy); font-size: 16px; }
.admin-post-meta { font-family: var(--body); font-size: 13px; color: var(--muted); margin-top: 3px; }
.admin-post-actions { display: flex; gap: 12px; flex-shrink: 0; }
.badge {
  display: inline-block; padding: 4px 12px;
  font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-pub { background: #e6f7ee; color: #166534; }
.badge-draft { background: #fef9e7; color: #854d0e; }
.admin-form { background: var(--white); border: 1px solid var(--border); padding: 48px; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.admin-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.admin-field label { font-family: var(--body); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.admin-field input, .admin-field select, .admin-field textarea {
  padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 0;
  font-family: var(--body); font-size: 15px; color: var(--text); outline: none; transition: border-color var(--t);
}
.admin-field input:focus, .admin-field textarea:focus, .admin-field select:focus { border-color: var(--royal); }
.admin-field textarea { min-height: 320px; resize: vertical; font-family: monospace; font-size: 14px; }
.admin-field-full { grid-column: 1 / -1; }
.btn-sm { padding: 9px 18px; font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; border: none; transition: background var(--t); }
.btn-navy-sm { background: var(--navy); color: var(--white); }
.btn-navy-sm:hover { background: var(--royal); }
.btn-outline-sm { background: transparent; color: var(--navy); border: 1.5px solid var(--border) !important; }
.btn-outline-sm:hover { background: var(--off); }
.btn-danger-sm { background: transparent; color: #b91c1c; border: 1.5px solid #fca5a5 !important; }
.btn-danger-sm:hover { background: #fef2f2; }
.login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--navy); }
.login-box { background: var(--white); padding: 64px; width: 100%; max-width: 440px; }
.login-logo { font-family: var(--heading); font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.login-subtitle { font-family: var(--body); font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 40px; }
.login-error { background: #fef2f2; color: #991b1b; padding: 14px 18px; font-family: var(--body); font-size: 14px; margin-bottom: 24px; border-left: 4px solid #ef4444; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.6s var(--ease) forwards; opacity: 0; }
.fade-up-1 { animation-delay: 0.1s; }
.fade-up-2 { animation-delay: 0.22s; }
.fade-up-3 { animation-delay: 0.34s; }
.fade-up-4 { animation-delay: 0.46s; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --pad: 48px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px var(--pad); }
  .hero-left::after { display: none; }
  .hero-right { padding: 60px var(--pad); }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 0; }
  .why-panel { position: static; margin-top: 60px; }
  .approach-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --pad: var(--pad-sm); --nav-h: 68px; }

  /* Nav mobile */
  .nav-inner { padding: 0 var(--pad-sm); display: flex; align-items: center; justify-content: space-between; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 150;
    padding: 8px 0 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 16px var(--pad-sm);
    border-bottom: 1px solid var(--off);
    font-size: 14px;
  }
  .nav-links a::after { display: none !important; }
  .nav-dropdown-wrap { border-bottom: 1px solid var(--off); }
  .nav-dropdown-btn { padding: 16px 24px !important; width: 100% !important; text-align: left !important; font-size: 14px !important; font-weight: 600 !important; background: none !important; border: none !important; cursor: pointer !important; color: var(--navy) !important; display: flex !important; align-items: center !important; justify-content: space-between !important; box-sizing: border-box !important; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; border-radius: 0; background: #f8f9fb; padding: 0; min-width: 0; }
  .nav-dropdown-menu.open { display: flex; flex-direction: column; }
  .nav-dropdown-item { padding: 12px var(--pad-sm) 12px calc(var(--pad-sm) + 12px); font-size: 13px; border-bottom: 1px solid var(--border); }
  .nav-cta {
    margin: 12px var(--pad-sm) 0;
    text-align: center;
    padding: 14px !important;
    display: block;
  }
  .hamburger { display: flex; }
  .logo-name { font-size: 19px; }
  .logo-sub { font-size: 10px; }
  .logo-mark { width: 42px; height: 42px; }

  /* Hero */
  .hero-left { padding: 56px var(--pad-sm); min-height: auto; }
  .hero-right { padding: 40px var(--pad-sm); }
  .hero-left h1 { font-size: clamp(34px, 9vw, 52px); }
  .hero-left p { font-size: 16px; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 1px; }
  .stat-num { font-size: 40px; }
  .hero-quote { padding: 24px; }
  .hero-quote p { font-size: 17px; }

  /* Sections */
  section { padding: 72px 0; }
  .container { padding: 0 var(--pad-sm); }
  .section-hd { margin-bottom: 44px; }
  .section-hd p { font-size: 16px; }

  /* Services */
  .services-grid { background: none; gap: 16px; }
  .service-card { padding: 36px 28px; }

  /* Why */
  .why-panel { padding: 40px 32px; }
  .why-creds { grid-template-columns: 1fr 1fr; }

  /* Approach */
  .approach-grid { grid-template-columns: 1fr; }
  .approach-step { padding: 36px 28px; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; background: none; gap: 2px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 60px 0 0; }
  .footer-inner { padding: 0 var(--pad-sm); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Pages */
  .page-hero { padding: calc(var(--nav-h) + 48px) var(--pad-sm) 48px; }
  .post-body { padding: 56px var(--pad-sm); }
  .post-hero { padding: calc(var(--nav-h) + 48px) var(--pad-sm) 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* CTA band */
  .cta-band { padding: 60px 0; }

  /* Admin */
  .admin-inner { padding: 32px var(--pad-sm); }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-form { padding: 32px 24px; }

  /* Nav dropdown mobile override */
  .nav-dropdown-btn { padding: 16px 24px; width: 100%; text-align: left; font-size: 14px; font-weight: 600; background: none; border: none; cursor: pointer; color: var(--navy); display: flex; align-items: center; justify-content: space-between; box-sizing: border-box; }
  .nav-dropdown-menu { position: static; box-shadow: none; border: none; border-radius: 0; background: #f8f9fb; padding: 0; min-width: 0; display: none; }
  .nav-dropdown-menu.open { display: flex; flex-direction: column; }
  .nav-dropdown-item { padding: 12px 24px 12px 36px; font-size: 13px; border-bottom: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .why-creds { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
}

/* ── Nav logo overflow fix ── */
.nav { overflow: visible; }
.nav-inner { overflow: visible; }
.logo-mark {
  width: 40px !important;
  height: 40px !important;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px !important; height: 22px !important; }
.logo-name { font-size: 19px !important; }
.logo-sub { font-size: 10px !important; }
.nav { height: 68px !important; }
.hero { padding-top: 68px !important; }

/* ── Nav logo alignment fix ── */
.logo { align-items: center !important; }
.logo-mark { align-self: center !important; }
.logo-text { align-self: center !important; }
.nav { padding: 0 80px !important; }

/* ── Nav left alignment ── */
.hero-left { padding-left: 80px !important; }

/* ── Mobile hero padding fix ── */
@media (max-width: 768px) {
  .hero-left { padding-left: 20px !important; padding-right: 20px !important; }
  .hero-right { padding-left: 20px !important; padding-right: 20px !important; }
  .label { padding-left: 0 !important; }
}

/* ── Mobile label and hero final fix ── */
@media (max-width: 768px) {
  .hero-left { padding: 48px 20px !important; }
  .hero-right { padding: 32px 20px !important; }
  .label { gap: 8px !important; }
  .label::before { width: 16px !important; flex-shrink: 0 !important; }
}

/* ── Mobile hero final fix ── */
@media (max-width: 768px) {
  .hero-left { padding: 48px 20px !important; }
  .hero-right { padding: 32px 20px !important; }
  .hero-left .label { padding-left: 0 !important; margin-left: 0 !important; }
  .hero-left .label::before { width: 16px !important; }
}

/* ── Dropdown critical fix — desktop only ── */
@media (min-width: 769px) {
.nav-dropdown-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 8px) !important;
  left: 0 !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 8px 32px rgba(10,22,40,0.14) !important;
  min-width: 280px !important;
  padding: 8px 0 !important;
}
.nav-dropdown-wrap { position: relative !important; }
.nav-dropdown-wrap:hover .nav-dropdown-menu { display: block !important; }
.nav-dropdown-menu.open { display: block !important; }
.nav-dropdown-item {
  display: flex !important;
  padding: 14px 20px !important;
  text-decoration: none !important;
}
.nav-dropdown-item:hover { background: #f8f9fb !important; }
.nav-dropdown-item strong {
  display: block !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0a1628 !important;
  margin-bottom: 2px !important;
}
.nav-dropdown-item em {
  display: block !important;
  font-style: normal !important;
  font-size: 12px !important;
  color: #64748b !important;
}

/* ── Work dropdown button style fix ── */
.nav-dropdown-btn {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--body) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--navy) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}
.nav-dropdown-btn:hover { color: var(--royal) !important; }
}

/* Section labels */
.label{font-size:11px!important;font-weight:700!important;letter-spacing:0.18em!important;text-transform:uppercase!important;}
.hero-stat-label{font-size:15px!important;color:rgba(255,255,255,0.7)!important;line-height:1.6!important;}
.tool-preview-num{font-size:12px!important;}
.tool-preview h4{font-size:16px!important;}
.tool-preview p{font-size:15px!important;color:rgba(255,255,255,0.6)!important;}
.included-item-text h4{font-size:17px!important;}
.included-item-text p{font-size:16px!important;}
.tool-card-suite{font-size:11px!important;font-weight:700!important;letter-spacing:0.14em!important;background:#dbeafe!important;color:#1d4ed8!important;padding:3px 10px!important;display:inline-block!important;margin-bottom:16px!important;}
.tool-card-link{font-size:11px!important;letter-spacing:0.14em!important;}
.pullquote{padding:56px 48px!important;}
.pullquote::before{color:#5b8db8!important;font-size:120px!important;}
.pullquote p{font-size:21px!important;}
.pullquote-attr{font-size:13px!important;color:#5b8db8!important;}
.pullquote-attr::before{background:#5b8db8!important;}
.fail-num{color:#1d4ed8!important;opacity:0.4!important;}
.pillar::before{color:#5b8db8!important;opacity:0.5!important;}
.service-card p{font-size:15px!important;line-height:1.75!important;}
.tool-card p{font-size:15px!important;line-height:1.75!important;}

.label{font-size:13px!important;letter-spacing:0.14em!important;}

.label{font-size:15px!important;letter-spacing:0.12em!important;}

.tool-number {
}

.tool-number{font-size:22px!important;font-weight:700!important;opacity:0.9!important;}



/* ── Mobile nav final ── */
@media (max-width: 768px) {
  .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  .logo {
    flex: 1 !important;
    margin-right: 0 !important;
  }
  .hamburger {
    margin-left: auto !important;
    flex-shrink: 0 !important;
  }
  .nav-dropdown-btn {
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    padding: 16px 24px !important;
    width: 100% !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    gap: 0 !important;
  }
  .nav-dropdown-btn svg {
    display: none !important;
  }
  .nav-dropdown-btn::after {
    content: "" !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 6px solid #64748b !important;
    flex-shrink: 0 !important;
    transition: transform 0.2s !important;
  }
  .nav-dropdown-btn[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
  }
  .nav-dropdown-menu {
    position: static !important;
    display: none !important;
    box-shadow: none !important;
    border: none !important;
    background: #f1f5f9 !important;
    padding: 0 !important;
    min-width: 0 !important;
  }
  .nav-dropdown-menu.open {
    display: flex !important;
    flex-direction: column !important;
  }
  .nav-dropdown-wrap:hover .nav-dropdown-menu:not(.open) {
    display: none !important;
  }
  .nav-dropdown-item {
    padding: 13px 24px 13px 36px !important;
    font-size: 12px !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }
}
