/* ===========================
   ALLSET HR - DESIGN SYSTEM
   Premium Apple-style aesthetic
   =========================== */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
  /* Brand Colors */
  --color-primary: #A52440;
  --color-orange: #E37337;
  --color-magenta: #CE315F;
  --color-soft-pink: #EEA6A9;
  --color-yellow: #F4E384;
  --color-eggshell: #F7EDE3;
  --color-rose: #DD8695;
  --color-navy: #393D5C;
  --color-light-gray: #DEE3E6;
  /* Semantic Colors */
  --color-bg: var(--color-eggshell);
  --color-text: var(--color-navy);
  --color-text-light: #5d6175;
  --color-accent: var(--color-primary);
  /* Typography */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;
  --font-size-7xl: 5.5rem;
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-slower: 800ms cubic-bezier(0.16, 1, 0.3, 1);
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(57, 61, 92, 0.05);
  --shadow-md: 0 4px 12px rgba(57, 61, 92, 0.08);
  --shadow-lg: 0 12px 40px rgba(57, 61, 92, 0.12);
  --shadow-xl: 0 24px 60px rgba(57, 61, 92, 0.16);
  --shadow-glow: 0 0 40px rgba(165, 36, 64, 0.2);
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-3xl: 3rem;
  --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===========================
   LOADING SCREEN
   =========================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-eggshell);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader__logo {
  width: auto;
  height: 48px;
  object-fit: contain;
  margin-bottom: var(--space-8);
  animation: pulse 1.5s ease-in-out infinite;
}

.loader__bar {
  width: 200px;
  height: 4px;
  background: rgba(165, 36, 64, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader__progress {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-orange));
  border-radius: var(--radius-full);
  animation: loading 1.5s ease-out forwards;
}

@keyframes loading {
  0% {
    width: 0;
  }

  50% {
    width: 60%;
  }

  100% {
    width: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Custom cursor (disabled) */
.cursor,
.cursor-follower {
  display: none;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.8rem, 6vw, var(--font-size-7xl));
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, var(--font-size-5xl));
  font-weight: 700;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, var(--font-size-3xl));
  font-weight: 600;
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: 600;
}

p {
  margin-bottom: var(--space-4);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-magenta) 50%, var(--color-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-accent {
  color: var(--color-primary);
}

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

/* ===========================
   LAYOUT
   =========================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1440px;
}

section {
  padding: var(--space-32) 0;
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: var(--space-20) 0;
  }
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-3) 0;
  transition: var(--transition-base);
  background: rgba(247, 237, 227, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav.scrolled {
  background: rgba(247, 237, 227, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: var(--space-1) 0;
}

.nav.scrolled .nav__logo {
  height: 36px;
}

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

.nav__logo-link {
  display: flex;
  align-items: center;
}

.nav__logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-base);
}

.nav__logo:hover {
  transform: scale(1.03);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.nav__link {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-base);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--accent {
  padding: var(--space-1) var(--space-4);
  background: transparent;
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border: 1.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  white-space: nowrap;
}

.nav__link--accent:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.nav__cta {
  padding: var(--space-2) var(--space-5);
  background: var(--color-primary);
  color: white;
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--color-magenta);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Nav Actions (lang switcher + hamburger wrapper) */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(57, 61, 92, 0.06);
  border-radius: var(--radius-full);
  padding: 3px 4px;
  border: 1px solid rgba(57, 61, 92, 0.1);
  transition: var(--transition-base);
}

.lang-switcher:hover {
  border-color: rgba(57, 61, 92, 0.2);
}

.lang-switcher__btn {
  font-family: var(--font-family);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  line-height: 1;
}

.lang-switcher__btn:hover {
  color: var(--color-text);
}

.lang-switcher__btn--active {
  background: var(--color-primary);
  color: white;
}

.lang-switcher__btn--active:hover {
  color: white;
}

.lang-switcher__divider {
  font-size: 10px;
  color: rgba(57, 61, 92, 0.25);
  user-select: none;
  line-height: 1;
}

/* Mobile Nav Toggle (hamburger button) */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  z-index: 1100;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-navy);
  border-radius: 1px;
  transition: var(--transition-base);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__toggle span:nth-child(1) {
  top: 13px;
}

