/* ============================================================
   SASA GROUPS — Main Stylesheet
   Strategy | Operations | Marketing & Systems
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  /* New navy-gold palette — applied April 2026 */
  --white:       #F5F1EB;   /* Swan Wing cream — warm page background       */
  --off-white:   #EDE8DF;   /* Slightly deeper cream — alternate sections    */
  --light-gray:  #D5C9B8;   /* Warm greige border — dividers, card edges     */
  --mid-gray:    #A6B7CB;   /* Steel blue-gray — muted text, subtle borders  */
  --dark-gray:   #1C4A63;   /* Navy mid — secondary dark, hover panels       */
  --charcoal:    #00314B;   /* Deep Navy — primary dark, nav, footer, hero   */
  --black:       #001F30;   /* Deepest navy — maximum contrast when needed   */
  --accent:      #B5944A;   /* Deep Gold — logo match, CTAs, active states   */
  --accent-light:#D5BD96;   /* Warm Gold — tags, eyebrows, soft accents      */
  --accent-pale: #F2EBD9;   /* Gold tint — pale backgrounds, hover fills     */
  --accent-dark: #8A6E30;   /* Dark Gold — pressed buttons, deep accents     */

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --nav-height: 80px;
  --max-width:  1280px;
  --section-pad: 120px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ── Utility ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.section-pad { padding: var(--section-pad) 0; }
.section-pad-sm { padding: 80px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-subtitle {
  font-size: 17px;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.divider {
  width: 100%;
  height: 1px;
  background: var(--light-gray);
}

/* ── Page Transitions ──────────────────────────────────────── */
.page { display: none; }
.page.active { display: block; }
#home { display: block; }

/* ── Animations ────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}

.animate-up { animation: fadeUp 0.8s var(--ease-out) both; }
.animate-up-delay-1 { animation: fadeUp 0.8s 0.1s var(--ease-out) both; }
.animate-up-delay-2 { animation: fadeUp 0.8s 0.2s var(--ease-out) both; }
.animate-up-delay-3 { animation: fadeUp 0.8s 0.3s var(--ease-out) both; }
.animate-up-delay-4 { animation: fadeUp 0.8s 0.4s var(--ease-out) both; }

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(245, 241, 235, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.nav.scrolled {
  border-color: var(--light-gray);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { cursor: pointer; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  filter: none;
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 12px;
}
.hero-monogram {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(200px, 25vw, 380px);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--charcoal);
}
.nav-logo-tagline {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-link {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark-gray);
  transition: color 0.2s;
  position: relative;
  cursor: pointer;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
  cursor: pointer;
}
.nav-cta:hover { background: var(--accent); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
}

/* ── HOME PAGE ─────────────────────────────────────────────── */

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero-bg-text {
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 280px);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-left {}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.hero-eyebrow-text {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-title strong {
  font-weight: 600;
  display: block;
}
.hero-description {
  font-size: 17px;
  color: var(--mid-gray);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 48px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s var(--ease);
  animation: float 6s var(--ease) infinite;
}
.hero-card:nth-child(2) { animation-delay: -2s; margin-left: 32px; }
.hero-card:nth-child(3) { animation-delay: -4s; }
.hero-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(184, 105, 42, 0.12);
  transform: translateY(-2px) !important;
}
.hero-card-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-pale);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 18px;
}
.hero-card-content {}
.hero-card-title {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.hero-card-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.5;
}

