/* home.css */

/*──────────────────────────────────────────────
  VARIABLES
──────────────────────────────────────────────*/
:root {
  --font-family-sans: 'SF Pro', 'Inter', Arial, sans-serif;

  /* Colors */
  --color-brand-teal: #2ae3a1;
  --color-brand-soft-teal: #edfcf5;
  --color-brand-dark-teal: #2f9490;

  --color-neutral-white: #ffffff;
  --color-neutral-black: #10172a;
  --color-neutral-muted-teal: #f0f9f5;

  --color-opacity-teal: rgba(var(--color-brand-teal), 0.12);
  --color-opacity-dark-teal: rgba(var(--color-brand-dark-teal), 0.5);

  /* Above is the variable collection as of 7/14/2025 */

  --color-text-secondary: #475569;
  --color-border: #e2e8f0;
  --color-card-bg: rgba(255, 255, 255, 0.98);
  --color-error: #ef4444;
  --color-success: #22c55e;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition: 0.4s ease;
  --transition-slow: 600ms ease-in-out;
  --header-height: 72px;
  background-color: var(--color-brand-soft-teal);
}

/*──────────────────────────────────────────────
    BASE STYLES
  ──────────────────────────────────────────────*/
html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: var(--font-family-sans);
  background-color: var(--color-neutral-white);
  color: var(--color-neutral-black);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--color-neutral-black);
  font-family: inherit;
  font-style: normal;
  font-weight: 590;
  line-height: 120%;
  margin: 0;
}

h1 {
  font-size: 3.75rem;
  letter-spacing: -0.075rem;
}

h2 {
  font-size: 3rem;
  letter-spacing: -0.06rem;
}

h3 {
  font-size: 2.5rem;
  letter-spacing: -0.05rem;
}

h4 {
  font-size: 2rem;
  letter-spacing: -0.04rem;
}

h5 {
  font-size: 1.375rem;
  letter-spacing: -0.0275rem;
  font-weight: 700;
}

h6 {
  font-size: 1rem;
  letter-spacing: -0.02rem;
  font-weight: 700;
}

p {
  font-size: 1rem;
  letter-spacing: -0.02rem;
  font-weight: 400;
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    letter-spacing: -0.06rem;
  }

  h2 {
    font-size: 2.5rem;
    letter-spacing: -0.005rem;
  }

  h3 {
    font-size: 2rem;
    letter-spacing: -0.04rem;
  }

  h4 {
    font-size: 1.75rem;
    letter-spacing: -0.035rem;
  }

  h5 {
    font-size: 1.125rem;
    letter-spacing: -0.0225rem;
  }

  h6 {
    font-size: 1rem;
    letter-spacing: -0.02rem;
  }

  p {
    font-size: 1rem;
    letter-spacing: -0.02rem;
    line-height: 150%rem;
    font-weight: 400;
  }
  small {
    font-size: 0.875rem;
    font-style: normal;
    line-height: 150%;
    font-weight: 400;
    letter-spacing: -0.0175rem;
  }
}

@media (max-width: 480px) {
    h1 {
      font-size: 2.25rem;
      letter-spacing: -0.05rem;
    }
  
    h2 {
      font-size: 1.75rem;
      letter-spacing: -0.04rem;
    }
  
    h3 {
      font-size: 1.5rem;
      letter-spacing: -0.035rem;
    }
  
    h4 {
      font-size: 1.25rem;
      letter-spacing: -0.03rem;
    }
  
    h5 {
      font-size: 0.875rem;
      letter-spacing: -0.02rem;
      font-weight: 700; /* Retained for emphasis */
    }
  
    h6 {
      font-size: 0.75rem;
      letter-spacing: -0.015rem;
      font-weight: 700;
    }
  
    p {
      font-size: 0.75rem;
      letter-spacing: -0.015rem;
      line-height: 150%;
      font-weight: 400;
    }
  
    small {
      font-size: 0.625rem;
      line-height: 150%;
      font-weight: 400;
      letter-spacing: -0.0125rem;
    }
  }
  

ul,
ol {
  margin: 1rem 0; /* replace space-md (1rem) */
  padding-left: 2rem; /* replace space-xl (2rem) */
  line-height: 1.6;
  color: var(--color-text-secondary);
}
ul li + li,
ol li + li {
  margin-top: 0.5rem; /* replace space-xs (0.5rem) */
}

blockquote {
  margin: 2rem 0; /* replace space-xl (2rem) */
  padding-left: 1rem; /* replace space-md (1rem) */
  border-left: 4px solid var(--color-border);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-brand-teal);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover,
a:focus {
  color: var(--color-neutral-black);
  outline-offset: 2px;
}

/* Prevent extra spacing on first/last child */
* > :first-child {
  margin-top: 0;
}
* > :last-child {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 791px;
  gap: 16px;
}

/*──────────────────────────────────────────────
    BUTTONS
  ──────────────────────────────────────────────*/