.nav__toggle span:nth-child(2) {
  top: 21px;
}

.nav__toggle span:nth-child(3) {
  top: 29px;
}

.nav__toggle.active span:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scaleX(0);
}

.nav__toggle.active span:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav__inner {
    position: relative;
  }

  .nav__actions {
    z-index: 1100;
    display: flex;
    align-items: center;
    gap: var(--space-3);
  }

  .nav__toggle {
    display: flex;
  }

  /* Dropdown panel instead of full-screen overlay */
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-2) var(--space-3);
    background: rgba(247, 237, 227, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 24px rgba(57, 61, 92, 0.1);
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: var(--space-4) var(--space-5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1050;
  }

  .nav__links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__links li {
    flex-shrink: 0;
  }

  .nav__link {
    font-size: var(--font-size-xs);
    font-weight: 600;
    padding: var(--space-1) var(--space-3);
    transition: color 0.2s ease, background 0.2s ease;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }

  .nav__link:hover,
  .nav__link:active {
    color: var(--color-primary);
    background: rgba(165, 36, 64, 0.08);
  }

  .nav__link--accent {
    font-size: var(--font-size-xs);
    padding: var(--space-1) var(--space-3);
  }

  .nav__cta {
    font-size: var(--font-size-xs);
    padding: var(--space-1) var(--space-4);
  }
}

/* Small phone: slightly tighter dropdown */
@media (max-width: 480px) {
  .nav__links {
    gap: var(--space-1) var(--space-2);
    padding: var(--space-3) var(--space-3);
  }

  .nav__link,
  .nav__link--accent {
    font-size: 0.65rem;
    padding: 3px var(--space-2);
  }

  .nav__cta {
    font-size: 0.65rem;
    padding: 3px var(--space-3);
  }

  .lang-switcher__btn {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.btn--primary:hover {
  background: var(--color-magenta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

.btn--secondary:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-navy);
  border: 1px solid rgba(57, 61, 92, 0.1);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn__arrow {
  transition: var(--transition-fast);
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ===========================
   3D TILT CARDS
   =========================== */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateZ(20px);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
  will-change: transform;
}

.hero__shape--1 {
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, var(--color-soft-pink), var(--color-rose));
  top: -25%;
  right: -15%;
  animation-delay: 0s;
}

.hero__shape--2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--color-yellow), var(--color-orange));
  bottom: -15%;
  left: -10%;
  animation-delay: -5s;
}

.hero__shape--3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--color-rose), var(--color-magenta));
  top: 40%;
  left: 25%;
  animation-delay: -10s;
}

.hero__blob {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.15;
  animation: morphBlob 15s ease-in-out infinite;
}

.hero__blob--1 {
  width: 300px;
  height: 300px;
  background: var(--color-primary);
  top: 20%;
  right: 5%;
}

.hero__blob--2 {
  width: 200px;
  height: 200px;
  background: var(--color-orange);
  bottom: 10%;
  left: 10%;
  animation-delay: -7s;
}

@keyframes morphBlob {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }

  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }

  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(30px, -30px) scale(1.05);
  }

  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }

  75% {
    transform: translate(-30px, -15px) scale(1.02);
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content {
  max-width: 650px;
}

.hero__tagline {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-orange);
  margin-bottom: var(--space-4);
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
}

.hero__title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--color-navy);
  margin-bottom: var(--space-8);
  animation: fadeInUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  color: var(--color-text-light);
  max-width: 700px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
  margin-bottom: var(--space-10);
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.5s forwards;
  opacity: 0;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.6s forwards;
  opacity: 0;
}

.hero__image-wrapper {
  position: relative;
  max-width: 500px;
  background: linear-gradient(135deg, rgba(238, 166, 169, 0.3), rgba(227, 115, 55, 0.2));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  padding: var(--space-4);
}

.hero__image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(57, 61, 92, 0.15));
  border-radius: 20px;
  background: var(--color-eggshell);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  animation: fadeInUp 1s ease-out 1s forwards;
  opacity: 0;
}

.hero__scroll span {
  font-size: var(--font-size-xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* Decorative bars (removed from HTML) */

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
    margin-bottom: var(--space-8);
  }

  .hero__image-wrapper {
    max-width: 350px;
  }
}