/* Stats bar */
.stats-bar {
  background: var(--charcoal);
  padding: 48px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 0 48px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-number span { color: var(--accent-light); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 8px;
}

/* Services snapshot */
.services-snap {
  background: var(--white);
}
.services-snap-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
  border: 1px solid var(--light-gray);
}
.service-snap-card {
  background: var(--white);
  padding: 40px 36px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-snap-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-snap-card:hover::before { transform: scaleX(1); }
.service-snap-card:hover { background: var(--accent-pale); }
.service-snap-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.service-snap-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 22px;
  transition: background 0.3s;
}
.service-snap-card:hover .service-snap-icon { background: var(--white); }
.service-snap-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-snap-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.65;
}
.service-snap-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s var(--ease);
}
.service-snap-card:hover .service-snap-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Why SASA */
.why-sasa {
  background: var(--off-white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-left {}
.why-points {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-point {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-point-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 4px;
  flex-shrink: 0;
}
.why-point-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.why-point-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.65;
}
.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-feat-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px 24px;
  border: 1px solid var(--light-gray);
  transition: all 0.3s var(--ease);
}
.why-feat-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(184, 105, 42, 0.1);
}
.why-feat-card.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
}
.why-feat-icon {
  font-size: 28px;
  margin-bottom: 16px;
}
.why-feat-card.featured .why-feat-icon { margin-bottom: 0; font-size: 32px; }
.why-feat-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.why-feat-card.featured .why-feat-title { color: var(--white); }
.why-feat-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
}
.why-feat-card.featured .why-feat-desc { color: rgba(255,255,255,0.6); }

/* Testimonial */
.testimonial-section {
  background: var(--charcoal);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 48px;
  font-family: var(--font-display);
  font-size: 400px;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}
.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 48px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 40px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
}
.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.testimonial-role {
  font-size: 13px;
  color: var(--mid-gray);
}

/* CTA section */
.cta-section {
  background: var(--charcoal);
  padding: 100px 0;
}
.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.cta-title em { font-style: italic; }
.cta-right { flex-shrink: 0; }
.btn-white {
  background: var(--accent-light);
  color: var(--charcoal);
  font-weight: 600;
}
.btn-white:hover { background: var(--white); color: var(--charcoal); }

/* ── ABOUT PAGE ────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--white);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 8vw, 120px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--charcoal);
}
.page-hero-title em { font-style: italic; color: var(--accent); }
.page-hero-sub {
  font-size: 17px;
  color: var(--mid-gray);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 28px;
}

.about-story {
  background: var(--off-white);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-story-text p {
  font-size: 16px;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-story-text p:first-child {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--charcoal);
}
.about-credentials {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 40px;
}
.credential-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--light-gray);
}
.credential-item:last-child { border-bottom: none; padding-bottom: 0; }
.credential-item:first-child { padding-top: 0; }
.credential-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-pale);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 16px;
}
.credential-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}
.credential-desc {
  font-size: 13px;
  color: var(--mid-gray);
  margin-top: 2px;
}

.values-section {
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--light-gray);
  margin-top: 64px;
}
.value-card {
  background: var(--white);
  padding: 48px 32px;
  transition: background 0.3s;
}
.value-card:hover { background: var(--accent-pale); }
.value-number {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.value-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.value-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.65;
}

/* ── SERVICES PAGE ─────────────────────────────────────────── */
.services-page {}
.services-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  color: var(--mid-gray);
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--light-gray);
}
.service-full-card {
  background: var(--white);
  padding: 48px 40px;
  transition: all 0.3s var(--ease);
}
.service-full-card:hover { background: var(--accent-pale); }
.service-full-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.service-full-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: background 0.3s;
}
.service-full-card:hover .service-full-icon { background: var(--white); }
.service-full-price {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 6px 12px;
  border-radius: 2px;
}
.service-full-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-full-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.service-full-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark-gray);
}
.service-feature::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PORTFOLIO PAGE ────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.portfolio-card {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: var(--accent);
}
.portfolio-card-visual {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.portfolio-card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-card:hover .portfolio-card-visual::after { opacity: 1; }
.portfolio-card-body {
  padding: 28px 24px;
  background: var(--white);
}
.portfolio-card-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.portfolio-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.portfolio-card-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
}

