/* ===================
   CSS Variables
   =================== */
:root {
  /* Primary Teals */
  --teal-primary: #11BDBF;
  --teal-light: #0EBBBF;

  /* Cyan Transitions */
  --cyan-dark: #0CABC3;
  --cyan-mid: #08A2C7;
  --cyan-bright: #00A5D6;
  --cyan-light: #009BD4;

  /* Blues */
  --blue-bright: #0390D9;
  --blue-mid: #0588D6;
  --blue-deep: #2968C8;

  /* Indigo/Purple */
  --indigo-primary: #4053C2;
  --indigo-light: #4753C3;
  --purple-accent: #5552C5;

  /* Neutrals */
  --navy-dark: #00163D;
  --white: #FFFFFF;

  /* Suggested additions for text/backgrounds */
  --gray-light: #F7F9FC;
  --gray-text: #4A5568;
  --text-dark: #1A202C;
  --gray-border: #E2E8F0;
}

/* ===================
   Base/Reset Styles
   =================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 140px; /* Account for fixed header (102px) + trust bar (~38px) */
}

@media (max-width: 768px) {
  body {
    padding-top: 120px; /* Smaller header + trust bar on mobile */
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  /* Prevent CLS by containing layout */
  content-visibility: auto;
}

/* Logo specific sizing to prevent CLS */
.logo img {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

/* Footer logo sizing */
.footer-logo img {
  width: 200px;
  height: 70px;
  object-fit: contain;
}

/* Rick/Jack headshots - maintain aspect ratio */
.rick-photo img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: top;
}

.about-team-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

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

/* ===================
   Typography
   =================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-text);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ===================
   Layout Utilities
   =================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-spacing {
  padding: 5rem 0;
}

/* ===================
   Components - Buttons
   =================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: #1e40af;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-bright);
  border: 2px solid var(--blue-bright);
}

.btn-secondary:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: #1e40af;
  color: var(--white);
  font-weight: 700;
}

.btn-white:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

/* ===================
   Header/Navigation
   =================== */
#header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

/* ===================
   Sticky Trust Bar
   =================== */
.sticky-trust-bar {
  background: #0f172a;
  color: white;
  font-size: 14px;
  padding: 0.5rem 0;
  text-align: center;
  position: fixed;
  top: 102px;
  left: 0;
  right: 0;
  z-index: 999;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sticky-trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.sticky-trust-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sticky-trust-bar .trust-separator {
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
  .sticky-trust-bar {
    top: 82px;
    font-size: 12px;
    padding: 0.375rem 0;
  }

  .sticky-trust-bar .trust-separator {
    display: none;
  }

  .sticky-trust-bar .container {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-weight: 500;
  color: var(--navy-dark);
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--blue-bright);
}

.btn-header {
  background: var(--blue-bright);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-header:hover {
  background: var(--blue-deep);
  color: var(--white);
}

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > a::after {
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 2px;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  margin-top: 8px;
  z-index: 1000;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.95rem;
  color: var(--navy-dark);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(3, 144, 217, 0.08);
  color: var(--blue-bright);
}

/* ===================
   Hero Section
   =================== */
.hero {
  background: linear-gradient(145deg, #0a1628 0%, #1a2a42 45%, #243448 100%);
  padding: 4rem 0 2.25rem;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay - Continuum logo pattern */
/* Original plus pattern (for revert):
   background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
*/
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='35' height='35' viewBox='0 0 2000 2000' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M1470.98,1165.38c.04,34.79-8.91,70.17-27.49,102.38-18.92,32.8-45.74,58.55-76.58,75.94-30.84,17.44-65.72,26.6-101.19,26.6-7.85,0-15.78-.42-23.67-1.36,3.56-16.21,5.6-32.88,5.98-49.72l.04-.68c.04-1.74.04-3.44.04-5.18,0-2.59-.04-5.22-.13-7.81,5.94.72,11.84,1.1,17.73,1.1,24.44,0,48.62-6.36,69.88-18.37,21.3-12.01,39.63-29.57,52.78-52.35,12.9-22.36,18.96-46.54,18.96-70.55s-6.36-48.62-18.37-69.88c-7.25-12.85-16.55-24.65-27.83-34.83-7.34-6.7-15.49-12.73-24.52-17.9-22.36-12.94-46.54-18.96-70.56-19.01-24.44,0-48.62,6.36-69.88,18.37-3.14,1.78-6.24,3.69-9.25,5.77h-.04c-17.31,11.63-32.24,27.24-43.44,46.63-1.78,3.1-3.44,6.24-4.96,9.38-9.21,19.01-13.66,39.03-14,58.97-18.72,3.7-39.17-12.19-57.63-20.38-3.18-1.4.86-14.54-2.45-15.77,3.44-17.82,9.29-35.38,17.65-52.27,1.95-3.95,4.03-7.89,6.28-11.75,12.64-21.93,28.81-40.73,47.39-55.96,9.16-7.59,18.96-14.26,29.19-20.03,8.91-5.01,18.12-9.33,27.58-12.94,23.38-8.99,48.32-13.66,73.57-13.66,34.11,0,68.73,8.57,100.42,26.43.64.34,1.32.72,1.95,1.1,18.92,10.9,35.47,24.44,49.43,39.88,10.31,11.33,19.13,23.67,26.52,36.7,17.44,30.84,26.6,65.72,26.6,101.14Z'/%3E%3Cpath d='M1192.96,1313.37c0,1.53,0,3.05-.04,4.58v.04c-.3,12.73-1.78,25.16-4.37,37.17-2.88,13.62-7.17,26.77-12.69,39.24-10.39,23.42-25.12,44.42-43.15,61.98-35.98,35.17-85.45,56.85-139.5,56.85-1.53,0-3.05,0-4.62-.04-27.07-.64-52.95-6.66-76.37-17.06-23.46-10.39-44.46-25.12-62.03-43.15-12.13-12.43-22.66-26.47-31.27-41.75,15.66-5.39,30.8-12.3,45.27-20.66,4.07-2.33,8.06-4.79,11.96-7.42,1.06,1.82,2.21,3.61,3.35,5.35,14.3,21.55,34.62,38.91,58.51,49.47,15.91,7.04,33.43,11.16,52.01,11.58,1.06.04,2.12.04,3.18.04,27.75,0,53.42-8.27,75.01-22.53,21.55-14.3,38.91-34.62,49.47-58.51,3.52-7.98,6.32-16.29,8.27-24.99,1.82-8.19,2.97-16.72,3.27-25.46,0-.51.04-1.06.04-1.57.04-1.06.04-2.16.04-3.18,0-27.75-8.27-53.41-22.53-75.01-11.2-16.89-26.09-31.14-43.49-41.62-4.84-2.93-9.84-5.56-15.02-7.85-15.91-7.04-33.43-11.16-52.06-11.58-.72-.04-1.49-.04-2.25-.04h-.89c-19.77,0-38.44,4.2-55.37,11.75-30.12-1.81-37.85-15.7-37.85-23.72,0-14.21,11.6-28.68,34.76-42.98,17.35-5.26,35.64-8.27,54.52-8.61,1.32-.08,2.63-.08,3.95-.08,1.53,0,3.05.04,4.62.04,23.42.55,45.91,5.13,66.69,13.07,3.31,1.23,6.53,2.59,9.72,3.99,18.46,8.19,35.43,19.05,50.36,32.16,4.03,3.48,7.89,7.17,11.62,10.99,28.93,29.61,48.75,68.35,54.81,111.24,1.36,9.25,2.04,18.67,2.04,28.26Z'/%3E%3Cpath d='M939.16,1165.04c0,8.02-.47,16.04-1.44,23.97-3.14,27.11-11.67,53.37-25.16,77.22-13.45,23.84-31.9,45.27-54.73,62.49-6.7,5.09-13.79,9.8-21.21,14.09-12.22,7.04-24.9,12.73-37.84,17.01-21.13,7.08-42.94,10.52-64.53,10.48-35.47,0-70.34-9.16-101.19-26.6-30.8-17.39-57.66-43.15-76.58-75.94-18.58-32.2-27.49-67.59-27.49-102.38,0-32.07,7.51-63.68,21.85-92.23,15.87,12.69,33.26,23.46,51.89,32.12.89.42,1.82.85,2.71,1.23-8.4,18.46-12.81,38.57-12.81,58.89,0,24.01,6.07,48.2,18.96,70.55,13.15,22.78,31.52,40.35,52.78,52.35,21.25,12.01,45.44,18.37,69.88,18.37,20.32,0,40.77-4.37,60.16-13.53,3.52-1.65,6.96-3.48,10.39-5.43,22.74-13.15,40.3-31.48,52.35-52.78,12.01-21.25,18.37-45.44,18.37-69.88,0-4.24-.21-8.48-.59-12.73-1.78-19.73-7.76-39.37-18.37-57.78-1.23-2.12-2.5-4.2-3.82-6.19-10.65-16.55-24.22-30.08-39.67-40.43-22.97-21.91-2.49-45.04.01-46.61,16-10.01,25.13-9.67,51.15,5.42,14.04,11.54,26.81,25.16,37.63,40.64,3.48,4.92,6.75,10.06,9.8,15.36,10.99,19.01,18.58,39.16,22.91,59.61h.04c3.01,14.17,4.54,28.51,4.54,42.72Z'/%3E%3Cpath d='M915.11,894.53c-2.12,18.16-6.79,36.27-14.09,53.84-1.15,2.76-2.33,5.47-3.61,8.19-8.74,18.71-19.98,35.51-33.18,50.15-12.86,14.38-27.62,26.69-43.61,36.7-2.5,1.57-5.01,3.05-7.55,4.5-30.55,17.27-65.29,26.56-100.8,26.56-24.56,0-49.47-4.46-73.44-13.79-4.29-1.61-8.53-3.44-12.77-5.39-16.12-7.55-30.84-16.89-43.95-27.75-17.06-14.13-31.48-30.76-42.89-49-20.15-32.37-31.06-69.92-31.06-108.4-.04-28.89,6.19-58.38,19.18-86.17,17.27-37.08,44.42-66.69,76.75-86.85,32.37-20.19,69.92-31.1,108.4-31.1,7.21,0,14.43.38,21.64,1.19-.34,2.8-.64,5.64-.89,8.44-.72,7.81-1.1,15.82-1.1,23.84,0,10.69.64,21.3,1.91,31.86-7.17-1.15-14.38-1.7-21.55-1.7-26.43,0-52.4,7.51-74.67,21.43-22.32,13.96-40.86,34.11-52.82,59.78-8.99,19.3-13.19,39.41-13.19,59.27-.04,26.43,7.51,52.4,21.43,74.67,10.18,16.33,23.72,30.63,40.26,41.75,6.07,4.16,12.56,7.85,19.47,11.07,19.3,8.99,39.41,13.19,59.31,13.19,26.39,0,52.4-7.51,74.67-21.43,7.3-4.54,14.17-9.76,20.53-15.61,13.15-12.05,24.18-26.86,32.24-44.12,1.82-3.95,3.48-7.93,4.92-11.96,5.64-15.57,8.32-31.52,8.32-47.35,0-6.15-.43-12.26-1.23-18.33,7.17-6.84,25.21-12.15,35.69-5.07,10.69,7.21,36.73,18.69,27.7,47.58Z'/%3E%3Cpath d='M1491.85,870.12c0,38.47-10.92,76.08-31.1,108.4-1.74,2.82-3.54,5.5-5.42,8.24-14.61-15.55-31.24-29.29-49.32-40.79.29-.36.51-.8.8-1.16,13.89-22.27,21.41-48.24,21.41-74.7,0-19.82-4.27-39.92-13.23-59.23-11.93-25.67-30.52-45.85-52.79-59.81-22.27-13.88-48.24-21.41-74.63-21.41-7.16,0-14.39.51-21.62,1.66-12.73,2.03-25.38,5.86-37.68,11.57-8.39,3.9-16.13,8.46-23.36,13.74-14.83,10.7-27.05,24.01-36.38,39.05-10.7,16.99-17.57,36.3-20.25,56.19v.07c-.8,6.08-1.23,12.22-1.23,18.37,0,15.84,2.68,31.82,8.32,47.37,1.23,3.4,2.53,6.73,4.05,10.12.29.58.58,1.23.87,1.81,8.03,17.28,19.09,32.04,32.25,44.11,8.1,17.43-7.23,28.2-16.2,33.19-10.2,5.79-26.9,7.67-40.57-.22-12.15-13.45-22.64-28.85-31.02-45.78-.72-1.45-1.45-2.89-2.17-4.41-1.23-2.68-2.46-5.42-3.54-8.17-7.3-17.57-12.01-35.65-14.17-53.8.07-.14.14-.36.22-.51-2.75-28.78,1.08-58.07,5.28-75.86v-.07h-.07c5.21-19.81,13.38-38.76,24.23-56.12,9.11-14.61,20.1-28.13,32.9-40.21,8.61-8.17,18.08-15.62,28.28-22.27,8.1-5.35,16.63-10.12,25.67-14.32,3.47-1.59,6.94-3.11,10.49-4.56,17.72-7.09,35.94-11.5,54.17-13.45,7.16-.8,14.39-1.16,21.55-1.16,38.47,0,76.01,10.92,108.33,31.1,32.33,20.1,59.52,49.76,76.8,86.85,12.94,27.77,19.16,57.28,19.16,86.13Z'/%3E%3Cpath d='M916.7,575.86c23.79-16.05,52.36-25.38,83.31-25.46,20.68,0,40.21,4.19,58,11.72,26.69,11.28,49.54,30.23,65.59,54.02,8.1,12,14.54,25.17,18.88,39.27,11.21-7.67,23.14-14.39,35.58-20.18,7.16-3.33,14.32-6.36,21.7-8.97-1.23-3.25-2.46-6.44-3.76-9.55-16.2-38.26-43.1-70.66-77.09-93.58-33.84-22.92-74.92-36.38-118.89-36.38-29.29,0-57.35,6-82.8,16.78-38.26,16.13-70.65,43.03-93.58,77.02-19.6,29-32.25,63.28-35.44,100.09-.58,6.22-.94,12.51-.94,18.88,0,19.67,2.75,38.91,7.81,57.06v.07c2.46,8.82,5.42,17.36,8.97,25.67,11.14,26.4,27.48,50.04,47.73,69.71,9.04,8.75,18.8,16.71,29.29,23.79,10.7,7.23,22.13,13.52,34.06,18.73,26.03,11.35,54.82,17.65,84.9,17.65,10.63,0,21.12-.8,31.24-2.31,18.01-2.6,35.29-7.52,51.56-14.46.65-.29,1.37-.58,2.03-.87.07-.03.13-.07.2-.1-2.82-28.97,1.12-58.47,5.27-76.31l-.05-.03c-2.24,1.74-4.56,3.4-6.94,4.99-16.05,10.85-34.21,18.59-53.8,22.49-9.55,1.95-19.38,2.97-29.51,2.97-20.68,0-40.21-4.19-58.07-11.72-11.5-4.92-22.27-11.21-32.11-18.66h-.07c-12.94-9.91-24.23-21.84-33.41-35.36-12.08-18.01-20.39-38.62-23.72-60.96-1.09-7.3-1.74-14.75-1.74-22.35,0-20.68,4.19-40.21,11.72-58.07,11.28-26.69,30.3-49.54,54.09-65.59Z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

/* Subtle gradient accent overlay */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(30, 64, 175, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle-large {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.hero-description {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-subheadline {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-support {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Hero Primary Button */
.btn-hero-primary {
  padding: 14px 28px;
  background: #1e40af;
  color: var(--white);
  font-weight: 600;
  font-size: 1.0625rem;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-hero-primary:hover {
  transform: scale(1.02);
  background: #1e3a8a;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.45);
}

/* Hero Secondary Button */
.btn-hero-secondary {
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 1.0625rem;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.hero-secondary-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 1.125rem;
  margin-top: 1.5rem;
  transition: gap 0.3s ease;
}

.hero-secondary-cta:hover {
  gap: 0.75rem;
  color: var(--blue-deep);
}

.hero-secondary-cta svg {
  width: 20px;
  height: 20px;
}

/* ===================
   What Makes Us Different
   =================== */
.different-section {
  padding: 3rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .different-section {
    padding: 4rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-text);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--gray-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 260px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--blue-bright), var(--indigo-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover::before {
  opacity: 1;
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--blue-bright);
}

.value-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-bright), var(--indigo-primary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.value-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.2px;
  max-width: 180px;
}

.value-card p {
  color: rgba(74, 85, 104, 0.88);
  line-height: 1.65;
  margin-bottom: 0;
  font-size: 0.9375rem;
  text-align: left;
  align-self: stretch;
}

/* Focus states for accessibility */
.value-card:focus-within {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-section-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  background: transparent;
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 1.0625rem;
  border: 2px solid var(--blue-bright);
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-section-cta:hover {
  background: var(--blue-bright);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 144, 217, 0.25);
}

.btn-section-cta:focus {
  outline: 2px solid var(--blue-deep);
  outline-offset: 2px;
}

/* ===================
   Pillar Cards (Why Our Approach Works)
   =================== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pillar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 2px solid var(--gray-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--blue-bright), var(--indigo-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--blue-bright);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-bright), var(--indigo-primary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.pillar-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--navy-dark);
  line-height: 1.3;
}

.pillar-card p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

/* ===================
   6C Framework Section
   =================== */
.framework-section {
  padding: 3rem 0;
  background: var(--navy-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .framework-section {
    padding: 4rem 0;
  }
}

.framework-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(17, 189, 191, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.framework-section h2,
.framework-section h3,
.framework-section h4 {
  color: var(--white);
}

.framework-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.framework-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.framework-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal-primary);
  transform: translateY(-4px);
}

.framework-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-primary), var(--blue-bright));
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.framework-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.framework-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.framework-cta {
  text-align: center;
  margin-top: 3rem;
}

.framework-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border: 2px solid var(--white);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.framework-cta a:hover {
  background: var(--white);
  color: var(--navy-dark);
  transform: translateY(-2px);
}

.framework-cta svg {
  width: 20px;
  height: 20px;
}

/* ===================
   6C Framework Page Styles
   =================== */
.sixc-framework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.framework-card {
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.framework-card:hover {
  border-color: var(--blue-bright);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.framework-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.02) 0%, rgba(59, 130, 246, 0.04) 100%);
  border-bottom: 1px solid #F1F5F9;
}

.framework-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--indigo-primary) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 12px rgba(3, 144, 217, 0.25);
}

.framework-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.375rem;
  line-height: 1.3;
}

.framework-tagline {
  font-size: 0.9375rem;
  color: var(--blue-bright);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.framework-summary {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #F1F5F9;
}

.framework-summary p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.framework-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #FAFBFC;
}

.framework-card.expanded .framework-details {
  max-height: 1000px;
}

.framework-callout {
  margin: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.06) 0%, rgba(59, 130, 246, 0.08) 100%);
  border-left: 4px solid var(--blue-bright);
  border-radius: 12px;
}

.framework-callout h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.framework-callout p {
  color: var(--gray-text);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

.framework-criteria {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.framework-criteria h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.framework-criteria ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.framework-criteria li {
  position: relative;
  padding-left: 2rem;
  color: var(--gray-text);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.framework-criteria li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--blue-bright) 100%);
  border-radius: 6px;
  opacity: 0.85;
}

.framework-criteria li::after {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.framework-criteria strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.framework-toggle {
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  border-top: 1px solid #F1F5F9;
  transition: background 0.3s ease;
}

.framework-card:hover .framework-toggle {
  background: #FAFBFC;
}

.toggle-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--blue-bright);
  transition: color 0.3s ease;
}

.framework-chevron {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--blue-bright);
  border-bottom: 2px solid var(--blue-bright);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -4px;
}