/* ===========================
   SECTION: WHY ALLSET EXISTS
   =========================== */
.why-section {
  background: linear-gradient(180deg, #FAF5EF 0%, #F4EAE0 100%);
  position: relative;
}

.why-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-20);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--space-5);
}

.section-label::before,
.section-label::after {
  content: '';
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-orange));
}

.why-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Single-column text-only variant */
.why-section__content.why-section__content--text-only {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.why-section__text p {
  font-size: var(--font-size-lg);
  line-height: 1.9;
  color: var(--color-text-light);
}

.why-section__text p:first-of-type {
  font-size: var(--font-size-xl);
  color: var(--color-text);
  font-weight: 500;
}

.why-section__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-section__image {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

@media (max-width: 1024px) {
  .why-section__content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .why-section__visual {
    order: -1;
  }
}

/* ===========================
   SECTION: OUR PROMISE
   =========================== */
.promise-section {
  background: var(--color-navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.promise-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: linear-gradient(135deg, var(--color-magenta) 0%, transparent 60%);
  opacity: 0.1;
  transform: rotate(-15deg);
}

.promise-section__content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.promise-section h2 {
  color: white;
  margin-bottom: var(--space-10);
}

.promise-section .section-label {
  color: var(--color-soft-pink);
}

.promise-section .section-label::before,
.promise-section .section-label::after {
  background: var(--color-soft-pink);
}

.promise-quote {
  font-size: clamp(var(--font-size-xl), 2.5vw, var(--font-size-2xl));
  font-weight: 500;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-10);
}

.promise-highlight {
  font-size: clamp(var(--font-size-2xl), 3.5vw, var(--font-size-4xl));
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-soft-pink), var(--color-orange), var(--color-yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1.3;
}

/* ===========================
   SECTION: SERVICES - HORIZONTAL SCROLL
   =========================== */
.services-section {
  padding-bottom: var(--space-24);
  background: var(--color-eggshell);
}

.services-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.services-section__intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.9;
  max-width: 750px;
  margin: var(--space-6) auto 0;
}

.services-scroll {
  overflow-x: auto;
  overflow-y: visible;
  padding: var(--space-4) 0 var(--space-8);
  margin-bottom: var(--space-8);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-scroll::-webkit-scrollbar {
  display: none;
}

.services-scroll__track {
  display: flex;
  gap: var(--space-6);
  padding: var(--space-4) var(--space-6);
  width: max-content;
}

.service-card {
  flex-shrink: 0;
  width: 280px;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-soft-pink) 0%, var(--color-rose) 100%);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
}

.service-card__icon--orange {
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-orange) 100%);
}

.service-card__icon--magenta {
  background: linear-gradient(135deg, var(--color-rose) 0%, var(--color-magenta) 100%);
}

.service-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.service-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.service-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.services-section__outro {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.9;
  max-width: 750px;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.services-section__cta {
  text-align: center;
}

/* ===========================
   SECTION: FOUNDERS
   =========================== */
.founders-section {
  background: linear-gradient(180deg, var(--color-eggshell) 0%, rgba(238, 166, 169, 0.12) 100%);
}

.founders-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.founders-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.founders-image-wrapper {
  position: relative;
}

.founders-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-xl);
}

.founders-portraits {
  display: flex;
  gap: var(--space-8);
  justify-content: center;
  margin-bottom: var(--space-8);
}

.founder-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.founder-portrait__placeholder {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-soft-pink), var(--color-eggshell));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.founder-portrait__name {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}

.founders-section__text {
  max-width: 600px;
}

