/* ============================================
   WITTVISORY — DESIGN SYSTEM
   Premium B2B IT Consulting Website
   ============================================ */

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

/* ── TOKENS ── */
:root {
  --navy:       #1C2A49;
  --navy-dark:  #131e36;
  --navy-light: #243459;
  --white:      #FFFFFF;
  --off-white:  #F5F6F8;
  --grey-light: #E8EAEE;
  --text-dark:  #111827;
  --text-mid:   #374151;
  --text-muted: #6B7280;
  --red:        #943634;
  --red-dark:   #7a2c2a;

  --font-serif: 'Inter', system-ui, sans-serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);

  --radius:     6px;
  --radius-lg:  12px;

  --max-w:      1180px;
  --nav-h:      72px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY SCALE ── */
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
}

h1, .h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -.03em;
}

h2, .h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
}

h3, .h3 {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

h4, .h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
}

p { color: var(--text-mid); line-height: 1.75; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 680px;
}

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--sm { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--lg { padding: clamp(5rem, 10vw, 9rem) 0; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(28, 42, 73, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.nav--light {
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
}

.nav--light .nav__logo-text { color: var(--navy); }
.nav--light .nav__logo-dot  { color: var(--red); }
.nav--light .nav__link      { color: var(--text-mid); }
.nav--light .nav__link:hover { color: var(--navy); }
.nav--light .nav__toggle span { background: var(--navy); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo-img {
  height: 50px;
  width: auto;
  display: block;
}

/* On dark navy nav: logo is dark-colored, add brightness for visibility */
.nav:not(.nav--light) .nav__logo-img {
  filter: brightness(0) invert(1);
}

.nav__logo-mark {
  display: none;
}
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.nav__logo-mark svg { width: 20px; height: 20px; fill: white; }

.nav__logo-text {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  line-height: 1;
}

.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: block;
  margin-top: 1px;
}

.nav--light .nav__logo-sub { color: var(--text-muted); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav__link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.nav--light .nav__link:hover,
.nav--light .nav__link.active {
  background: var(--off-white);
  color: var(--navy);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--red);
  color: var(--white) !important;
  font-size: 1rem;
  font-weight: 600;
  padding: .65rem 1.4rem;
  border-radius: var(--radius);
  margin-left: .5rem;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  background: none;
  border: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--navy-dark);
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition);
  z-index: 99;
}

.nav__mobile.open {
  transform: translateX(0);
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.nav__mobile-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  padding: .85rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  display: block;
  transition: color var(--transition);
}

.nav__mobile-link:hover { color: var(--white); }

.nav__mobile-cta {
  display: block;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  padding: .8rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(193,39,45,.3);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.7);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

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

.btn--ghost {
  color: var(--navy);
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
  border: none;
  background: none;
  gap: .35rem;
}

.btn--ghost:hover { color: var(--red); }

.btn--ghost .arrow {
  transition: transform var(--transition);
}

.btn--ghost:hover .arrow { transform: translateX(4px); }

.btn--sm {
  font-size: .8rem;
  padding: .55rem 1.2rem;
}

.btn--lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Geometric background pattern */
.hero__bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 130%;
  background: linear-gradient(135deg, rgba(193,39,45,.06) 0%, rgba(255,255,255,.03) 50%, transparent 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.hero__grid {
  position: absolute;
  inset: 0;
  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: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.4) 30%, rgba(0,0,0,.4) 70%, transparent 100%);
}

.hero__accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--red) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.75rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}

.hero__title {
  max-width: 820px;
  margin-bottom: 1.5rem;
}

.hero__title em {
  font-style: italic;
  color: rgba(255,255,255,.65);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.175rem);
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 3.5rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.hero__trust-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.hero__trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.hero__trust-item {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: .3rem .85rem;
  border-radius: 20px;
}

/* Sub-hero for inner pages */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(to right, var(--red), transparent 50%);
}

.page-hero__eyebrow { margin-bottom: 1rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.page-hero p {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.75;
}

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .lead { margin: 0 auto; }

.section-header .t-eyebrow { margin-bottom: .85rem; }
.section-header h2 { color: var(--text-dark); margin-bottom: 1rem; }
.section-header p   { color: var(--text-mid); }

.section-header--white h2 { color: var(--white); }
.section-header--white p  { color: rgba(255,255,255,.65); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: rgba(193,39,45,.15);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--navy);
  stroke-width: 1.75;
  fill: none;
}

.card h3 {
  color: var(--text-dark);
  margin-bottom: .6rem;
}