.framework-card.expanded .framework-chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* ===================
   Meet Rick Section
   =================== */
.meet-rick-section {
  padding: 3rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .meet-rick-section {
    padding: 4rem 0;
  }
}

.rick-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.rick-photo {
  position: relative;
  padding: 0.75rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rick-photo img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.rick-info {
  display: flex;
  flex-direction: column;
}

.rick-info .rick-name {
  font-size: 2rem;
  margin-bottom: 0.2rem;
  color: var(--navy-dark);
}

.rick-title {
  font-size: 1.15rem;
  color: var(--blue-bright);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.rick-bio {
  font-size: 1.0625rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 0;
  margin-top: 1.25rem;
}

.rick-bio.rick-bio-second {
  margin-top: 0.75rem;
}

.rick-quote {
  border-left: 3px solid var(--blue-bright);
  padding: 0 0 0 1rem;
  margin: 0;
  font-style: italic;
  color: var(--gray-text);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.rick-cta {
  margin-top: 1.25rem;
}

/* Rick CTA Button - Solid Primary with hover animation */
.btn-rick-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--blue-bright);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(3, 144, 217, 0.25);
}

.btn-rick-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(3, 144, 217, 0.35), 0 0 0 3px rgba(3, 144, 217, 0.1);
  background: #0580c4;
}

