<style>
/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0d0f22;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Brand Colors */
  --color-coral: #f66a68;
  --color-coral-hover: #e45a58;
  --color-peppermint: #4af1a2;
  --color-peppermint-glow: #4af1a2;
  --color-dark-blue: #1b1d34;
  --color-super-dark: #0d0f22;

  /* Surfaces */
  --color-bg-light: #f7f7f9;
  --color-bg-white: #ffffff;
  --color-bg-card-dark: #1e2040;

  /* Text */
  --color-text-white: #ffffff;
  --color-text-light: #c4c9d4;
  --color-text-dark: #1b1d34;
  --color-text-muted: #8892a4;

  /* Borders */
  --color-border-light: #e2e4e8;
  --color-border-dark: #2a2d4a;

  /* Typography */
  --font-main: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;
  --container-padding: 0 24px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-light {
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.section-white {
  background-color: var(--color-bg-white);
  color: var(--color-text-dark);
}

.section-dark {
  background-color: var(--color-dark-blue);
  color: var(--color-text-white);
}

.section-super-dark {
  background-color: var(--color-super-dark);
  color: var(--color-text-white);
}

.section-coral {
  background-color: var(--color-coral);
  color: var(--color-text-white);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
  border: 2px solid transparent;
}

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

.btn-coral:hover {
  background-color: var(--color-coral-hover);
  border-color: var(--color-coral-hover);
  transform: translateY(-1px);
}

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

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

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

.btn-outline-dark:hover {
  background-color: var(--color-text-dark);
  color: white;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

/* ============================================
   1. HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(13, 15, 34, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0 24px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: white;
}

.nav-cta {
  margin-left: 12px;
}

/* Mobile menu toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================
   2. HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--color-dark-blue);
  overflow: hidden;
}

.hero .container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-peppermint);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-main);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: italic;
  color: var(--color-coral);
}

.hero-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 420px;
}

.hero-text strong {
  color: white;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  z-index: 0;
  pointer-events: none;
}

.hero-image .hero-bull-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* ============================================
   3. LOGO BAR (Trusted By)
   ============================================ */
.logo-bar {
  background-color: var(--color-coral);
  padding: 36px 0;
  text-align: center;
}

.logo-bar-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.logo-bar-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-bar-logos img {
  height: 28px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.logo-bar-logos img:hover {
  opacity: 1;
}

/* Text fallback for logos */
.client-logo {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================
   4. WHAT WE DO
   ============================================ */
.what-we-do {
  padding: var(--section-padding);
  text-align: center;
  background-image: url('images/Home-what%20we%20do-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.section-heading-coral {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto 60px;
}

.section-subtitle-dark {
  color: #666;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 40px 28px 36px;
  text-align: center;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.service-card h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-peppermint);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   5. BRAND STORY
   ============================================ */
.brand-story {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: 80px 0;
}

.brand-story-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.brand-story-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-story-content h2 {
  font-family: var(--font-main);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 24px;
}

.brand-story-content h2 em {
  font-style: italic;
}

.brand-story-content p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.brand-story-tagline {
  font-weight: 700;
  color: var(--color-coral) !important;
  font-size: 0.95rem;
  margin-top: 24px;
}

.brand-story-image {
  position: absolute;
  right: 0;
  top: -80px;
  bottom: -80px;
  width: 50%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.brand-story-image img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 100%;
  width: auto;
  display: block;
}

/* ============================================
   6. BUILT ON WHAT ACTUALLY WORKS
   ============================================ */
.principles {
  padding: var(--section-padding);
  text-align: center;
}

.section-heading-dark {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.section-heading-peppermint {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-peppermint);
  margin-bottom: 12px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.principle-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 40px 28px 36px;
  text-align: left;
}

.principle-number {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-peppermint);
  margin-bottom: 16px;
  line-height: 1;
}

.principle-card h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   7. MORE BRAIN FOR YOUR BUCK
   ============================================ */
.more-brain {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 60px max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.brain-image-col {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.brain-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.brain-content-col {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brain-text-col {
  margin-left: calc(45vw - max(24px, calc((100vw - 1200px) / 2 + 24px)));
  margin-bottom: 32px;
}

.more-brain h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.brain-text-col > p {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 0;
  max-width: 480px;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-prop {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 24px 14px 20px;
  text-align: center;
  transition: background 0.3s;
}

.value-prop:hover {
  background: #252848;
}

.value-prop-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.value-prop-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.value-prop h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-peppermint);
  margin-bottom: 6px;
}

.value-prop p {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================
   8. THE 60:40 DISCIPLINE
   ============================================ */
.discipline-6040 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: 80px 0;
}

.discipline-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.discipline-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discipline-content h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.discipline-content h2 span {
  color: var(--color-peppermint);
}

.discipline-content > p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}

.discipline-content .tagline {
  font-weight: 700;
  color: var(--color-coral);
  font-size: 0.95rem;
  margin-top: 8px;
}

.discipline-visual {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.discipline-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fallback triangle SVG for 60:40 */
.discipline-triangle-svg {
  width: 380px;
  height: 340px;
}

.discipline-triangle-svg polygon {
  fill: none;
  stroke: var(--color-peppermint);
  stroke-width: 2;
  filter: drop-shadow(0 0 25px rgba(74, 241, 162, 0.5)) drop-shadow(0 0 80px rgba(74, 241, 162, 0.2));
}

.discipline-triangle-svg text {
  font-family: var(--font-main);
  fill: white;
  font-weight: 500;
}

/* ============================================
   9. AI CAPABILITY
   ============================================ */
.ai-capability {
  padding: var(--section-padding);
  text-align: center;
  background-image: url('images/Home-ai%20capability%20bg-img.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.ai-capability h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.ai-capability h2 strong {
  font-weight: 700;
  color: var(--color-text-dark);
}

.ai-capability > .container > p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 50px;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.ai-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s var(--ease-smooth);
}

.ai-card:hover {
  transform: translateY(-4px);
}

.ai-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 241, 162, 0.08), rgba(246, 106, 104, 0.08));
}

.ai-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-card-body {
  padding: 28px;
}

.ai-card-body h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.ai-card-body p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ============================================
   10. WORK THAT WORKS (Portfolio)
   ============================================ */
.portfolio {
  padding: var(--section-padding);
  background-color: var(--color-super-dark);
  background-image: url('images/Home-work-that-works-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.portfolio-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.portfolio-icon {
  width: 36px;
  height: 36px;
  background: var(--color-peppermint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-icon svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.portfolio-header h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
}

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

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-smooth);
}

.portfolio-card:hover {
  transform: translateY(-4px);
}

.portfolio-card-image {
  width: 100%;
  height: 240px;
  background: var(--color-bg-card-dark);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border-dark);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 16px 4px 0;
}

.portfolio-card-text h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.portfolio-card-text p {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.portfolio-metric {
  background: var(--color-peppermint);
  color: var(--color-dark-blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ============================================
   FILTER BAR
   ============================================ */
.filter-bar {
  background-color: var(--color-super-dark);
  border-bottom: 1px solid var(--color-border-dark);
  padding: 0;
  position: sticky;
  top: 70px;
  z-index: 100;
}

.filter-bar .container {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar .container::-webkit-scrollbar { display: none; }

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 24px;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.filter-btn:hover { color: white; }
.filter-btn.active { color: white; border-bottom-color: var(--color-coral); font-weight: 600; }

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio {
  padding: var(--section-padding);
  background-color: var(--color-super-dark);
  background-image: url('images/Home-work-that-works-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.portfolio-header-left { display: flex; align-items: center; gap: 16px; }

.portfolio-icon {
  width: 36px; height: 36px;
  background: var(--color-peppermint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.portfolio-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.5; }

.portfolio-header h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
}

.portfolio-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }

.portfolio-header-right p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

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

.portfolio-card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-smooth);
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
}

.portfolio-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.portfolio-card-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-smooth);
}

.portfolio-card:hover .portfolio-card-image img { transform: scale(1.04); }

.portfolio-card-image .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13,15,34,0.9) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.portfolio-card:hover .card-overlay { opacity: 1; }

.portfolio-card-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-coral);
  color: white;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s;
}