/* ── PROCESS PAGE ──────────────────────────────────────────── */
.process-timeline {
  position: relative;
  margin-top: 64px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--light-gray);
}
.process-step {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  padding-bottom: 64px;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.process-step:hover .process-step-number {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.process-step-content {
  padding-top: 12px;
  flex: 1;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.process-step-desc {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
  max-width: 560px;
}
.process-deliverables {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.deliverable-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  padding: 6px 12px;
  border-radius: 2px;
  color: var(--dark-gray);
}

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info {}
.contact-info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 18px;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 16px;
  color: var(--charcoal);
  font-weight: 500;
}
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 48px;
}
.form-group {
  margin-bottom: 24px;
}
.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── BLOG PAGE ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}
.blog-card {
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  border-color: var(--accent);
}
.blog-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}
.blog-card-body {
  padding: 28px 24px;
}
.blog-card-category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: 0.05em;
}
.blog-card-meta::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--accent);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.footer-brand-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  cursor: pointer;
}
.footer-link:hover { color: var(--accent-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-copy span { color: var(--accent-light); }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: all 0.2s;
  cursor: pointer;
}
.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  background: rgba(213, 189, 150, 0.1);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 32px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 32px; }
  .stat-item:nth-child(2n) { border-bottom: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 24px; }
  .hero-content { padding: 60px 24px; }
  .container { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-snap-header { flex-direction: column; gap: 24px; align-items: flex-start; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .process-timeline::before { display: none; }
  .process-step { flex-direction: column; gap: 16px; }
}
/* ============================================================
   SASA GROUPS — V2 Additions
   Inspired by: Boutique COO + Able & Howe + NoGood + Chief Outsiders
   ============================================================ */

/* ── Rotating hero words (Chief Outsiders inspired) ────── */
.hero-rotate-wrap {
  display: inline-block;
  overflow: hidden;
  height: 1.05em;
  vertical-align: bottom;
}
.hero-rotate {
  display: flex;
  flex-direction: column;
  animation: rotateWords 8s cubic-bezier(0.16,1,0.3,1) infinite;
}
.hero-rotate span {
  display: block;
  height: 1.05em;
  color: var(--accent);
  font-style: italic;
  white-space: nowrap;
}
@keyframes rotateWords {
  0%,18%  { transform: translateY(0); }
  25%,43% { transform: translateY(-1.05em); }
  50%,68% { transform: translateY(-2.10em); }
  75%,93% { transform: translateY(-3.15em); }
  100%    { transform: translateY(0); }
}

/* ── Hero V2: Split layout ──────────────────────────────── */
.hero-v2 {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}
.hero-v2-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
}
.hero-v2-right {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 56px;
  position: relative;
  overflow: hidden;
}
.hero-v2-right-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero-v2-right-bg img {
  width: 80%;
  height: auto;
  opacity: 0.07;
  filter: brightness(0) invert(1);
}
.hero-v2-cards {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-v2-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 22px 26px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.hero-v2-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--accent);
  transform: translateX(4px);
}
.hero-v2-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.hero-v2-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
  letter-spacing: 0.02em;
}
.hero-v2-card-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--accent-light);
  background: rgba(181,148,74,0.12);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.hero-v2-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.55;
}

/* ── Contrarian hook bar (NoGood inspired) ──────────────── */
.contrarian-bar {
  background: var(--dark-gray);
  padding: 20px 48px;
  text-align: center;
}
.contrarian-text {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 400;
  font-style: italic;
  color: var(--accent-light);
  letter-spacing: 0.01em;
}
.contrarian-text strong {
  font-style: normal;
  font-weight: 600;
  color: var(--white);
}