.btn-rick-cta:focus {
  outline: none;
  box-shadow: 0 6px 20px rgba(3, 144, 217, 0.35), 0 0 0 3px rgba(3, 144, 217, 0.3);
}

.btn-rick-cta:active {
  transform: scale(0.98);
}

/* ===================
   Process Section
   =================== */
.process-section {
  padding: 1.5rem 0;
  background: linear-gradient(135deg, #F7F9FC 0%, #EDF4FB 50%, #E8F2FA 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .process-section {
    padding: 2rem 0;
  }
}

.process-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 144, 217, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(85, 82, 197, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.process-section .section-header {
  margin-bottom: 1.25rem;
}

.process-section .section-header p {
  margin-top: 0.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 0;
  position: relative;
  z-index: 1;
}

.process-step {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--gray-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.process-step:focus-within {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-bright), var(--indigo-primary));
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(3, 144, 217, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}

.process-step:hover .process-number {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(3, 144, 217, 0.35);
}

.process-step h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
  font-weight: 600;
}

.process-step p {
  color: var(--gray-text);
  opacity: 0.85;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  flex-grow: 1;
}

/* ===================
   Testimonial Carousel
   =================== */
.testimonial-pullquote {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  text-align: center;
}

.testimonial-pullquote .container {
  max-width: 800px;
  position: relative;
  padding: 0 3rem;
}