.portfolio-card-body {
  padding: 24px;
}

.portfolio-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag-brand { background: rgba(246,106,104,0.15); color: var(--color-coral); }
.tag-comms { background: rgba(74,241,162,0.12); color: var(--color-peppermint); }
.tag-exp { background: rgba(255,255,255,0.08); color: var(--color-text-light); }

.portfolio-card-body h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.portfolio-card-body p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}

.portfolio-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--color-border-dark);
}

.portfolio-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.portfolio-metric .metric-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-peppermint);
  line-height: 1;
}

.portfolio-metric .metric-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.portfolio-card-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-coral);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.portfolio-card:hover .portfolio-card-cta { gap: 10px; }

.portfolio-card-cta svg { width: 14px; height: 14px; }

/* ============================================
   FEATURED CASE STUDY
   ============================================ */
.featured-case {
  padding: var(--section-padding);
}

.featured-case-inner {
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border: 1px solid var(--color-border-dark);
}

.featured-case-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.featured-case-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}

.featured-case-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--color-peppermint);
  color: var(--color-dark-blue);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
}

.featured-case-body {
  background: var(--color-bg-card-dark);
  padding: 60px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-case-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-coral);
  margin-bottom: 16px;
}

.featured-case-body h2 {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 500;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.featured-case-body p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 32px;
}