.founders-lead {
  font-size: var(--font-size-xl);
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.founders-section__text p {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.8;
}

.founders-section__text strong {
  color: var(--color-primary);
  font-weight: 600;
}

.founders-stats {
  display: flex;
  gap: var(--space-10);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(165, 36, 64, 0.1);
}

.founders-stat {
  text-align: center;
}

.founders-stat__number {
  display: block;
  font-size: var(--font-size-4xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.founders-stat__label {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

@media (max-width: 1024px) {
  .founders-section__content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .founders-image-wrapper {
    display: flex;
    justify-content: center;
  }

  .founders-stats {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .founders-stats {
    flex-direction: column;
    gap: var(--space-6);
  }
}

/* ===========================
   SECTION: HR MATURITY MODEL
   =========================== */
.maturity-section {
  background: linear-gradient(180deg, #F4EAE0 0%, rgba(238, 166, 169, 0.1) 100%);
}

.maturity-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.maturity-section__intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.9;
  max-width: 700px;
  margin: var(--space-6) auto 0;
}

.maturity-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
}

.maturity-visual {
  max-width: 700px;
  margin: 0 auto;
}

.maturity-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.maturity-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  width: 100%;
}

.maturity-pillar {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(165, 36, 64, 0.1);
  transition: var(--transition-base);
}

.maturity-pillar:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.maturity-pillar__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-5);
  border-radius: 50%;
}

.maturity-pillar__icon--attract {
  background: linear-gradient(135deg, var(--color-primary), var(--color-magenta));
}

.maturity-pillar__icon--develop {
  background: linear-gradient(135deg, var(--color-orange), var(--color-yellow));
}

.maturity-pillar__icon--resilience {
  background: linear-gradient(135deg, var(--color-soft-pink), var(--color-rose));
}

.maturity-pillar__icon--data {
  background: linear-gradient(135deg, var(--color-navy), #5a5f80);
}

.maturity-pillar h4 {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.maturity-pillar p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .maturity-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .maturity-pillars {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   SECTION: WHY WORK WITH US
   =========================== */
.differentiators-section {
  background: linear-gradient(180deg, #FAF5EF 0%, var(--color-eggshell) 100%);
}

.differentiators-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.differentiator {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
}

.differentiator:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.differentiator--full {
  grid-column: span 2;
}

.differentiator__number {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-magenta) 100%);
  color: white;
  font-size: var(--font-size-xl);
  font-weight: 700;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.differentiator__content h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-3);
}

.differentiator__content p {
  font-size: var(--font-size-base);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

.differentiators-summary {
  max-width: 750px;
  margin: var(--space-16) auto 0;
  text-align: center;
  font-size: var(--font-size-xl);
  color: var(--color-text-light);
  line-height: 1.8;
}

.differentiators-summary strong {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .differentiators-grid {
    grid-template-columns: 1fr;
  }

  .differentiator--full {
    grid-column: span 1;
  }
}

/* ===========================
   SECTION: HOW WE DELIVER
   =========================== */
.impact-section {
  background: linear-gradient(180deg, rgba(26, 26, 64, 0.04) 0%, rgba(26, 26, 64, 0.08) 100%);
  position: relative;
}

.impact-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-20);
}

.impact-card {
  text-align: center;
  padding: var(--space-10);
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: var(--transition-base);
}

.impact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-orange));
}

.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.impact-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-6);
  background: linear-gradient(135deg, var(--color-eggshell) 0%, var(--color-soft-pink) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-card__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--color-primary);
}

.impact-card h4 {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-4);
}

.impact-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: var(--space-20);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-magenta) 100%);
  border-radius: var(--radius-3xl);
  color: white;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  transform: rotate(-15deg);
}

.final-cta h2 {
  color: white;
  margin-bottom: var(--space-5);
}

.final-cta p {
  font-size: var(--font-size-xl);
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

.final-cta .btn {
  background: white;
  color: var(--color-primary);
  padding: var(--space-5) var(--space-10);
  font-size: var(--font-size-lg);
}

.final-cta .btn:hover {
  background: var(--color-eggshell);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* ===========================
   SECTION: TESTIMONIALS
   =========================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--color-eggshell) 0%, rgba(238, 166, 169, 0.1) 100%);
}

.testimonials-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-16);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.testimonial-card {
  padding: var(--space-10);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition-base);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
  font-size: var(--font-size-6xl);
  font-weight: 800;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.2;
  margin-bottom: var(--space-4);
}

.testimonial-card__text {
  font-size: var(--font-size-lg);
  color: var(--color-text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-8);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-soft-pink), var(--color-rose));
}

.testimonial-card__author strong {
  display: block;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-card__author span {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--color-navy);
  color: white;
  padding: var(--space-20) 0 var(--space-10);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-16);
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-sm);
  line-height: 1.8;
  max-width: 320px;
  margin-top: var(--space-5);
}