.testimonial-carousel {
  position: relative;
}

.testimonial-slides {
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
  opacity: 1;
}

.testimonial-quote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--navy-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 1rem 0;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 6rem;
  color: var(--teal-primary);
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-quote::after {
  content: '\201D';
  font-size: 6rem;
  color: var(--teal-primary);
  position: absolute;
  bottom: -3.5rem;
  right: -2rem;
  opacity: 0.5;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-attribution {
  font-size: 1rem;
  color: var(--gray-text);
  font-weight: 500;
  margin-top: 0.5rem;
}

.testimonial-attribution strong {
  color: var(--navy-dark);
}

/* Carousel Navigation Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--teal-primary);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.testimonial-dot:hover {
  background: rgba(3, 144, 217, 0.3);
}

.testimonial-dot.active {
  background: var(--teal-primary);
}

@media (max-width: 768px) {
  .testimonial-pullquote {
    padding: 3rem 0;
  }

  .testimonial-pullquote .container {
    padding: 0 2rem;
  }

  .testimonial-quote {
    font-size: 1.25rem;
  }

  .testimonial-quote::before {
    font-size: 4rem;
    left: -1rem;
    top: -1.5rem;
  }

  .testimonial-quote::after {
    font-size: 4rem;
    right: -1rem;
    bottom: -2.5rem;
  }

  .testimonial-dots {
    margin-top: 1.5rem;
  }

  .testimonial-dot {
    width: 10px;
    height: 10px;
  }
}

/* ===================
   Final CTA Section
   =================== */
.final-cta {
  background: var(--gray-light);
  padding: 2rem 0;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .final-cta {
    padding: 2rem 0;
  }
}

.final-cta-content {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--navy-dark);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.final-cta p {
  color: var(--gray-text);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Primary CTA Button */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--blue-bright);
  color: var(--white);
  font-weight: 600;
  font-size: 1.125rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 16px rgba(3, 144, 217, 0.3);
}