.featured-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
}

.featured-stat .stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-peppermint);
  line-height: 1;
  margin-bottom: 4px;
}

.featured-stat .stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================
   RESULTS STRIP
   ============================================ */
.results-strip {
  background-color: var(--color-coral);
  padding: 60px 0;
}

.results-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.result-item { display: flex; flex-direction: column; gap: 8px; }

.result-value {
  font-family: var(--font-main);
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.result-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.result-divider {
  width: 1px;
  background: rgba(255,255,255,0.25);
  display: none;
}
/* ============================================
   CLAIMS STRIP
   ============================================ */
.claims-strip {
  background-color: var(--color-coral);
  padding: 36px 0;
}

.claims-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.claim-item {
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.claim-item .claim-number {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}

.claim-item p {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.claim-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-heading-coral {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.section-heading-dark {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.section-heading-peppermint {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-peppermint);
  margin-bottom: 12px;
}

.section-heading-white {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 580px;
  margin-bottom: 60px;
}

.section-subtitle-dark { color: #666; }

/* ============================================
   IMAGE PLACEHOLDER
   ============================================ */
.img-placeholder {
  background: linear-gradient(135deg, #1b1d34 0%, #252848 100%);
  border: 2px dashed rgba(74,241,162,0.25);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-family: var(--font-main);
  font-size: 12px;
  text-align: center;
  padding: 24px;
  gap: 10px;
}

.img-placeholder-dark {
  background: linear-gradient(135deg, #0d0f22 0%, #1b1d34 100%);
  border: 2px dashed rgba(74,241,162,0.2);
}

.img-placeholder-light {
  background: linear-gradient(135deg, #e8eaf0 0%, #f7f7f9 100%);
  border: 2px dashed rgba(27,29,52,0.15);
  color: rgba(27,29,52,0.3);
}

.img-placeholder svg {
  width: 36px;
  height: 36px;
  opacity: 0.4;
}

.img-placeholder span {
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

/* ============================================
   EVIDENCE-BASED MARKETING (split layout)
   ============================================ */
.ebm-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: 100px 0;
}

.ebm-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
  display: flex;
  align-items: center;
  gap: 80px;
}

.ebm-content {
  flex: 0 0 500px;
  max-width: 500px;
}

.ebm-content h2 {
  font-family: var(--font-main);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text-dark);
  margin-bottom: 20px;
}

.ebm-content h2 em { font-style: italic; color: var(--color-coral); }

.ebm-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.ebm-content .tagline {
  font-weight: 700;
  color: var(--color-coral);
  font-size: 0.95rem;
  margin-top: 24px;
  margin-bottom: 32px;
}

.ebm-visual {
  flex: 1;
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
}

/* ============================================
   THREE PRINCIPLES
   ============================================ */
.principles {
  padding: var(--section-padding);
  text-align: center;
  background-image: url('images/Home-what%20we%20do-bg.png');
  background-size: cover;
  background-position: center;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.principle-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 40px 28px 36px;
  text-align: left;
  transition: transform 0.3s var(--ease-smooth);
}

.principle-card:hover { transform: translateY(-4px); }

.principle-number {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-peppermint);
  margin-bottom: 16px;
  line-height: 1;
}

.principle-card h3 {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.principle-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================
   BEHAVIOURAL SCIENCE
   ============================================ */
.behavioural {
  padding: var(--section-padding);
}

.behavioural-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.behavioural-image {
  min-height: 480px;
  border-radius: 16px;
  overflow: hidden;
}

.behavioural-content h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.behavioural-content h2 em { font-style: italic; color: var(--color-coral); }

.behavioural-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.bias-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bias-pill {
  padding: 8px 18px;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-dark);
  transition: all 0.2s;
}

.bias-pill:hover {
  background: var(--color-dark-blue);
  color: var(--color-peppermint);
  border-color: var(--color-dark-blue);
}

/* ============================================
   60:40 DISCIPLINE
   ============================================ */
.discipline-6040 {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 600px;
  padding: 80px 0;
}

.discipline-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.discipline-content h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.2;
}

.discipline-content h2 .highlight { color: var(--color-peppermint); }

.discipline-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.discipline-content .tagline {
  font-weight: 700;
  color: var(--color-coral);
  font-size: 0.95rem;
  margin-top: 8px;
}

.discipline-diagram {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.discipline-bar-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.discipline-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.discipline-bar-label span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-light);
}

.discipline-bar-label strong {
  font-size: 1.2rem;
  font-weight: 800;
}

.bar-track {
  height: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 1s var(--ease-smooth);
}

.bar-fill-peppermint { background: var(--color-peppermint); }
.bar-fill-coral { background: var(--color-coral); }

.discipline-proof {
  margin-top: 32px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  border-left: 3px solid var(--color-peppermint);
}

.discipline-proof p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

.discipline-proof cite {
  display: block;
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-peppermint);
  font-style: normal;
}

/* ============================================
   AI DELIVERY (More Brain section)
   ============================================ */
.ai-delivery {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding: 60px max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.ai-delivery-image-col {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 42%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.ai-delivery-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ai-delivery-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-delivery-text {
  margin-left: calc(42vw - max(24px, calc((100vw - 1200px) / 2 + 24px)));
  margin-bottom: 32px;
}

.ai-delivery h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-dark-blue);
  margin-bottom: 12px;
}

.ai-delivery-text > p {
  font-size: 0.95rem;
  color: rgba(0,0,0,0.6);
  max-width: 480px;
}

.value-props {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.value-prop {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 24px 14px 20px;
  text-align: center;
  transition: background 0.3s;
}

.value-prop:hover { background: #252848; }

.value-prop-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.value-prop-icon img { width: 44px; height: 44px; object-fit: contain; }

.value-prop h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-peppermint);
  margin-bottom: 6px;
}

.value-prop p {
  font-size: 0.7rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ============================================
   AI CAPABILITY CARDS
   ============================================ */
.ai-tools {
  padding: var(--section-padding);
  text-align: center;
  background-image: url('images/Home-ai%20capability%20bg-img.png');
  background-size: cover;
  background-position: center;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
}

.ai-tools h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.ai-tools > .container > p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 50px;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.ai-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s var(--ease-smooth);
}

.ai-card:hover { transform: translateY(-4px); }

.ai-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74,241,162,0.08), rgba(246,106,104,0.08));
}