.buttons {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.button {
  color: var(--color-neutral-black);
  background-color: var(--color-brand-teal);
  border: none;
  display: flex;
  height: 3rem;
  padding: 1rem 1.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background var(--transition-fast),
    color var(--transition-fast),
    border-color var(--transition-fast);
}
.button.active,
.button:hover,
.button:focus {
  background-color: rgba(255, 255, 255, 0.3);
  border: 0.5px solid var(--color-neutral-white);
  color: var(--color-neutral-white);
}

.button.button-dark {
  background-color: var(--color-neutral-black);
  color: var(--color-neutral-white);
}

.button.button-dark:hover,
.button.button-dark:focus {
  background-color: var(--color-brand-teal);
  color: var(--color-neutral-black);
}

/* Header Styles */
.header-section {
  background: transparent;
  width: 100%;
  position: fixed;
  margin-bottom: 5rem;
  top: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background-color 0.3s ease;
}

.header-section.scrolled {
  background-color: var(--color-brand-soft-teal);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-image {
  display: block;
  max-width: 100%;
  height: 3rem;
  color: var(--color-neutral-white); /* Makes logo white by default */
  transition: filter 0.3s ease;
}

.header-section.scrolled .logo-text {
  color: var(--color-neutral-black); /* Makes logo black when scrolled */
}

.logo-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--color-neutral-black);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-neutral-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.header-section.scrolled .nav-link {
  color: var(--color-neutral-black);
}

.nav-link:hover {
  color: var(--color-brand-teal);
}

.cta-button {
  background-color: rgba(255, 255, 255, 0.3);
  border: 0.5px solid var(--color-neutral-white);
  color: var(--color-neutral-white);
  padding: 16px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.header-section.scrolled .cta-button {
  background-color: var(--color-neutral-black);
  color: var(--color-neutral-white);
  border-color: var(--color-neutral-black);
}

.cta-button:hover {
  background-color: var(--color-brand-teal);
  color: var(--color-neutral-black);
  border-color: var(--color-brand-teal);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-nav-button-container {
  background-color: transparent;
  border: 2px solid var(--color-neutral-white);
  border-radius: 8px;
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.header-section.scrolled .mobile-nav-button-container {
  background-color: #10172a;
  border-color: #10172a;
}

.mobile-nav-button-container:hover {
  background-color: var(--color-brand-teal);
  border-color: var(--color-brand-teal);
}

.hamburger-menu-icon {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) invert(1); /* Makes icon white by default */
  transition: filter 0.3s ease;
}


/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .header-container {
    padding: 16px 20px;
  }

  .navigation {
    display: none;
  }

  .mobile-nav-toggle {
    display: block;
  }

  /* Full-screen overlay */
  .mobile-navigation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Use vh for full viewport height */
    background: var(--color-neutral-white);
    z-index: 9999;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;

    /* Animation: slide in from right */
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    visibility: hidden;
  }

  .mobile-navigation.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Override hidden attribute to allow for animation */
  .mobile-navigation[hidden] {
    display: flex;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
  }

  .mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    color: var(--color-neutral-black);
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-close:focus-visible {
    outline: 2px solid var(--color-brand-teal);
    outline-offset: 2px;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-grow: 1;
    overflow-y: auto;
  }

  .mobile-menu-links .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid var(--color-border);
    min-height: 44px;
    font-weight: 600;
    color: var(--color-neutral-black);
    text-decoration: none;
    opacity: 0;
    transform: translateX(-100%);
    transition:
      transform 0.3s ease-out,
      opacity 0.3s ease-out;
  }

  .mobile-navigation.is-open .mobile-menu-links .nav-link {
    opacity: 1;
    transform: translateX(0);
  }

  /* Staggered animation */
  .mobile-navigation.is-open .mobile-menu-links .nav-link:nth-child(1) {
    transition-delay: 0.1s;
  }
  .mobile-navigation.is-open .mobile-menu-links .nav-link:nth-child(2) {
    transition-delay: 0.2s;
  }
  .mobile-navigation.is-open .mobile-menu-links .nav-link:nth-child(3) {
    transition-delay: 0.3s;
  }

  .mobile-navigation .cta-button {
    text-align: center;
    margin-top: auto; /* Push to bottom */
    padding: 1rem;
    width: 100%;
    min-height: 44px;
    flex-shrink: 0;
  }
}

.section-label {
  color: var(--color-brand-teal);
}

/*──────────────────────────────────────────────
    HERO SECTION
  ──────────────────────────────────────────────*/

.hero-section h1 {
  color: var(--color-neutral-white);
  max-width: 800px;
}
.hero-section p {
  color: var(--color-neutral-white);
  max-width: 550px;
}

.hero-section {
  position: relative;
  z-index: 1;
  display: flex;
  padding: 7.5rem 3.75rem 9.75rem 3.75rem;
  justify-content: center;
  align-items: center;
}

.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
}

#hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6.5rem 2.75rem 5.75rem 2.75rem;
  }

  .hero-section .hero-content {
    gap: 1rem;
  }
}

/*──────────────────────────────────────────────
    VALUE PILLARS SECTION
  ──────────────────────────────────────────────*/
.value-pillars-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4.5rem 3.75rem;
  background: linear-gradient(180deg, #10172a 0%, #154240 100%);
  width: 100%;
  margin: 0 auto;
}