.btn-cta-primary:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(3, 144, 217, 0.4), 0 0 0 3px rgba(3, 144, 217, 0.1);
  background: #0580c4;
}

.btn-cta-primary:focus {
  outline: none;
  box-shadow: 0 8px 24px rgba(3, 144, 217, 0.4), 0 0 0 3px rgba(3, 144, 217, 0.3);
}

.btn-cta-primary:active {
  transform: scale(0.98);
}

/* Email CTA - Secondary style */
.cta-email {
  color: var(--gray-text);
  font-size: 0.9375rem;
  margin: 0;
}

.cta-email a {
  color: var(--blue-bright);
  text-decoration: none;
  transition: text-decoration 0.2s ease, color 0.2s ease;
}

.cta-email a:hover {
  text-decoration: underline;
  color: #0580c4;
}

.cta-email a:focus {
  outline: 2px solid var(--blue-bright);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===================
   Footer
   =================== */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.75rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--teal-primary);
}

.footer-logo {
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}

.footer-contact a {
  color: var(--teal-primary);
  text-decoration: none;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--teal-primary);
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--teal-primary);
  transform: translateY(-2px);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

/* ===================
   About Team Section
   =================== */
.about-team-section {
  padding: 3rem 0 4rem;
  background: var(--white);
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-team-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  border: 2px solid var(--gray-border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.about-team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--blue-bright), var(--indigo-primary));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--blue-bright);
}