.ai-card-image img { width: 100%; height: 100%; object-fit: cover; }

.ai-card-body { padding: 28px; }

.ai-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

.ai-card-body p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}


/* ============================================
   THE MANIFESTO STRIP
   ============================================ */
.manifesto-strip {
  background: var(--color-coral);
  padding: 48px 0;
  text-align: center;
}

.manifesto-strip blockquote {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 500;
  font-style: italic;
  color: white;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
}

.manifesto-strip cite {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 600;
  font-style: normal;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ============================================
   ABOUT SPLIT (We strip away)
   ============================================ */
.about-split {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: 640px; padding: 80px 0;
}

.about-split-image {
  position: absolute; right: 0; top: -60px; bottom: -60px;
  width: 50%; z-index: 0; pointer-events: none; overflow: hidden;
}

.about-split-image img {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 0; height: 100%; width: auto; display: block;
}

.about-split-layout {
  position: relative; z-index: 1; width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.about-split-content { max-width: 520px; }

.about-split-content .eyebrow {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--color-coral); margin-bottom: 16px; display: block;
}

.about-split-content h2 {
  font-family: var(--font-main);
  font-size: 2.6rem; font-weight: 500;
  color: var(--color-text-dark); line-height: 1.2; margin-bottom: 24px;
}

.about-split-content h2 em { font-style: italic; }

.about-split-content p {
  font-size: 0.95rem; color: #555; line-height: 1.75; margin-bottom: 16px;
}

.about-split-content .tagline {
  font-weight: 700; color: var(--color-coral);
  font-size: 1rem; margin-top: 24px; margin-bottom: 32px; display: block;
}

/* ============================================
   THE TRANSPARENT MODEL
   ============================================ */
.transparent-model {
  padding: var(--section-padding);
  background-image: url('images/Home-what%20we%20do-bg.png');
  background-size: cover; background-position: center;
}

.transparent-model-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 60px;
}