.value-pillars-section .section-header h3,
.pillar-card h5,
.pillar-card p {
  color: var(--color-neutral-white);
  text-align: center;
}

.value-pillars-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 0;
  width: 100%;
  max-width: 1160px;
  gap: 1.5rem;
  color: var(--color-neutral-white);
}

.pillar-card {
  display: flex;
  padding: 2.5rem 1.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  flex: 1 0 0;
  align-self: stretch;
  transition: transform var(--transition);
}

.pillar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8125rem;
  align-self: stretch;
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-8px);
}

.pillar-image {
  width: 160px;
  height: 160px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 0;
}

.pillar-image img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .value-pillars-section {
    padding: 3rem 1.5rem;
  }

  .value-pillars-grid {
    flex-direction: column;
    align-items: center;
    grid-template-columns: 1fr;
    gap: .5rem;
  }

  .pillar-card {
    max-width: 400px;
    align-self: center;
    gap: 0rem;
  }
}

@media (max-width: 768px) {
  .value-pillars-section {
    padding: 2.5rem 1rem;
  }

  .section-header {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .pillar-card {
    padding: 2rem 1.5rem;
  }

  .pillar-image {
    width: 120px;
    height: 120px;
  }

  .pillar-image img {
    width: 120px;
    height: 120px;
  }

}

@media (max-width: 480px) {
  .value-pillars-section {
    padding: 2rem 1rem;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .pillar-card {
    min-height: 200px;
    padding: 1.5rem 1rem;
  }

  .pillar-image {
    width: 100px;
    height: 100px;
  }

  .pillar-image img {
    width: 100px;
    height: 100px;
  }

  .pillar-card h3 {
    font-size: 18px;
  }

  .pillar-card p {
    font-size: 14px;
    max-width: 250px;
  }
}

/*──────────────────────────────────────────────
    OUR WORK SECTION
  ──────────────────────────────────────────────*/
.our-work-pin-container {
  position: relative;
  z-index: 1;
  display: none
}

.our-work-section {
  background-color: #2f9490;
  padding: 5rem 0;
  overflow: hidden;
  position: sticky;
  top: var(--header-height);
  z-index: 2;
}

.our-work-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.our-work-light-beam {
  position: absolute;
  top: -77px;
  left: -200px;
  width: 120%;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
  transform: scaleX(-1);
  transform-origin: center;
}

.our-work-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
  transition: background-color var(--transition);
}

.our-work-title h2 {
  color: var(--color-neutral-white);
  font-size: 48px;
  font-weight: 590;
  line-height: 1.2;
  letter-spacing: -0.96px;
  margin: 0;
  margin-top: 0.25rem;
}

.section-label-light {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--color-neutral-white);
  border-radius: 1000px;
  font-weight: 400;
  color: var(--color-neutral-white);
}

.our-work-nav {
  display: flex;
  gap: 0.5rem;
}

.nav-arrow {
  background-color: var(--color-neutral-white);
  border: none;
  border-radius: 4px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition);
}

.nav-arrow:hover {
  background-color: #e2e8f0;
}

.nav-arrow:focus-visible {
  outline: 2px solid var(--color-neutral-white);
  outline-offset: 2px;
}

.our-work-gallery {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-left: 60px;
  padding-right: 60px;
  margin-left: -60px;
  margin-right: -60px;
}

.our-work-gallery::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 380px;
  background-color: var(--color-neutral-white);
  border-radius: 24px;
  box-shadow: 0px 12px 12px 0px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 1rem 1rem 33px;
  gap: 2rem;
}

.project-image-container {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background-color: var(--color-neutral-black);
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.project-info p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.44px;
  color: var(--color-neutral-black);
  margin: 0;
  flex-grow: 1;
}

.project-arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--color-neutral-black);
  border-radius: 4px;
  flex-shrink: 0;
  transition: background-color var(--transition);
}

.project-arrow-link:hover {
  background-color: #2f9490;
}

@media (max-width: 768px) {
  .our-work-container {
    padding: 0 20px;
  }

  .our-work-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .our-work-title h2 {
    font-size: 36px;
  }

  .our-work-gallery {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .project-card {
    flex: 0 0 280px;
  }
}
/*──────────────────────────────────────────────
    HOW WE WORK SECTION
  ──────────────────────────────────────────────*/
.how-we-work-section {
  background-color: var(--color-neutral-white);
  padding: 5rem 0;
  width: 100%;
}

.how-we-work-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.how-we-work-section .section-header {
  max-width: 698px;
}

.how-we-work-section .section-label {
  color: var(--color-brand-dark-teal);
}

.how-we-work-main {
  display: flex;
  gap: 7.5rem;
  align-items: flex-start;
  width: 100%;
  max-width: 1160px;
}

/* Steps Navigation */
.steps-navigation {
  position: sticky;
  top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 184px;
  z-index: 10;
}

.step-nav-item {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  padding: 0.25rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 
    background-color var(--transition),
    transform var(--transition);
  position: relative;
}

.step-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-brand-soft-teal);
  border-radius: 0.25rem;
  opacity: 0;
  transform: scale(0.95);
  transition: 
    opacity 0.4s cubic-bezier(0.4, 0.0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: -1;
}