.footer__logo {
  height: 56px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__heading {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-6);
  color: rgba(255, 255, 255, 0.5);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer__links a {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.footer__links a:hover {
  color: var(--color-soft-pink);
  transform: translateX(4px);
}

.footer__bottom {
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
}

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--transition-slower), transform 1s var(--transition-slower);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s var(--transition-slower), transform 1s var(--transition-slower);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s var(--transition-slower), transform 1s var(--transition-slower);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition-slower), transform 0.8s var(--transition-slower);
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* Word reveal animation */
.word-reveal {
  display: inline-block;
}

/* ===========================
   UTILITIES
   =========================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

/* ===========================
   CENTERED HERO LAYOUT
   =========================== */
.hero--centered {
  text-align: center;
  align-items: center;
  justify-content: center;
}

.hero--centered .hero__content {
  max-width: 900px;
  margin: 0 auto;
}

.hero__content--centered {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__content--centered .hero__tagline,
.hero__content--centered .hero__title,
.hero__content--centered .hero__subtitle {
  text-align: center;
  width: 100%;
}

.hero__content--centered .hero__cta {
  justify-content: center;
}

/* ===========================
   PLACEHOLDER STYLING
   =========================== */
.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-12);
  background: linear-gradient(135deg, rgba(165, 36, 64, 0.05) 0%, rgba(227, 115, 55, 0.05) 100%);
  border: 2px dashed var(--color-soft-pink);
  border-radius: var(--radius-xl);
  min-height: 200px;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  opacity: 0.7;
}

.placeholder-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  font-weight: 500;
}

.founders-placeholder {
  min-height: 150px;
  margin: var(--space-4) 0;
}

.maturity-placeholder {
  width: 100%;
  max-width: 600px;
  margin: 0 auto var(--space-10);
}

/* ===========================
   FOUNDERS SECTION - NO IMAGE
   =========================== */
.founders-section__content--no-image {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.founders-section__text--full {
  width: 100%;
}

/* ===========================
   INSIGHTS / BLOG SECTION
   =========================== */
.insights-section {
  background: linear-gradient(180deg, var(--color-eggshell) 0%, rgba(238, 166, 169, 0.15) 100%);
}

.insights-section__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
}

.insights-section__intro {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  line-height: 1.8;
  max-width: 700px;
  margin: var(--space-6) auto 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

@media (max-width: 1024px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .insights-grid {
    grid-template-columns: 1fr;
  }
}

.insight-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.insight-card__category {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-magenta) 100%);
  color: white;
  font-size: var(--font-size-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  align-self: flex-start;
}

.insight-card__title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  line-height: 1.4;
  color: var(--color-text);
}