/* ── Trust strip ────────────────────────────────────────── */
.trust-strip {
  background: var(--off-white);
  padding: 44px 0;
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.trust-strip-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  text-align: center;
  margin-bottom: 24px;
}
.trust-logos {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-logo-item {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  opacity: 0.4;
  transition: opacity 0.2s;
}
.trust-logo-item:hover { opacity: 0.9; }

/* ── Pain points section (Able & Howe inspired) ─────────── */
.pain-section {
  background: var(--charcoal);
  padding: 100px 0;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  margin-top: 64px;
}
.pain-card {
  background: var(--charcoal);
  padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.pain-card:hover { background: rgba(255,255,255,0.025); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.pain-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.pain-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  margin-bottom: 20px;
}
.pain-solution {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-light);
  letter-spacing: 0.01em;
}
.pain-solution::before { content: '\2192  '; }

/* ── SASA OS™ pillars (Chief Outsiders Growth Gears inspired) */
.os-section { background: var(--off-white); }
.os-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--light-gray);
  margin-top: 64px;
}
.os-pillar {
  background: var(--white);
  padding: 56px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.os-pillar:hover { background: var(--accent-pale); }
.os-pillar-bg-letter {
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 600;
  color: var(--light-gray);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
  user-select: none;
}
.os-pillar:hover .os-pillar-bg-letter { color: rgba(181,148,74,0.12); }
.os-pillar-icon {
  width: 52px; height: 52px;
  background: var(--off-white);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.os-pillar:hover .os-pillar-icon { background: var(--white); }
.os-pillar-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.15;
}
.os-pillar-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 24px;
}
.os-pillar-services { display: flex; flex-direction: column; gap: 7px; }
.os-service-item {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--dark-gray);
  letter-spacing: 0.03em;
  display: flex; align-items: center; gap: 8px;
}
.os-service-item::before {
  content: '';
  display: block;
  width: 12px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Who we help (industry verticals) ───────────────────── */
.who-section { background: var(--white); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.who-card {
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 32px 28px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.who-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(181,148,74,0.1);
}
.who-card-emoji { font-size: 28px; margin-bottom: 14px; }
.who-card-title { font-weight: 600; font-size: 16px; color: var(--charcoal); margin-bottom: 10px; }
.who-card-desc { font-size: 13px; color: var(--mid-gray); line-height: 1.65; }

/* ── Comparison table ───────────────────────────────────── */
.diff-section { background: var(--white); }
.diff-table { width: 100%; margin-top: 64px; border-collapse: collapse; }
.diff-table th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 24px;
  text-align: left;
  border-bottom: 2px solid var(--charcoal);
}
.diff-table th:first-child { color: var(--mid-gray); }
.diff-table th:nth-child(2) { color: var(--mid-gray); text-align: center; }
.diff-table th:last-child { color: var(--accent); background: var(--accent-pale); text-align: center; }
.diff-table td { padding: 18px 24px; border-bottom: 1px solid var(--light-gray); font-size: 14px; }
.diff-table td:nth-child(2) { text-align: center; }
.diff-table td:last-child { background: var(--accent-pale); text-align: center; }
.diff-table tr:hover td { background: var(--off-white); }
.diff-table tr:hover td:last-child { background: var(--accent-pale); }
.check { color: #2d6a4f; font-weight: 500; }
.cross { color: var(--mid-gray); }
.partial { color: var(--mid-gray); font-size: 13px; }

/* ── Testimonials grid ──────────────────────────────────── */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 64px;
}
.tcard {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  padding: 36px 40px;
  transition: all 0.3s var(--ease);
}
.tcard:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(181,148,74,0.1); }
.tcard.featured {
  background: var(--charcoal);
  border-color: var(--charcoal);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.t-mark { font-family: var(--font-display); font-size: 72px; line-height: 0.8; color: var(--accent); margin-bottom: 16px; }
.tcard.featured .t-mark { color: rgba(181,148,74,0.35); }
.t-quote { font-family: var(--font-display); font-size: 19px; font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 1.55; margin-bottom: 24px; }
.tcard.featured .t-quote { font-size: 23px; color: var(--white); }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--white);
  flex-shrink: 0;
}
.t-name { font-weight: 600; font-size: 14px; color: var(--charcoal); }
.tcard.featured .t-name { color: var(--white); }
.t-role { font-size: 12px; color: var(--mid-gray); margin-top: 2px; }

/* ── 3-step easy CTA (Boutique COO inspired) ────────────── */
.easy-cta { background: var(--white); padding: 100px 0; text-align: center; }
.easy-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; margin: 56px 0; flex-wrap: wrap;
}
.easy-step { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 200px; }
.easy-step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--accent-pale); border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; color: var(--accent); font-weight: 500;
}
.easy-step-label { font-weight: 600; font-size: 14px; color: var(--charcoal); text-align: center; }
.easy-step-desc { font-size: 13px; color: var(--mid-gray); text-align: center; line-height: 1.55; }
.easy-arrow { font-size: 20px; color: var(--light-gray); padding: 0 8px; margin-top: 14px; }
.easy-note { font-size: 14px; color: var(--mid-gray); margin-top: 24px; }
.easy-note strong { color: var(--charcoal); }