.step-nav-item.active::before,
.step-nav-item:hover::before,
.step-nav-item:focus::before {
  opacity: 1;
  transform: scale(1);
}

.step-nav-item:hover {
  transform: translateX(4px);
}

.step-number {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-neutral-white);
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-neutral-black);
  transition: 
    background-color var(--transition),
    color var(--transition);
  z-index: 1;
  position: relative;
}

.step-nav-item.active .step-number {
  background: var(--color-neutral-white);
  color: var(--color-neutral-black);
}

.step-nav-item p {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-neutral-black);
  margin: 0;
  transition: color var(--transition);
  z-index: 1;
  position: relative;
}

/* Steps Content */
.steps-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}

.step-detail {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
}

.step-image {
  width: 100%;
  height: auto;
  max-width: 350px;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--color-brand-soft-teal);
  padding: 1rem;
  
}

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

.step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.step-text h5 {
  margin: 0;
  color: var(--color-neutral-black);
}

.step-text p {
  margin: 0;
  color: var(--color-neutral-black);
  line-height: 1.5;
}

/* Mobile Responsive Styles */


@media (max-width: 992px) {
  .how-we-work-section {
    padding: 4rem 0;
  }

  .how-we-work-container {
    gap: 3rem;
  }

  .how-we-work-main {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .steps-navigation {
    position: static;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .step-nav-item {
    flex: 1;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
  }

  .step-nav-item:hover {
    transform: translateY(-2px);
  }

  .steps-content {
    gap: 4rem;
    width: 100%;
  }

  .step-detail {
    gap: 1.5rem;
  }


}

@media (max-width: 768px) {
  .how-we-work-section {
    padding: 3rem 0;
  }

  .how-we-work-container {
    padding: 0 1.25rem;
    gap: 2.5rem;
  }

  .how-we-work-main {
    width: 100%;
  }

  .steps-navigation {
    gap: 0.5rem;
  }

  .step-detail {
    flex-direction: column;
  }

  .step-nav-item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem 0.25rem;
  }

  .step-number {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .step-nav-item p {
    font-size: 0.75rem;
    text-align: center;
  }

  .step-text {
    width: 100%;
  }

  .step-image {
    width: 100%;
    max-width: none;
    padding-left: 8rem;
    padding-right: 8rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }


}

@media (max-width: 480px) {
  .how-we-work-section {
    padding: 2.5rem 0;
  }

  .how-we-work-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .step-image {
    width: 100%;
    max-width: none;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-top: .25rem;
    padding-bottom: .25rem;
  }


}

/*──────────────────────────────────────────────
    SECURITY SECTION
  ──────────────────────────────────────────────*/
.security-section {
  background: linear-gradient(180deg, #10172a 0%, #154240 100%);
  padding: 5.25rem 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 493px;
}

.security-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.security-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 1160px;
}

.security-section h6 {
  color: var(--color-brand-teal);
}
.security-section h2 {
  color: var(--color-neutral-white);
}
.security-title {
  font-size: 2.5rem;
  font-weight: 590;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--color-neutral-white);
  margin: 0;
  max-width: 675px;
}

.security-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.25rem;
}

.security-badges {
  display: flex;
  align-items: center;
  gap: 3.25rem;
}

.security-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
}

.badge-icon {
  position: relative;
  width: 96px;
  height: 111px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge-background {
  position: absolute;
  width: 96px;
  height: 111px;
  border-radius: 6px;
  top: 0;
  left: 0;
}

.badge-label span {
  font-family: inherit;
  font-weight: 590;
  font-size: 10px;
  line-height: 100%;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--color-neutral-white);
}

.badge-description {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 150%;
  text-align: center;
  letter-spacing: -0.02em;
  color: var(--color-neutral-white);
  margin: 0;
  max-width: 124px;
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  flex: 1;
  max-width: 390px;
}

.security-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-checkmark {
  width: 16px;
  height: 16px;
  background: var(--color-brand-teal);
  border-radius: 24px;
  flex-shrink: 0;
  position: relative;
}

.feature-checkmark::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  top: 27.5%;
  bottom: 38.5%;
  border: 2px solid var(--color-neutral-black);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.feature-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--color-neutral-white);
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .security-section {
    padding: 4rem 2rem;
  }

  .security-content {
    gap: 2rem;
  }

  .security-badges {
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .security-section {
    padding: 3rem 1.5rem;
  }

  .security-title {
    font-size: 2rem;
  }

  .security-content {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .security-badges {
    justify-content: center;
    gap: 1.5rem;
  }

  .security-features {
    max-width: none;
    width: 100%;
    align-items: center;
  }

  .security-feature {
    max-width: 400px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .security-section {
    padding: 2.5rem 1.25rem;
  }

  .security-container {
    gap: 3rem;
  }

  .security-title {
    font-size: 1.75rem;
  }

  .security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 3rem;  
  }
  .security-badges .security-badge:nth-child(3) {
    grid-column: 1 / -1;    /* start at col 1, end at last */
    justify-self: center; 
  }
  .security-features {
    gap: 1.5rem;
  }

  .feature-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .security-section {
    padding: 2rem 1rem;
  }
}

/*──────────────────────────────────────────────
    PAST CLIENTS SECTION
  ──────────────────────────────────────────────*/
.past-clients-section {
  background-color: #2f9490;
  position: relative;
  width: 100%;
}

.past-clients-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.past-clients-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  width: 100%;
  box-sizing: border-box;
}