.card p {
  color: var(--text-muted);
  font-size: .925rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition);
}

.card__link:hover { gap: .6rem; }

/* Service card variant */
.service-card {
  border-top: 3px solid var(--grey-light);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  border-top-color: var(--red);
}

/* Case card */
.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  transition: box-shadow var(--transition), transform var(--transition);
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-card__tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--text-muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.case-card__body {
  padding: 1.75rem;
}

.case-card__row {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1rem;
}

.case-card__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 0;
  flex-shrink: 0;
}

.case-card__value {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.case-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--grey-light);
}

.skill-tag {
  font-size: .72rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(28,42,73,.06);
  border: 1px solid rgba(28,42,73,.1);
  padding: .2rem .6rem;
  border-radius: 20px;
}

/* Insight card */
.insight-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-light);
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.insight-card__label {
  background: var(--off-white);
  padding: 1.5rem 1.75rem .75rem;
  border-bottom: 1px solid var(--grey-light);
}

.insight-card__category {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
}

.insight-card__body {
  padding: 1.25rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.insight-card h3 {
  font-size: 1rem;
  margin-bottom: .6rem;
  color: var(--text-dark);
  line-height: 1.45;
}

.insight-card p {
  font-size: .875rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1.25rem;
}

/* ── TRUST SECTION ── */
.trust-section {
  background: var(--off-white);
}

.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.trust-pillar {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.trust-pillar__icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.trust-pillar__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  stroke-width: 2;
  fill: none;
}

.trust-pillar h4 {
  color: var(--text-dark);
  margin-bottom: .3rem;
}

.trust-pillar p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::after {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(10% + 22px);
  right: calc(10% + 22px);
  height: 1px;
  background: linear-gradient(to right, var(--grey-light), var(--red) 50%, var(--grey-light));
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .75rem;
  position: relative;
  z-index: 1;
}

.process-step__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  flex-shrink: 0;
}

.process-step:hover .process-step__num,
.process-step--active .process-step__num {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.process-step h4 {
  font-size: .875rem;
  color: var(--text-dark);
  margin-bottom: .4rem;
}

.process-step p {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ── EXPERTISE TAGS ── */
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.expertise-tag {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--grey-light);
  padding: .55rem 1.1rem;
  border-radius: 30px;
  transition: all var(--transition);
  cursor: default;
}

.expertise-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.expertise-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── FOUNDER SECTION ── */
.founder-section {
  background: var(--navy);
}

.founder-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

.founder-photo {
  position: relative;
}

.founder-photo__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.founder-photo__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.founder-photo__placeholder svg {
  width: 72px;
  height: 72px;
  stroke: rgba(255,255,255,.2);
  fill: none;
  stroke-width: 1;
}

.founder-photo__placeholder-text {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  text-align: center;
}

.founder-photo__accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  background: var(--red);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.founder-content .t-eyebrow { margin-bottom: 1rem; }

.founder-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.founder-content p {
  color: rgba(255,255,255,.65);
  margin-bottom: 1rem;
  font-size: .975rem;
}

.founder-traits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin: 2rem 0;
}

.founder-trait {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-align: center;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
}

.cta-band::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(193,39,45,.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  max-width: 520px;
}

.cta-band p {
  color: rgba(255,255,255,.6);
  margin-top: .5rem;
  font-size: .975rem;
}

/* ── WHY SECTION ── */
.why-section { background: var(--off-white); }

.why-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.why-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--grey-light);
}

.why-item__side {
  padding: 1.5rem 2rem;
  background: var(--white);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item__side--left { border-right: 1px solid var(--grey-light); }

.why-item__side--right {
  background: var(--off-white);
}

.why-item__label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
  padding-top: .1rem;
  min-width: 50px;
}

.why-item__side--right .why-item__label {
  color: var(--red);
}

.why-item__text {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

.why-item__side--right .why-item__text {
  color: var(--text-dark);
  font-weight: 500;
}

/* ── CONTACT SECTION ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: .925rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: 1.25rem;
}

.contact-detail__icon {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--navy);
  stroke-width: 2;
  fill: none;
}

.contact-detail__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .15rem;
}

.contact-detail__value {
  font-size: .9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.contact-detail__value a:hover { color: var(--red); }

/* ── FORM ── */
.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: .4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--grey-light);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(28,42,73,.08);
  background: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .2rem;
  accent-color: var(--navy);
  cursor: pointer;
}

.form-check label {
  font-size: .8rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.form-check label a { color: var(--navy); text-decoration: underline; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 48px;
  height: 48px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  margin: 0 auto 1rem;
  display: block;
}

/* ── FOOTER ── */
.footer {
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
}

.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  width: fit-content;
}