/* ── Resources preview ──────────────────────────────────── */
.resources-section { background: var(--off-white); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 0; }
.res-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 4px; overflow: hidden;
  transition: all 0.3s var(--ease); cursor: pointer;
}
.res-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.res-card-top {
  height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; position: relative;
}
.res-card-cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px; font-weight: 500;
}
.res-card-body { padding: 22px 24px; }
.res-card-title { font-weight: 600; font-size: 15px; color: var(--charcoal); line-height: 1.35; margin-bottom: 8px; }
.res-card-desc { font-size: 13px; color: var(--mid-gray); line-height: 1.6; }

/* ── FAQ accordion ──────────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-list { margin-top: 56px; }
.faq-item { border-bottom: 1px solid var(--light-gray); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; cursor: pointer;
  font-weight: 600; font-size: 16px; color: var(--charcoal);
  transition: color 0.2s; user-select: none; gap: 20px;
}
.faq-q:hover { color: var(--accent); }
.faq-toggle {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--light-gray);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--accent); flex-shrink: 0;
  transition: all 0.3s; line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); border-color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 0 26px; font-size: 15px; color: var(--mid-gray); line-height: 1.75; max-width: 680px; }

/* ── Sticky CTA bar ─────────────────────────────────────── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar-text { font-size: 14px; color: rgba(255,255,255,0.65); }
.sticky-bar-text strong { color: var(--white); }
.sticky-bar-close { color: rgba(255,255,255,0.3); font-size: 22px; cursor: pointer; padding: 2px 8px; transition: color 0.2s; }
.sticky-bar-close:hover { color: var(--white); }

/* ── Section header flex ────────────────────────────────── */
.sh-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; }

/* ── Responsive V2 ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-v2 { grid-template-columns: 1fr; }
  .hero-v2-right { display: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .os-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tcard.featured { grid-column: 1; grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero-v2-left { padding: 60px 24px; }
  .contrarian-bar { padding: 16px 24px; }
  .contrarian-text { font-size: 17px; }
  .who-grid { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .easy-steps { flex-direction: column; align-items: center; }
  .easy-arrow { transform: rotate(90deg); margin-top: 0; }
  .sticky-bar { padding: 12px 20px; flex-wrap: wrap; }
  .sh-flex { flex-direction: column; gap: 20px; align-items: flex-start; }
  .diff-section { overflow-x: auto; }
  .diff-table { min-width: 600px; }
}

/* =============================================
   NEW ELEMENTS — HOMEPAGE REBUILD
   ============================================= */

/* NAV DROPDOWNS */
.nav-dropdown { position: relative; }
.nav-link-drop { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 0.5px solid var(--light-gray);
  border-radius: 4px;
  min-width: 200px;
  padding: 8px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.15s;
  font-family: var(--font-sans);
}
.nav-dropdown-item:hover { background: var(--off-white); color: var(--accent); }
.nav-dropdown-soon { opacity: 0.5; cursor: default; }
.nav-soon-tag {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-pale);
  color: var(--accent);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 6px;
}

/* HERO PILLARS (Option A) */
.hero-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
  padding: 40px 32px;
}
.hero-pillar {
  padding: 22px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-pillar:last-child { border-bottom: none; }
.hero-pillar:hover .hero-pillar-name { color: var(--accent-light); transform: translateX(4px); }
.hero-pillar-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 8px;
  transition: all 0.3s;
}
.hero-pillar-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}
.hero-pillar-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.03em;
}

/* SQUARE STEP NUMBERS */
.easy-step-sq {
  border-radius: 0 !important;
  width: 48px !important;
  height: 48px !important;
}