.transparent-model-header h2 {
  font-family: var(--font-main);
  font-size: 2.8rem; font-weight: 500;
  color: var(--color-peppermint); line-height: 1.15;
}

.transparent-model-header h2 em { font-style: italic; color: var(--color-coral); }

.transparent-model-header p {
  font-size: 0.95rem; color: var(--color-text-light); line-height: 1.75;
}

.model-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.model-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px; padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-smooth);
}

.model-card:hover { transform: translateY(-4px); }

.model-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.accent-coral { background: var(--color-coral); }
.accent-peppermint { background: var(--color-peppermint); }
.accent-both { background: linear-gradient(90deg, var(--color-coral), var(--color-peppermint)); }

.model-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-coral { background: rgba(246,106,104,0.12); }
.icon-peppermint { background: rgba(74,241,162,0.10); }

.model-icon svg {
  width: 26px; height: 26px; fill: none; stroke-width: 2;
}
.icon-coral svg { stroke: var(--color-coral); }
.icon-peppermint svg { stroke: var(--color-peppermint); }

.model-card h3 {
  font-family: var(--font-main);
  font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 12px;
}

.model-card p {
  font-size: 0.88rem; color: var(--color-text-light); line-height: 1.65;
}

/* ============================================
   TEAM / PEOPLE SECTION
   ============================================ */
.team-section {
  padding: var(--section-padding);
}

.team-section-header {
  text-align: center; margin-bottom: 60px;
}

.team-section-header h2 {
  font-family: var(--font-main);
  font-size: 2.5rem; font-weight: 500;
  color: white; margin-bottom: 12px;
}

.team-section-header h2 em { font-style: italic; color: var(--color-coral); }

.team-section-header p {
  font-size: 0.95rem; color: var(--color-text-muted); max-width: 520px; margin: 0 auto;
}

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}

.team-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.3s var(--ease-smooth);
}

.team-card:hover { transform: translateY(-4px); }

.team-card-image {
  width: 100%; height: 280px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}