.past-clients-text {
  flex-shrink: 0;
  width: 16rem;
}

.past-clients-text p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02rem;
  color: #ffffff;
  margin: 0;
}

.past-clients-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
  overflow: hidden;
  width: 100%;
  position: relative;
  mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
  -webkit-mask: linear-gradient(90deg, transparent, white 5%, white 95%, transparent);
}

.past-clients-logos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(90deg, #2f9490, transparent);
  z-index: 2;
  pointer-events: none;
}

.past-clients-logos::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 100%;
  background: linear-gradient(270deg, #2f9490, transparent);
  z-index: 2;
  pointer-events: none;
}

.logos-track {
  display: flex;
  animation: scroll-logos 45s linear infinite;
  gap: 2rem;
}

.client-logo {
  height: 3.5rem;
  width: 8.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.client-logo img {
  height: 4rem;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

@keyframes scroll-logos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Pause animation on hover */
.past-clients-logos:hover .logos-track {
  animation-play-state: paused;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .past-clients-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem 1.25rem;
  }

  .past-clients-text {
    width: 100%;
    text-align: left;
  }

  .past-clients-text p {
    font-size: 1rem;
    text-align: center;
  }

  .past-clients-logos {
    gap: 1.5rem;
  }

  .logos-track {
    gap: 1rem;
    animation-duration: 60s;
  }

  .client-logo {
    width: auto;
    min-width: 6rem;
  }

  .client-logo img {
    width: auto;
    height: 3rem;
  }
}

@media (max-width: 480px) {
  .past-clients-content {
    padding: 1.25rem 1rem;
    gap: 1rem;
  }

  .past-clients-logos {
    gap: 1rem;
  }

  .logos-track {
    gap: 1rem;
    animation-duration: 60s;
  }

  .client-logo {
    min-width: 5rem;
  }

  .client-logo img {
    height: 2.5rem;
  }
}

/*──────────────────────────────────────────────
    OUR DIFFERENCE SECTION
  ──────────────────────────────────────────────*/
.our-difference-section {
  background-color: var(--color-brand-soft-teal);
  padding: 7.5rem 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-difference-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.our-difference-section .section-label {
  color: var(--color-brand-dark-teal);
}

.difference-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: 1160px;
  gap: 0rem;
}

.difference-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.labels-column {
  width: 199px;
  padding-top: 2rem;
  gap: 2rem;
}

.legacy-column {
  width: 350px;
  padding-top: 2rem;
  gap: 2rem;
}

.lumapath-column {
  width: 359px;
  background: linear-gradient(180deg, rgba(42, 227, 161, 0.3) -28.84%, rgba(240, 249, 245, 0.1) 117.76%);
  border-radius: 0.5rem;
  padding-top: 2rem;
  gap: 2rem;
}

.difference-column-header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  flex-shrink: 0;
}

.labels-column .difference-column-header {
  opacity: 0; /* Hide the header for labels column */
}

.difference-column-header h5 {
  color: var(--color-neutral-black);
  text-align: center;
  margin: 0;
}

.lumapath-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lumapath-logo .logo-text {
  color: var(--color-neutral-black);
  font-family: 'Manrope', sans-serif;
}

.difference-column-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.difference-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 0.5rem;
  height: 4rem;
  border-bottom: 0.25px solid var(--color-brand-dark-teal);
  box-sizing: border-box;
}

.labels-column .difference-item {
  justify-content: flex-start;
  padding-left: 0;
}

.legacy-column .difference-item,
.lumapath-column .difference-item {
  justify-content: center;
}

.difference-item-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.02em;
  color: var(--color-neutral-black);
  text-align: center;
}

.labels-column .difference-item-text {
  text-align: left;
}

.lumapath-column .difference-item-text {
  font-weight: 590;
}

/* Visually hidden utility for accessibility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .our-difference-section {
    padding: 6rem 2rem;
  }

  .labels-column {
    width: 160px;
  }

  .legacy-column {
    width: 300px;
  }

  .lumapath-column {
    width: 300px;
  }

  .difference-column-header h5.legacy-vendor {
    font-weight: 500;
  }
}

@media (max-width: 992px) {
  .our-difference-section {
    padding: 5rem 1.5rem;
  }

  .difference-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .difference-column {
    width: 100% !important;
    max-width: 500px;
    flex-direction: row;
    gap: 1rem;
    padding: 2rem 1rem;
    align-items: center;
  }

  .labels-column {
    display: none; /* Hide labels column on mobile */
  } 

  .difference-column-header {
    width: 200px;
    flex-shrink: 0;
    justify-content: flex-start;
  }

  .difference-column-content {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .difference-item {
    width: calc(50% - 0.25rem);
    height: auto;
    padding: 1rem;
    border: .75px solid var(--color-brand-dark-teal);
    border-radius: 0.5rem;
    background-color: var(--color-neutral-white);
    margin-bottom: 0;
  }

  .difference-item-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .our-difference-section {
    padding: 4rem 1.25rem;
  }
  .our-difference-container {
    gap: 1rem;
  }

  .difference-content {
    flex-direction: row;
  }

  .difference-column {
    flex-direction: column;
    gap: 1.5rem;
  }


  .difference-column-header {
    width: 100%;
    justify-content: center;
  }

  .difference-column-content {
    flex-direction: column;
    gap: 1rem;
  }

  .difference-item {
    width: 100%;
    min-height: 5rem
  }
}