/* WHO WE HELP V2 — hover lift + navy fill */
.who-card-v2 {
  background: var(--white);
  border: 0.5px solid var(--light-gray);
  border-radius: 4px;
  padding: 28px 24px;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
.who-card-v2:hover {
  transform: translateY(-8px);
  background: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 20px 48px rgba(0,49,75,0.15);
}
.who-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 14px;
  transition: color 0.3s;
}
.who-card-v2:hover .who-card-num { color: var(--accent-light); }
.who-card-v2 .who-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.3s;
}
.who-card-v2:hover .who-card-title { color: var(--off-white); }
.who-card-v2 .who-card-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.65;
  transition: color 0.3s;
}
.who-card-v2:hover .who-card-desc { color: rgba(245,241,235,0.55); }

/* EDITORIAL COMPARISON SPLIT */
.diff-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-left .section-title { margin-bottom: 0; }
.diff-body {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.85;
  margin-bottom: 32px;
}
.diff-body strong { color: var(--charcoal); font-weight: 500; }
.diff-divider { width: 40px; height: 1px; background: var(--light-gray); margin-bottom: 32px; }
.diff-points { display: flex; flex-direction: column; gap: 16px; }
.diff-point { display: flex; align-items: flex-start; gap: 14px; }
.diff-point-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 7px; }
.diff-point-text { font-size: 14px; color: var(--charcoal); line-height: 1.5; font-weight: 500; }
.diff-point-text span { color: var(--mid-gray); font-size: 13px; display: block; margin-top: 2px; font-weight: 400; }

/* ABOUT PAGE — PHILOSOPHY PANEL */
.about-philosophy { display: flex; flex-direction: column; gap: 0; }
.about-phil-item {
  padding: 24px 0;
  border-bottom: 0.5px solid var(--light-gray);
}
.about-phil-item:first-child { padding-top: 0; }
.about-phil-item:last-child { border-bottom: none; }
.about-phil-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.about-phil-text {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.8;
}

/* FOUNDER LINK */
.founder-link {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--charcoal);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  cursor: pointer;
  transition: color 0.2s;
}
.founder-link:hover { color: var(--accent); }

/* FOUNDER FACTS */
.founder-facts { display: flex; flex-direction: column; gap: 0; }
.founder-fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 0.5px solid var(--light-gray);
  font-size: 13px;
}
.founder-fact:last-child { border-bottom: none; }
.founder-fact-label { color: var(--mid-gray); }
.founder-fact-val { color: var(--charcoal); font-weight: 500; text-align: right; }

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item { margin-bottom: 20px; }
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.contact-info-val { font-size: 15px; color: var(--charcoal); font-weight: 400; }
.contact-form-wrap { background: var(--off-white); padding: 40px 36px; border-radius: 4px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 14px;
  border: 0.5px solid var(--light-gray);
  border-radius: 2px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; }
.services-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
  background: var(--white);
  border: 0.5px solid var(--light-gray);
  border-radius: 2px;
}
.check-label { font-size: 12px; color: var(--charcoal); display: flex; align-items: center; gap: 8px; cursor: pointer; }
.check-label input { accent-color: var(--accent); }
.radio-row { display: flex; gap: 24px; padding: 12px 0; }
.radio-label { font-size: 13px; color: var(--charcoal); display: flex; align-items: center; gap: 8px; cursor: pointer; }
.radio-label input { accent-color: var(--accent); }

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .diff-editorial { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-check-grid { grid-template-columns: 1fr; }
  .hero-pillars { padding: 24px 20px; }
  .nav-dropdown-menu { display: none !important; }
}

/* MARQUEE TRUST STRIP */
.trust-marquee-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.trust-marquee-wrap::before,
.trust-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.trust-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white), transparent);
}
.trust-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white), transparent);
}
.trust-marquee {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.trust-marquee:hover { animation-play-state: paused; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MARQUEE FIX */
.trust-marquee {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.trust-strip .trust-logo-item {
  display: inline-flex !important;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0 32px;
  border-right: 1px solid var(--light-gray);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
}

/* FIX MARQUEE — force horizontal */
.trust-marquee {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.trust-strip .trust-logo-item {
  display: inline-flex !important;
  white-space: nowrap;
  padding: 0 32px;
  border-right: 1px solid var(--light-gray);
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  color: var(--mid-gray);
}