.team-card-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  transition: transform 0.4s var(--ease-smooth);
}

.team-card:hover .team-card-image img { transform: scale(1.04); }

.team-card-body { padding: 28px 24px; }

.team-card-body h3 {
  font-family: var(--font-main);
  font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.82rem; font-weight: 600;
  color: var(--color-coral); text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 14px;
  display: block;
}

.team-card-body p {
  font-size: 0.85rem; color: var(--color-text-muted); line-height: 1.65;
}

.team-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  font-size: 0.8rem; font-weight: 600;
  color: var(--color-peppermint);
  transition: gap 0.2s;
}

.team-linkedin:hover { gap: 10px; }

.team-linkedin svg { width: 14px; height: 14px; }

/* ============================================
   WHY OWEN / PRINCIPLES STRIP
   ============================================ */
.why-strip {
  padding: var(--section-padding);
  background-image: url('images/Home-ai%20capability%20bg-img.png');
  background-size: cover; background-position: center;
  background-color: var(--color-bg-light);
  text-align: center;
}

.why-strip h2 {
  font-family: var(--font-main);
  font-size: 2.5rem; font-weight: 500;
  color: var(--color-text-dark); margin-bottom: 12px;
}

.why-strip h2 em { font-style: italic; color: var(--color-coral); }

.why-strip > .container > p {
  font-size: 0.95rem; color: var(--color-text-muted); margin-bottom: 60px;
}

.why-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 900px; margin: 0 auto;
}

.why-card {
  background: white;
  border: 1px solid var(--color-border-light);
  border-radius: 16px; padding: 36px 32px;
  text-align: left;
  display: flex; gap: 20px; align-items: flex-start;
  transition: box-shadow 0.3s;
}

.why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.why-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--color-bg-light);
  border: 1px solid var(--color-border-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}

.why-card-icon svg { width: 24px; height: 24px; stroke: var(--color-coral); fill: none; stroke-width: 2; }

.why-card-text h4 {
  font-family: var(--font-main);
  font-size: 1rem; font-weight: 700;
  color: var(--color-text-dark); margin-bottom: 8px;
}

.why-card-text p {
  font-size: 0.88rem; color: #666; line-height: 1.65;
}

/* ============================================
   EXPERIENCE ACROSS INDUSTRIES
   ============================================ */
.experience {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: 560px; padding: 80px 0;
}

.experience-image {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; z-index: 0; pointer-events: none; overflow: hidden;
}

.experience-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}

.experience-layout {
  position: relative; z-index: 1; width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.experience-content { max-width: 520px; }

.experience-content h2 {
  font-family: var(--font-main);
  font-size: 2.5rem; font-weight: 500;
  font-style: italic; margin-bottom: 12px;
}

.experience-content > p {
  font-size: 0.95rem; color: var(--color-text-light); margin-bottom: 32px;
}

.industry-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.industry-tag {
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 25px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--color-text-light); transition: all 0.2s;
}

.industry-tag:hover { border-color: var(--color-peppermint); color: var(--color-peppermint); }


/* ============================================
   11. TESTIMONIALS
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Large decorative coral triangle behind testimonial cards */
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -120px;
  width: 0;
  height: 0;
  border-left: 520px solid transparent;
  border-bottom: 600px solid rgba(233, 106, 94, 0.12);
  pointer-events: none;
  z-index: 0;
}

.testimonials h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-coral);
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: var(--color-bg-card-dark);
  border: 1px solid var(--color-border-dark);
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-main);
  font-size: 4rem;
  color: var(--color-coral);
  opacity: 0.2;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-peppermint));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.85rem;
}

.testimonial-author-info h4 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-white);
}

.testimonial-author-info span {
  font-size: 0.78rem;
  color: var(--color-peppermint);
  font-weight: 500;
}

/* ============================================
   12. EXPERIENCE ACROSS
   ============================================ */
.experience {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 580px;
  padding: 80px 0;
}

.experience-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.experience-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-content h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
}