.insight-card__excerpt {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.insight-card__meta {
  display: flex;
  align-items: center;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(57, 61, 92, 0.1);
}

.insight-card__date {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
  font-style: italic;
}

.insights-section__cta {
  text-align: center;
}

.insights-section__note {
  font-size: var(--font-size-lg);
  color: var(--color-text-light);
  font-style: italic;
}

/* ===========================
   ACCORDION - WHY WORK WITH US
   =========================== */
.accordion-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border: 1px solid rgba(57, 61, 92, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.accordion-item:hover {
  background: linear-gradient(135deg, rgba(238, 166, 169, 0.1), rgba(227, 115, 55, 0.05));
  box-shadow: var(--shadow-lg);
}

.accordion-header {
  padding: var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.accordion-number {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: rgba(165, 36, 64, 0.15);
  transition: color 0.3s;
  flex-shrink: 0;
}

.accordion-item:hover .accordion-number {
  color: var(--color-primary);
}

.accordion-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text);
}

.accordion-content {
  padding: 0 var(--space-8) 0 var(--space-8);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.accordion-item:hover .accordion-content {
  opacity: 1;
  max-height: 200px;
  padding: 0 var(--space-8) var(--space-6) var(--space-8);
}

.accordion-text {
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 900px;
}

/* ===========================
   WHY SECTION - TEXT-ONLY LAYOUT
   =========================== */
.why-section__content--text-only {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.why-section__content--text-only .why-section__text {
  width: 100%;
  text-align: center;
}

/* ===========================
   DIFFERENTIATORS - IMAGE + ACCORDION LAYOUT
   =========================== */
.differentiators-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-12);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.differentiators-image {
  position: sticky;
  top: 120px;
}

.differentiators-image__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (max-width: 1024px) {
  .differentiators-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .differentiators-image {
    position: static;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .differentiators-image {
    max-width: 320px;
  }
}

/* Override accordion max-width when inside differentiators-layout */
.differentiators-layout .accordion-container {
  max-width: none;
  margin: 0;
}

/* ===========================
   HERO ENTRANCE ANIMATIONS
   =========================== */
.hero__title span.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(10px);
}

@keyframes textLoadIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title span.word-reveal:nth-child(1) {
  animation: textLoadIn 0.5s ease-out 0.1s forwards;
}

.hero__title span.word-reveal:nth-child(3) {
  animation: textLoadIn 0.5s ease-out 0.3s forwards;
}

.hero__title span.word-reveal:nth-child(5) {
  animation: textLoadIn 0.5s ease-out 0.5s forwards;
}

/* ===========================
   BUTTON HOVER ANIMATIONS
   =========================== */
.nav__cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(206, 49, 95, 0.3);
}

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

/* --- Tablet (max 1024px) --- */
@media (max-width: 1024px) {
  .nav__logo {
    height: 36px;
  }

  .container {
    padding: 0 var(--space-5);
  }

  section {
    padding: var(--space-20) 0;
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  .founders-section__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .founders-section__text {
    text-align: center;
    order: 2;
  }

  .founders-section__visual {
    order: 1;
    margin-bottom: var(--space-8);
  }
}

/* --- Mobile (max 768px) --- */
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-4);
  }

  section {
    padding: var(--space-16) 0;
  }

  h2 {
    font-size: var(--font-size-2xl);
  }

  h3 {
    font-size: var(--font-size-xl);
  }

  .hero {
    min-height: auto;
    padding: 100px 0 var(--space-12);
  }

  .hero__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero__subtitle {
    font-size: var(--font-size-base);
    line-height: 1.7;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }

  .hero__image-wrapper {
    max-width: 280px;
  }

  /* Section headers */
  .section-label {
    font-size: var(--font-size-xs);
    letter-spacing: 0.2em;
  }

  .why-section__header {
    margin-bottom: var(--space-12);
  }

  /* Service cards */
  .service-card {
    padding: var(--space-6);
  }

  /* Maturity pillars */
  .maturity-pillars {
    gap: var(--space-4);
  }

  /* Contact CTA */
  .contact-cta__title {
    font-size: var(--font-size-2xl);
  }

  /* Footer */
  .footer {
    padding: var(--space-12) 0 var(--space-6);
  }

  .footer__logo {
    height: 48px;
  }
}

/* --- Small phone (max 480px) --- */
@media (max-width: 480px) {
  :root {
    --space-32: 5rem;
    --space-24: 4rem;
    --space-20: 3.5rem;
  }

  .container {
    padding: 0 var(--space-3);
  }

  section {
    padding: var(--space-12) 0;
  }

  .hero {
    padding: 80px 0 var(--space-10);
  }

  .hero__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .hero__subtitle {
    font-size: var(--font-size-sm);
  }

  .hero__tagline {
    font-size: var(--font-size-xs);
  }

  h2 {
    font-size: var(--font-size-xl);
  }

  .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
  }

  /* Accordion */
  .accordion-header {
    padding: var(--space-4) var(--space-5);
    gap: var(--space-4);
  }

  .accordion-title {
    font-size: var(--font-size-base);
  }

  /* Service cards */
  .service-card {
    padding: var(--space-5);
  }

  .service-card__title {
    font-size: var(--font-size-lg);
  }

  /* Impact cards */
  .impact-card {
    padding: var(--space-5);
  }

  /* Insights cards */
  .insight-card__content {
    padding: var(--space-4);
  }

  /* Footer bottom */
  .footer__bottom {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
    font-size: var(--font-size-xs);
  }

  /* Contact CTA */
  .contact-cta {
    padding: var(--space-12) 0;
  }

  .contact-cta__title {
    font-size: var(--font-size-xl);
  }

  .contact-cta__subtitle {
    font-size: var(--font-size-sm);
  }
}