.footer__brand-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.footer__brand p {
  font-size: .875rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 1rem;
}

.footer__social {
  display: flex;
  gap: .5rem;
  margin-top: .25rem;
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.footer__social-link:hover {
  background: var(--navy);
  border-color: var(--navy);
}

.footer__social-link svg {
  width: 15px;
  height: 15px;
  fill: var(--text-muted);
  transition: fill var(--transition);
}

.footer__social-link:hover svg {
  fill: var(--white);
}

.footer__col h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__links a {
  font-size: .875rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--red); }

.footer__contact-item {
  display: flex;
  gap: .6rem;
  font-size: .85rem;
  color: var(--text-mid);
  margin-bottom: .75rem;
  align-items: center;
}

.footer__contact-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.footer__contact-item a {
  color: var(--text-mid);
  transition: color var(--transition);
}

.footer__contact-item a:hover { color: var(--red); }

.footer__bottom {
  border-top: 1px solid var(--grey-light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: .78rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: .78rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__legal a:hover { color: var(--red); }

/* ── DIVIDERS & UTILS ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

.divider--center { margin: 0 auto 1.5rem; }

.text-center { text-align: center; }
.text-white  { color: var(--white); }

.bg-off-white { background: var(--off-white); }
.bg-navy      { background: var(--navy); }
.bg-white     { background: var(--white); }

.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.animate-fade-up {
  animation: fadeUp .65s ease forwards;
}

.animate-fade-up-delay-1 { animation-delay: .1s; opacity: 0; }
.animate-fade-up-delay-2 { animation-delay: .2s; opacity: 0; }
.animate-fade-up-delay-3 { animation-delay: .35s; opacity: 0; }
.animate-fade-up-delay-4 { animation-delay: .5s; opacity: 0; }

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── ABOUT PAGE SPECIFIC ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.philosophy-block {
  background: var(--navy);
  color: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.philosophy-block::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
}

.philosophy-block blockquote {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,.9);
  line-height: 1.45;
  position: relative;
  z-index: 1;
  letter-spacing: -.02em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.value-item {
  padding: 1.5rem;
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  background: var(--white);
  border-left: 3px solid var(--red);
  transition: box-shadow var(--transition);
}

.value-item:hover {
  box-shadow: var(--shadow-md);
}

.value-item h4 {
  color: var(--text-dark);
  margin-bottom: .35rem;
}

.value-item p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.skill-bar {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.skill-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-dark);
}

.skill-bar__track {
  height: 4px;
  background: var(--grey-light);
  border-radius: 2px;
  overflow: hidden;
}

.skill-bar__fill {
  height: 100%;
  background: linear-gradient(to right, var(--navy), var(--red));
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s ease;
}

.skill-bar__fill.animated {
  transform: scaleX(1);
}

/* ── SERVICE DETAIL ── */
.service-hero-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-hero-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.challenge-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.challenge-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--grey-light);
}

.challenge-item::before {
  display: none;
}

.challenge-item p {
  font-size: .9rem;
  margin: 0;
}

.deliverable-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.deliverable-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: rgba(255,255,255,.4); transition: color var(--transition); }
.breadcrumb a:hover { color: rgba(255,255,255,.8); }
.breadcrumb__sep { opacity: .3; }

/* ── LEGAL PAGES ── */
.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 .75rem;
  color: var(--text-dark);
}

.legal-content h3 {
  margin: 1.5rem 0 .5rem;
  color: var(--text-dark);
}

.legal-content p,
.legal-content li {
  font-size: .925rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: .75rem;
}

.legal-content ul { padding-left: 1.25rem; list-style: disc; }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .founder-grid {
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
  }

  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .process-steps::after { display: none; }

  .contact-grid { grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }

  .why-item { grid-template-columns: 1fr; }
  .why-item__side--left { border-right: none; border-bottom: 1px solid var(--grey-light); }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: block; }

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

  .trust-pillars { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .founder-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-photo {
    max-width: 300px;
    margin: 0 auto;
  }

  .founder-photo__accent { display: none; }

  .founder-traits { grid-template-columns: repeat(2, 1fr); }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }

  .footer__bottom { flex-direction: column; text-align: center; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .values-grid { grid-template-columns: 1fr; }

  .deliverable-list { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .hero__trust { flex-direction: column; gap: .75rem; }

  .case-card__body { padding: 1.25rem; }
}

@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
  .founder-traits { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .philosophy-block { padding: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}