.about-team-card:hover::before {
  opacity: 1;
}

.about-team-header {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.about-team-photo {
  flex-shrink: 0;
}

.about-team-photo img {
  width: 120px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  object-position: top;
}

.about-team-header h3 {
  margin-bottom: 0.25rem;
  font-size: 1.75rem;
}

.about-team-title {
  font-size: 1.125rem;
  color: var(--blue-bright);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-team-header-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.about-team-header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-text);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.about-team-header-contact a:hover {
  color: var(--blue-bright);
}

.about-team-bio {
  color: var(--gray-text);
  line-height: 1.7;
}

.about-team-bio p {
  margin-bottom: 1.5rem;
}

.about-team-expertise {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #F7F9FC 0%, #EDF4FB 100%);
  padding: 1.75rem;
  border-radius: 12px;
  border-left: 4px solid var(--blue-bright);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.about-team-expertise h4 {
  margin-bottom: 1rem;
  color: var(--navy-dark);
  font-size: 1.125rem;
  font-weight: 700;
}

.about-team-expertise ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-team-expertise li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-text);
  line-height: 1.6;
}

.about-team-expertise li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-bright);
  font-weight: 700;
}

/* ===================
   About Approach Section (How We Work Differently)
   =================== */
.about-approach-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #EDF4FB 0%, #F7F9FC 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-approach-section {
    padding: 4rem 0;
  }
}

.about-approach-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(3, 144, 217, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-approach-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-approach-content h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.about-approach-intro {
  text-align: center;
  font-size: 1.25rem;
  color: var(--gray-text);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.about-approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-approach-item {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  border: 2px solid var(--gray-border);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.about-approach-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--blue-bright);
}

.about-approach-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-primary), var(--blue-bright), var(--indigo-primary));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 12px 12px 0 0;
}

.about-approach-item:hover::before {
  opacity: 1;
}

.about-approach-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-bright), var(--indigo-primary));
  border-radius: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(3, 144, 217, 0.25);
}

.about-approach-item h4 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--navy-dark);
}

.about-approach-item p {
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1rem;
}

/* ===================
   Trust Bar
   =================== */
.trust-bar {
  padding: 4rem 0;
  background: var(--navy-dark);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.trust-item {
  padding: 1rem;
}

.trust-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--teal-primary);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.trust-label {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ===================
   Framework Preview (6C)
   =================== */
.framework-preview {
  padding: 3rem 0;
  background: var(--white);
}

@media (min-width: 768px) {
  .framework-preview {
    padding: 4rem 0;
  }
}

.continuum-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.continuum-item {
  background: var(--white);
  border: 2px solid var(--gray-border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  flex: 0 0 180px;
  transition: all 0.3s ease;
}

.continuum-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--blue-bright);
}

.continuum-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--blue-bright), var(--indigo-primary));
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.continuum-item h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}

.continuum-item p {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 0;
  line-height: 1.5;
}

.continuum-arrow {
  font-size: 2rem;
  color: var(--blue-bright);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-framework {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--blue-bright);
  color: var(--white);
  border: none;
  text-align: center;
  box-shadow: 0 4px 12px rgba(3, 144, 217, 0.2);
}

.btn-framework:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 144, 217, 0.3);
}

/* ===================
   CTA Section
   =================== */
.cta {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--indigo-primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta {
    padding: 4rem 0;
  }
}

.cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta h2 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #1e40af;
  color: var(--white);
  border: none;
  text-align: center;
  box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.btn-cta-primary:hover {
  background: #1e3a8a;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(30, 64, 175, 0.4);
}

/* ===================
   Section Utility
   =================== */
.section {
  padding: 3rem 0 4rem;
}

/* ===================
   Process Page Styles
   =================== */

/* Process Overview Section */
.process-overview-section {
  padding: 2.5rem 0;
  background: var(--gray-light);
}

.process-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-overview-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  border: 2px solid var(--gray-border);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.process-overview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--blue-bright);
}

.process-overview-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-overview-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}

.process-overview-duration {
  font-size: 0.875rem;
  color: var(--blue-bright);
  font-weight: 600;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-overview-card p {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 0;
}

.process-timeline-stat {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 12px;
  border: 2px solid var(--blue-bright);
}

.process-timeline-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-bright);
  margin-bottom: 0.5rem;
}

.process-timeline-stat p {
  font-size: 1.125rem;
  color: var(--gray-text);
  margin-bottom: 0;
}

/* Process Visual Timeline Section */
.process-timeline-section {
  padding: 2.5rem 0;
  background: var(--white);
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 2rem 0;
}

/* Center line */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue-bright), var(--blue-deep));
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
}

/* Left items */
.timeline-left {
  justify-content: flex-start;
}

.timeline-left .timeline-content {
  margin-right: auto;
  margin-left: 0;
  width: 45%;
  text-align: right;
}

/* Right items */
.timeline-right {
  justify-content: flex-end;
}