.experience-content > p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-tag {
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 25px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: all 0.2s;
}

.industry-tag:hover {
  border-color: var(--color-peppermint);
  color: var(--color-peppermint);
}

.experience-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* ============================================
   13. FOLLOW OUR THINKING
   ============================================ */
.follow-thinking {
  padding: var(--section-padding);
  text-align: center;
}

.follow-thinking h2 {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-coral);
  margin-bottom: 12px;
}

.follow-thinking > .container > p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
  margin-bottom: 32px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-text-dark);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.linkedin-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.linkedin-icon {
  width: 32px;
  height: 32px;
  background: #0077b5;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.linkedin-icon svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* ============================================
   14. FINAL CTA
   ============================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 80px 0;
}

.final-cta-layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
}

.final-cta-content {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.final-cta-image {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.final-cta-icon {
  width: 48px;
  height: 48px;
  background: var(--color-peppermint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
}

.final-cta-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.final-cta h2 {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 480px;
}

.final-cta h2 em {
  font-style: italic;
}

.final-cta-content > p {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 400px;
}

/* ============================================
   15. FOOTER
   ============================================ */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 40px;
  background: var(--color-super-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 280px;
}

.footer-contact-item {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.footer-contact-item a {
  color: var(--color-peppermint);
}

.footer-contact-item a:hover {
  text-decoration: underline;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-coral);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.footer-bottom a {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-bottom a:hover {
  color: white;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-image {
    width: 45%;
    opacity: 0.4;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

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

  .value-props {
    grid-template-columns: repeat(3, 1fr);
  }

  /* At 1024px the hero-pattern sections still look fine at 2-column;
     only the discipline needs to reduce image width slightly */
  .discipline-visual,
  .experience-image,
  .brand-story-image {
    width: 45%;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 70px 0;
  }

  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero .container {
    position: static;
    transform: none;
  }

  .hero-image {
    width: 50%;
    opacity: 0.25;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .section-heading-coral,
  .section-heading-dark,
  .section-heading-peppermint {
    font-size: 2rem;
  }

  .services-grid,
  .principles-grid,
  .ai-cards,
  .portfolio-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  /* Mobile: switch all hero-pattern sections to stacked layout */
  .brand-story,
  .experience,
  .discipline-6040,
  .final-cta {
    display: block;
    padding: 0;
  }

  .more-brain {
    display: block;
    padding: 0;
  }

  /* Images: reset from absolute to static, stack above content */
  .brand-story-image,
  .experience-image,
  .discipline-visual,
  .brain-image-col,
  .final-cta-image {
    position: static;
    width: 100%;
    height: 280px;
    overflow: hidden;
    pointer-events: auto;
    clip-path: none;
  }

  .brand-story-image img,
  .experience-image img,
  .discipline-visual img,
  .brain-image-col img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .final-cta-image img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Content wrappers: full width, normal padding */
  .brand-story-layout,
  .experience-layout,
  .discipline-layout,
  .final-cta-layout {
    width: 100%;
    padding: 48px 24px;
  }

  .brand-story-content,
  .experience-content,
  .discipline-content,
  .final-cta-content {
    max-width: 100%;
  }

  .brain-content-col {
    padding: 48px 24px;
  }

  .brain-text-col {
    margin-left: 0;
    margin-bottom: 24px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .final-cta h2 {
    font-size: 2rem;
  }

  .more-brain h2,
  .ai-capability h2,
  .portfolio-header h2,
  .testimonials h2,
  .experience-content h2,
  .follow-thinking h2,
  .discipline-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .value-props {
    grid-template-columns: 1fr;
  }

  .section-heading-coral,
  .section-heading-dark,
  .section-heading-peppermint {
    font-size: 1.7rem;
  }

  .more-brain h2,
  .ai-capability h2,
  .portfolio-header h2,
  .testimonials h2,
  .experience-content h2,
  .follow-thinking h2,
  .final-cta h2,
  .discipline-content h2 {
    font-size: 1.7rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
</style>