@media (max-width: 480px) {
  .our-difference-section {
    padding: 3rem 1rem;
  }

  .our-difference-container {
    gap: 2rem;
  }

  .lumapath-logo .logo-text {
    font-size: 1rem;
  }
}

/*──────────────────────────────────────────────
    CONTACT SECTION
  ──────────────────────────────────────────────*/
.contact-section {
  position: relative;
  width: 100%;
  height: 640px;
  background-image: url('../assets/images_v2/Contact-Us-Background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-call-to-action {
  background-color: #ffffff;
  border-radius: 32px;
  box-shadow: 0px 20px 44px 0px rgba(0, 0, 0, 0.3);
  width: 1030px;
  max-width: calc(100% - 40px);
  position: relative;
  top: 68px; /* Offset as per Figma design */
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 80px;
  gap: 32px;
  text-align: center;
}

.contact-title {
  font-weight: 590;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -1.2px;
  color: #10172a;
  margin: 0;
  min-width: 100%;
}

.contact-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: #10172a;
  margin: 0;
  max-width: 541px;
}

.contact-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .contact-call-to-action {
    width: 90%;
  }

  .contact-content {
    padding: 40px 60px;
  }

  .contact-title {
    font-size: 48px;
  }
}

@media (max-width: 992px) {
  .contact-section {
    height: 580px;
  }

  .contact-content {
    padding: 32px 40px;
  }

  .contact-title {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    height: 520px;
  }

  .contact-call-to-action {
    width: calc(100% - 24px);
    top: 40px;
  }

  .contact-content {
    padding: 32px 24px;
    gap: 24px;
  }

  .contact-title {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .contact-subtitle {
    font-size: 15px;
  }

  /* Buttons stack on mobile - reusing hero button mobile behavior */
  .contact-buttons {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }

  .contact-buttons .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .contact-section {
    height: 480px;
  }

  .contact-call-to-action {
    width: calc(100% - 20px);
    border-radius: 24px;
    top: 30px;
  }

  .contact-content {
    padding: 24px 20px;
    gap: 20px;
  }

  .contact-title {
    font-size: 28px;
    letter-spacing: -0.6px;
  }

  .contact-subtitle {
    font-size: 14px;
    letter-spacing: -0.28px;
  }
}

/*──────────────────────────────────────────────
    FOOTER SECTION
  ──────────────────────────────────────────────*/
.footer-section {
  background-color: #2f9490;
  position: relative;
  overflow: hidden;
  padding: 4rem 0 2rem;
}

.footer-light-beam {
  position: absolute;
  top: -62px;
  right: -132px;
  width: 613px;
  height: 853px;
  pointer-events: none;
  z-index: 1;
}

.footer-light-beam img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.logo-container {
  display: flex;
  padding: 0.3125rem 0rem;
  justify-content: left;
  align-items: center;
  gap: 0.5555rem;
}

.logo-icon {
  width: 27px;
  height: 27px;
}

.logo-text {
  color: var(--color-neutral-white);
  font-family: 'Manrope', 'Inter', sans-serif;
  font-size: 1.375rem;
  line-height: normal;
  font-weight: 800;
  text-decoration: none;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-title {
  font-weight: 590;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.96px;
  color: white;
  margin: 0;
  max-width: 472px;
  flex-shrink: 0;
}

.footer-menus {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  min-width: 6rem;
}

.footer-section-tag {
  border: 1px solid white;
  border-radius: 37px;
  padding: 4px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 1.5rem;
}

.footer-section-tag span {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.28px;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: white;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-link:hover {
  opacity: 0.8;
  color: white;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-link {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: white;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-contact-link:hover {
  opacity: 0.8;
  color: white;
}

.footer-address {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: white;
}

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

.footer-copyright span {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: white;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal-link {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: -0.32px;
  color: white;
  text-decoration: none;
  transition: opacity var(--transition);
}

.footer-legal-link:hover {
  opacity: 0.8;
  color: white;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .footer-container {
    padding: 0 40px;
  }

  .footer-title {
    font-size: 42px;
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  .footer-light-beam {
    right: -200px;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 2rem 0 3rem;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-content {
    gap: 3rem; /* 48px gap between logo and main content */
  }

  .footer-main {
    flex-direction: column;
    gap: 3rem; /* 48px gap between title and menus */
  }

  .footer-title {
    font-size: 40px;
    letter-spacing: -0.8px;
    max-width: none;
    width: 100%;
  }

  .footer-menus {
    flex-direction: row; /* Side by side layout */
    gap: 3.5rem; /* 56px gap between Links and Contact */
    align-self: left;
  }

  .footer-links,
  .footer-contact {
    min-width: auto;
    flex: 0 0 auto;
  }

  /* Smaller font sizes for mobile */
  .footer-link,
  .footer-contact-link,
  .footer-address {
    font-size: 14px !important;
    letter-spacing: -0.28px !important;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 0;
    padding-top: 1rem;
    width: 100%;
  }

  .footer-legal {
    justify-content: flex-end;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 2rem 0 2.5rem;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-title {
    font-size: 24px;
    letter-spacing: -0.5px;
  }

  .logo-container {
    width: 120px;
    height: 32px;
  }

  .logo-icon {
    width: 22px;
    height: 22px;
    top: 5px;
  }

  .logo-text {
    left: 28px;
    font-size: 18px;
  }

  .footer-section-tag span,
  .footer-link,
  .footer-contact-link,
  .footer-address,
  .footer-copyright span,
  .footer-legal-link {
    font-size: 14px;
  }

  .footer-light-beam {
    display: none;
  }
}

/* Cookie Banner Styles - Matching home.css aesthetic */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid #e2e8f0;
  padding: 20px 24px;
  z-index: 9999;
  box-shadow:
    0 -10px 15px -3px rgba(0, 0, 0, 0.1),
    0 -4px 6px -2px rgba(0, 0, 0, 0.05);
  animation: slideInFromBottom 0.4s ease-out;
}

.dark-mode .cookie-banner {
  background-color: rgba(15, 23, 42, 0.98);
  border-top-color: #334155;
  box-shadow:
    0 -10px 15px -3px rgba(0, 0, 0, 0.3),
    0 -4px 6px -2px rgba(0, 0, 0, 0.2);
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.cookie-banner-text {
  flex: 1;
  min-width: 0;
}

.cookie-banner-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #10172a;
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.dark-mode .cookie-banner-title {
  color: #f7fafc;
}

.cookie-banner-description {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.dark-mode .cookie-banner-description {
  color: #cbd5e1;
}

.cookie-banner-link {
  color: #2ae3a1;
  text-decoration: underline;
  transition: color 150ms ease-in-out;
}

.cookie-banner-link:hover {
  color: #0f172a;
}

.dark-mode .cookie-banner-link:hover {
  color: #f7fafc;
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

/* Primary button - matching .button-dark from home.css */
.cookie-button-primary {
  background-color: #0f172a;
  color: #ffffff;
  border: 2px solid #0f172a;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -0.01em;
}

.cookie-button-primary:hover,
.cookie-button-primary:focus {
  background-color: #2ae3a1;
  border-color: #2ae3a1;
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(42, 227, 161, 0.25);
}

/* Secondary button - matching .button-outline-dark from home.css */
.cookie-button-secondary {
  background-color: transparent;
  color: #0f172a;
  border: 2px solid #e2e8f0;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -0.01em;
}

.cookie-button-secondary:hover,
.cookie-button-secondary:focus {
  background-color: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
}

@keyframes slideInFromBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile responsive styles */
@media (max-width: 992px) {
  .cookie-banner {
    padding: 20px;
  }

  .cookie-banner-content {
    gap: 24px;
  }

  .cookie-banner-actions {
    gap: 10px;
  }

  .cookie-button-primary,
  .cookie-button-secondary {
    padding: 12px 20px;
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px 20px;
  }

  .cookie-banner-content {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }

  .cookie-button-primary,
  .cookie-button-secondary {
    flex: 1;
    padding: 14px 16px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner-content {
    gap: 16px;
  }

  .cookie-banner-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cookie-button-primary,
  .cookie-button-secondary {
    width: 100%;
    justify-content: center;
  }

  .cookie-banner-title {
    font-size: 1rem;
  }

  .cookie-banner-description {
    font-size: 0.813rem;
  }
}

/*──────────────────────────────────────────────
    SERVICES OVERVIEW SECTION
  ──────────────────────────────────────────────*/
.services-section {
  background-color: var(--color-brand-soft-teal);
  padding: 5rem 3.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 3.5rem;
}

.services-section .section-header {
  width: 433px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  flex-shrink: 0;
}

.services-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
}

.services-section .section-header h3 {
    text-align: left;
}

.services-image {
  width: 360px;
  height: 240px;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--color-neutral-white);
  position: relative;
}

.services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--transition);
  position: absolute;
  top: 0;
  left: 0;
}

.services-image img:not(.active) {
  opacity: 0;
}

.services-image img.active {
  opacity: 1;
}

.services-accordion {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
  max-width: 671px;
}

.service-item {
  background: var(--color-neutral-white);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all var(--transition);
}

.service-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color var(--transition);
}

.service-header:hover {
  background-color: rgba(42, 227, 161, 0.05);
}

.service-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
  flex: 1;
}

.services-section .section-label {
    color: var(--color-brand-dark-teal);
}


.service-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
}

.service-toggle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 20.83%;
  bottom: 20.83%;
  width: 2px;
  background-color: var(--color-neutral-black);
  transform: translateX(-50%);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.service-toggle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 20.83%;
  right: 20.83%;
  height: 2px;
  background-color: var(--color-neutral-black);
  transform: translateY(-50%);
  transition: transform var(--transition-fast);
}

.service-item.active .service-toggle::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.service-content {
  overflow: hidden;
  max-height: 0;
  transition: 
    max-height 0.8s cubic-bezier(0.4, 0.0, 0.2, 1),
    padding 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
  border-top: 1px solid rgba(47, 148, 144, 0.5);
}

.service-item.active .service-content {
  max-height: 300px;
  padding: 1.5rem;
  transition: 
    max-height 0.8s cubic-bezier(0.4, 0.0, 0.2, 1),
    padding 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.service-content-inner {
  transform: translateY(-12px);
  opacity: 0;
  transition: 
    transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1),
    opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.service-item.active .service-content-inner {
  transform: translateY(0);
  opacity: 1;
  transition: 
    transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1) 0.4s,
    opacity 0.5s cubic-bezier(0.4, 0.0, 0.2, 1) 0.2s;
}

.service-content-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-content-inner p {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--color-neutral-black);
  margin: 0;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-feature {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.9375rem;
}

.service-check {
  width: 12px;
  height: 12px;
  background: var(--color-brand-teal);
  border-radius: 18px;
  flex-shrink: 0;
  position: relative;
}

.service-check::after {
  content: '';
  position: absolute;
  left: 25%;
  right: 25%;
  top: 31.25%;
  bottom: 34.38%;
  border: 1.5px solid var(--color-neutral-black);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .services-container {
    gap: 2.5rem;
  }

  .services-section .section-header {
    width: 380px;
  }

  .services-image {
    width: 320px;
    height: 213px;
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 4rem 2rem;
  }

  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .services-section .section-header {
    width: 100%;
    max-width: 500px;
    align-items: center;
    text-align: center;
  }

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

  .services-section .section-label {
    text-align: center;
  }

  .services-section .services-title {
    align-items: center;
  }

  .services-image {
    width: 100%;
    max-width: 400px;
    height: 240px;
  }

  .services-accordion {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 3rem 1.25rem;
  }

  .service-content-inner {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 2.5rem 1rem;
  }

  .services-container {
    gap: 2rem;
  }


  .services-image {
    height: 200px;
  }

}

/*──────────────────────────────────────────────
    BARRIERS SECTION
  ──────────────────────────────────────────────*/
.barriers-section {
  position: relative;
  background-color: var(--color-brand-soft-teal);
  padding: 5rem 0 7.5rem 0;
  overflow: hidden;
}

.barriers-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.barriers-gradient-left {
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 31.5rem;
  z-index: 1;
}

.barriers-gradient-right {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 0;
  top: 31.5rem;
  transform: scaleX(-1);
  z-index: 1;
}

.barriers-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 3.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.barriers-section .section-label {
  color: var(--color-brand-dark-teal);
}

.barriers-section .section-header p {
  line-height: 1.5rem;
}

.barriers-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 354px;
}

.barrier-card {
  background: var(--color-neutral-white);
  border-radius: 0.75rem;
  padding: 1.5rem 3rem;
  width: 100%;
  max-width: 354px;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.barrier-card.animate-in {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.barrier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.barriers-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}

.barrier-card h6 {
  font-weight: 600;
}

.barrier-card small {
  font-weight: 400;
  line-height: 1.5;
}

.dashed-arrow {
  width: 2px;
  height: 137px;
  background: repeating-linear-gradient(
    to bottom,
    var(--color-neutral-black) 0,
    var(--color-neutral-black) 8px,
    transparent 8px,
    transparent 16px
  );
  position: relative;
}

.dashed-arrow::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--color-neutral-black);
}

.barriers-footer {
  display: flex;
  flex-direction: column;
  padding: 0 5rem;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 832px;
}

.barriers-footer h3 {
  font-size: 1.5rem;
  font-weight: 590;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.barriers-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.barriers-logo .logo-icon {
  width: 26.67px;
  height: 26.67px;
}

.barriers-logo .logo-text {
  color: var(--color-neutral-black);
  font-family: 'Manrope', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1.5;
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
  .barriers-container {
    padding: 0 2rem;
  }

  .barriers-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .barriers-section {
    padding: 4rem 0 6rem;
  }

  .barriers-container {
    gap: 3rem;
  }

  .barriers-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .barriers-section {
    padding: 3rem 0 4.5rem;
  }

  .barriers-container {
    padding: 0 1.25rem;
    gap: 2.5rem;
  }

  .barriers-title {
    font-size: 1.75rem;
  }

  .barriers-description {
    font-size: 0.875rem;
  }

  .barriers-cards {
    gap: 1.5rem;
  }

  .barrier-card {
    padding: 1.25rem;
    min-height: 120px;
  }

  .barriers-logo .logo-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .barriers-section {
    padding: 2.5rem 0 4rem;
  }

  .barriers-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .barriers-cards {
    gap: 1.25rem;
  }

  .barrier-card {
    padding: 1rem;
    min-height: 100px;
  }

  .dashed-arrow {
    height: 100px;
  }
}