.timeline-right .timeline-content {
  margin-left: auto;
  margin-right: 0;
  width: 45%;
  text-align: left;
}

.timeline-content {
  background: var(--white);
  border-radius: 12px;
  padding: 1.75rem;
  border: 2px solid var(--gray-border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--blue-bright);
}

/* Connector dots and arrows */
.timeline-connector {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--blue-bright);
  border: 4px solid var(--white);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--blue-bright);
}

/* Arrow pointing to content */
.timeline-left .timeline-connector::after {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--blue-bright);
}

.timeline-right .timeline-connector::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--blue-bright);
}

.timeline-badge {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(3, 144, 217, 0.3);
}

.timeline-left .timeline-badge {
  float: right;
}

.timeline-right .timeline-badge {
  float: left;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
  clear: both;
}

.timeline-duration {
  display: inline-block;
  font-size: 0.875rem;
  color: var(--blue-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding: 0.25rem 0.75rem;
  background: rgba(3, 144, 217, 0.1);
  border-radius: 4px;
}

.timeline-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.timeline-result {
  font-size: 0.95rem;
  color: var(--blue-bright);
  font-weight: 700;
  padding-top: 0.75rem;
  border-top: 2px solid var(--gray-border);
  margin-top: 1rem;
  transition: all 0.2s ease;
}

.timeline-content:hover .timeline-result {
  text-decoration: underline;
}

/* Process Standout Banner */
.process-standout-banner {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 2.5rem;
}

.process-standout-banner h3 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.process-standout-banner p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.125rem;
  margin-bottom: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Process FAQ Section */
.process-faq-section {
  padding: 2.5rem 0 3rem;
  background: var(--gray-light);
}

.process-faq-list {
  max-width: 900px;
  margin: 2rem auto 0;
}

.process-faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 2px solid var(--gray-border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.process-faq-item:hover {
  border-color: var(--blue-bright);
}

.process-faq-question {
  padding: 1.5rem 4rem 1.5rem 1.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy-dark);
  user-select: none;
  transition: all 0.3s ease;
}

.process-faq-question:hover {
  background: var(--gray-light);
}

.process-faq-question span {
  flex: 1;
}

.process-faq-chevron {
  position: absolute;
  right: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.process-faq-chevron::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  border-right: 3px solid var(--blue-bright);
  border-bottom: 3px solid var(--blue-bright);
  transform: rotate(45deg);
  top: 3px;
  right: 6px;
}

.process-faq-item.active .process-faq-chevron {
  transform: translateY(-50%) rotate(180deg);
}

.process-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1.75rem;
}

.process-faq-item.active .process-faq-answer {
  max-height: 500px;
  padding: 0 1.75rem 1.75rem;
}

.process-faq-answer p {
  color: var(--gray-text);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.process-faq-answer strong {
  color: var(--navy-dark);
  font-weight: 600;
}

/* ===================
   Responsive Breakpoints
   =================== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .hero-subheadline {
    font-size: 1.125rem;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .hero-support {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

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

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .different-section,
  .framework-section,
  .meet-rick-section {
    padding: 4rem 0;
  }

  .process-section {
    padding: 1.5rem 0;
  }

  .final-cta {
    padding: 2rem 0;
  }

  .section-header h2 {
    font-size: 1.75rem;
  }

  .section-header p {
    font-size: 1.125rem;
  }

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

  .value-card {
    padding: 1.25rem;
    min-height: auto;
  }

  .value-card:last-child {
    grid-column: 1 / -1;
  }

  .value-card-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 0.875rem;
  }

  .value-card-icon svg {
    width: 18px;
    height: 18px;
  }

  .value-card h3 {
    font-size: 1.125rem;
    max-width: 160px;
  }

  .value-card p {
    font-size: 0.875rem;
  }

  .section-cta {
    margin-top: 2rem;
  }

  .btn-section-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 1rem;
  }

  .framework-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rick-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .rick-photo {
    max-width: 280px;
    margin: 0 auto;
    padding: 0.5rem;
  }

  .rick-info {
    text-align: center;
  }

  .rick-info .rick-name {
    font-size: 1.75rem;
  }

  .rick-title {
    margin-bottom: 1rem;
  }

  /* Mobile order: photo → name/title → quote → CTA → biography */
  .rick-info .rick-name {
    order: 1;
  }

  .rick-title {
    order: 2;
  }

  .rick-quote {
    order: 3;
    border-left: none;
    border-top: 3px solid var(--blue-bright);
    padding: 1rem 0 0 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  .rick-cta {
    order: 4;
    margin-top: 1rem;
  }

  .btn-rick-cta {
    width: 100%;
    justify-content: center;
  }

  .rick-bio {
    order: 5;
    text-align: left;
    margin-top: 1.5rem;
  }

  .rick-bio.rick-bio-second {
    order: 6;
  }

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

  .process-step {
    padding: 1.25rem 1rem;
  }

  .process-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .process-step h4 {
    font-size: 1rem;
  }

  .process-step p {
    font-size: 0.875rem;
  }

  .final-cta {
    padding: 1.5rem 0;
  }

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

  .final-cta p {
    font-size: 1rem;
  }

  .btn-cta-primary {
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
  }

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

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .continuum-flow {
    flex-direction: column;
    gap: 1rem;
  }

  .continuum-arrow {
    transform: rotate(90deg);
  }

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

  .about-approach-section {
    padding: 4rem 0;
  }

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

  .cta p {
    font-size: 1.125rem;
  }

  /* Process Page Responsive */
  .process-overview-section,
  .process-timeline-section,
  .process-faq-section {
    padding: 2rem 0;
  }

  .process-overview-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .process-overview-card {
    padding: 1.5rem;
  }

  /* Timeline mobile layout */
  .process-timeline::before {
    left: 30px;
  }

  .timeline-item {
    margin-bottom: 2rem;
  }

  .timeline-left,
  .timeline-right {
    justify-content: flex-start;
  }

  .timeline-left .timeline-content,
  .timeline-right .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
    text-align: left;
  }

  .timeline-connector {
    left: 30px;
  }

  .timeline-left .timeline-connector::after,
  .timeline-right .timeline-connector::after {
    left: 100%;
    right: auto;
    width: 30px;
  }

  .timeline-content {
    padding: 1.5rem;
  }

  .timeline-badge {
    float: none !important;
    margin-bottom: 0.75rem;
  }

  .timeline-content h3 {
    font-size: 1.25rem;
  }

  .process-standout-banner {
    padding: 2rem 1.5rem;
  }

  .process-standout-banner h3 {
    font-size: 1.5rem;
  }

  .process-faq-question {
    padding: 1.25rem 3.5rem 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .process-faq-chevron {
    right: 1.5rem;
  }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .container {
    padding: 0 1rem;
  }

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

  .hero-subheadline {
    font-size: 1rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 0.9375rem;
  }

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

  .value-card:last-child {
    grid-column: auto;
  }

  .value-card,
  .framework-card,
  .process-step {
    padding: 1.25rem;
  }

  .value-card-icon {
    width: 34px;
    height: 34px;
  }

  .value-card-icon svg {
    width: 16px;
    height: 16px;
  }

  .value-card h3 {
    max-width: none;
  }

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

  /* Process Page Mobile */
  .process-overview-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .timeline-badge {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-content h3 {
    font-size: 1.15rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
  }

  .process-timeline::before {
    left: 20px;
  }

  .timeline-connector {
    left: 20px;
  }

  .timeline-left .timeline-content,
  .timeline-right .timeline-content {
    width: calc(100% - 60px);
    margin-left: 60px;
  }

  .process-faq-question {
    padding: 1rem 3rem 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .process-standout-banner h3 {
    font-size: 1.35rem;
  }

  .process-standout-banner p {
    font-size: 1rem;
  }
}

/* Desktop Large (1400px and above) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

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

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

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

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

/* ===================
   Mobile Menu
   =================== */

/* Hamburger Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--navy-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
  margin-bottom: 6px;
}

.hamburger-line:nth-child(3) {
  margin-top: 6px;
}

/* Hamburger animation when active */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Panel */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1001;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 2rem;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 300px;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--navy-dark);
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid var(--gray-border);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav a:first-child {
  border-top: 1px solid var(--gray-border);
}

.mobile-nav a:hover {
  color: var(--blue-bright);
  background-color: rgba(3, 144, 217, 0.05);
}

/* Mobile CTA Button */
.btn-mobile-cta {
  margin-top: 1rem;
  background: var(--blue-bright) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  border: none !important;
  font-weight: 600 !important;
}

.btn-mobile-cta:hover {
  background: var(--blue-deep) !important;
  color: var(--white) !important;
}

/* Show hamburger and mobile menu on mobile */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ===================
   FAQ Section
   =================== */
.faq-item {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--blue-bright);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-dark);
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  flex: 1;
}

.faq-item summary svg {
  flex-shrink: 0;
  color: var(--blue-bright);
  transition: transform 0.2s ease;
}

.faq-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-item[open] {
  border-color: var(--blue-bright);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-answer {
  padding: 0 24px 20px;
  color: var(--gray-text);
  line-height: 1.7;
  font-size: 1rem;
}

/* ===================
   Final CTA Section (New)
   =================== */
.final-cta-new {
  background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(3, 144, 217, 0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-text h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.2;
}

.final-cta-text p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.6;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.btn-final-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  background: white;
  color: var(--navy-dark);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-final-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-final-primary svg {
  transition: transform 0.2s ease;
}

.btn-final-primary:hover svg {
  transform: translateX(4px);
}

.btn-final-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-final-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .final-cta-new {
    padding: 56px 0;
  }

  .final-cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 32px;
  }

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

  .final-cta-actions {
    width: 100%;
  }

  .btn-final-primary {
    width: 100%;
  }
}

/* ===================
   Footer (New)
   =================== */
.footer-new {
  background: #0f172a;
  padding: 48px 0 32px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo-link img {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-new .footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-group a:hover {
  color: white;
}

.footer-bottom-new {
  padding-top: 24px;
}

.footer-bottom-new p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    gap: 32px;
    text-align: center;
    align-items: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-links {
    gap: 48px;
  }

  .footer-link-group {
    align-items: center;
  }

  .footer-bottom-new {
    text-align: center;
  }
}
