/* ============================================
   HOMEPAGE STYLES
   Hero V4, Who We Help V1, Social Proof V1,
   Scenarios V2, Pyramid V1, Services V1,
   Case Studies, CTA V2
   ============================================ */



/* GLOBAL ENHANCEMENTS */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

section {
  position: relative;
}

/* Subtle section dividers */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173,146,134,0.3), transparent);
}

/* HERO V4: Split Layout with Photo - ENHANCED */
.hero {
  min-height: 90vh;
  background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 60%, #0a0a15 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Animated gradient orb */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244,97,34,0.12) 0%, rgba(244,156,34,0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: pulse 8s ease-in-out infinite;
}

/* Secondary ambient glow */
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(111,216,30,0.05) 0%, transparent 60%);
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; }
}

/* Subtle grid pattern overlay */
.hero .container::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  right: -200px;
  bottom: -200px;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero__content { text-align: center; max-width: 800px; margin: 0 auto; }

.hero__logo {
  width: 120px;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  opacity: 0.95;
  filter: drop-shadow(0 4px 12px rgba(244, 97, 34, 0.3));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  margin-bottom: 20px;
  line-height: 1.1;
  text-align: center;
}

.hero h1 span {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brand-orange);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero > .container > div > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__services {
  display: flex;
  gap: 35px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero__services a {
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.hero__services a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
  transition: width 0.4s ease;
}

.hero__services a:hover {
  color: #fff;
}

.hero__services a:hover::after {
  width: 100%;
}

.hero__cta .btn {
  font-size: 1rem;
  padding: 18px 45px;
  box-shadow: 0 8px 30px rgba(244,97,34,0.3), 0 2px 10px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.hero__cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.hero__cta .btn:hover::before {
  left: 100%;
}

/* WHO WE HELP V3: Two-Column with Illustration - ENHANCED */
.who-we-help {
  background: var(--white);
  padding: 120px 0 48px;
  position: relative;
}

.who-we-help .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-we-help__content h2 {
  color: var(--body-brown);
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.who-we-help__content h2 span {
  color: var(--brand-orange);
}

.who-we-help__content > p {
  color: var(--midtone-taupe);
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.8;
}

.who-we-help__list {
  list-style: none;
}

.who-we-help__list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.who-we-help__list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.who-we-help__list-icon {
  width: 40px;
  height: 40px;
  background: var(--background-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.who-we-help__list-icon svg {
  width: 20px;
  height: 20px;
}

.who-we-help__list h4 {
  color: var(--body-brown);
  font-size: 1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.who-we-help__list p {
  color: var(--midtone-taupe);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.who-we-help__visual {
  border-radius: 20px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.who-we-help__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* SOCIAL PROOF V5: Video Testimonial Focus - ENHANCED */
.social-proof {
  background: var(--background-cream);
  padding: 120px 0;
  position: relative;
}

.social-proof .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.social-proof__video {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 20px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}

.social-proof__video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://picsum.photos/800/500') center/cover;
  opacity: 0.3;
}

.social-proof__play {
  width: 80px;
  height: 80px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(244,97,34,0.3);
}

.social-proof__play:hover {
  transform: scale(1.1);
  background: var(--accent-orange);
  box-shadow: 0 12px 35px rgba(244,97,34,0.4);
}

.social-proof__play svg {
  width: 30px;
  height: 30px;
  margin-left: 5px;
}

.social-proof__content h2 {
  color: var(--body-brown);
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.social-proof__content h2 span {
  color: var(--brand-orange);
}

.social-proof__content > p {
  color: var(--midtone-taupe);
  font-size: 1.05rem;
  margin-bottom: 30px;
  line-height: 1.8;
}

.social-proof__stat-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.social-proof__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--brand-orange);
  line-height: 1;
}

.social-proof__stat span {
  color: var(--body-brown);
  font-size: 0.9rem;
}

.social-proof__mini-reviews {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-proof__mini-review {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.social-proof__mini-review:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.social-proof__mini-avatar {
  width: 40px;
  height: 40px;
  background: var(--brand-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(244,97,34,0.25);
}

.social-proof__mini-text {
  flex: 1;
  min-width: 0;
}

.social-proof__mini-text p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--body-brown);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.social-proof__mini-text span {
  font-size: 0.75rem;
  color: var(--midtone-taupe);
}

.social-proof__mini-stars {
  color: #FFB800;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.scenario__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(244,97,34,0.1); border: 2px solid rgba(244,97,34,0.3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.scenario__icon svg { width: 28px; height: 28px; }

/* SCENARIOS V2: Stacked Accordion - ENHANCED */
.scenarios {
  background: linear-gradient(180deg, #fff 0%, #faf8f7 100%);
  padding: 120px 0;
  position: relative;
}

.scenarios .container {
  max-width: 850px;
}

.scenarios__header {
  text-align: center;
  margin-bottom: 60px;
}

.scenarios__header h2 {
  color: var(--body-brown);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.scenarios__accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.scenarios__item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  border: 1px solid rgba(173,146,134,0.08);
}

.scenarios__item:hover {
  box-shadow: 0 8px 35px rgba(0,0,0,0.1);
}

.scenarios__item-header {
  padding: 28px 35px;
  display: flex;
  align-items: center;
  gap: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scenarios__item-header:hover {
  background: rgba(244, 97, 34, 0.03);
}

.scenarios__item-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-orange), var(--accent-orange));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(244,97,34,0.25);
}

.scenarios__item-title {
  flex: 1;
  color: var(--body-brown);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scenarios__item-toggle {
  color: var(--brand-orange);
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scenarios__item.active .scenarios__item-toggle {
  transform: rotate(45deg);
}

.scenarios__item-content {
  padding: 0 35px 35px;
  padding-left: 107px;
}

.scenarios__item-content p {
  color: var(--midtone-taupe);
  margin-bottom: 22px;
  line-height: 1.8;
}

.scenarios__item-content a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-orange);
  font-weight: 500;
  transition: gap 0.3s ease;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* PYRAMID SECTION — Centered layout */
.pyramid {
  background: linear-gradient(180deg, var(--background-cream) 0%, #f0e9e5 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}

.pyramid__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 36px;
}

.pyramid__header h2 {
  color: var(--body-brown);
  margin-bottom: 16px;
  font-size: 2.5rem;
}

.pyramid__header h2 span {
  color: var(--brand-orange);
  position: relative;
}

.pyramid__header h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(244,97,34,0.15);
  z-index: -1;
}

.pyramid__header p {
  color: var(--midtone-taupe);
  font-size: 1.1rem;
  line-height: 1.7;
}

.pyramid__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pyramid__visual {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.pyramid__visual img {
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.1));
}

.pyramid__descriptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 900px;
}

.pyramid__desc {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.pyramid__desc-number {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 1px;
}

/* Colors matched to house diagram layers */
.pyramid__desc-number--1 { background: var(--brand-orange); }
.pyramid__desc-number--2 { background: #5a8f3c; }
.pyramid__desc-number--3 { background: #c47a2a; }
.pyramid__desc-number--4 { background: var(--body-brown); }

.pyramid__desc-body h4 {
  color: var(--body-brown);
  font-size: 0.95rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.pyramid__desc-body p {
  color: var(--midtone-taupe);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.6;
}

/* SERVICES V1: 3x2 Card Grid - ENHANCED */
.services {
  background: linear-gradient(180deg, #fff 0%, #faf8f7 100%);
  padding: 120px 0;
  position: relative;
}

.services__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 70px;
}

.services__header h2 {
  color: var(--body-brown);
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.services__header h2 span {
  color: var(--brand-orange);
  position: relative;
}

.services__header h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(244,97,34,0.15);
  z-index: -1;
}

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

.services__card {
  background: #fff;
  border-radius: 20px;
  padding: 38px 32px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(173,146,134,0.1);
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.services__card .services__card-link { margin-top: auto; }

.services__card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-orange), var(--accent-orange));
  border-radius: 4px 4px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(244,97,34,0.10), 0 6px 20px rgba(0,0,0,0.06);
}

.services__card:hover::after {
  opacity: 1;
}

.services__card-icon {
  width: 115px;
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.services__card:hover .services__card-icon {
  transform: none;
}

.services__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.services__card h3 {
  color: var(--body-brown);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.services__card p {
  color: var(--midtone-taupe);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

.services__card-link {
  color: var(--brand-orange);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services__card-link:hover {
  gap: 12px;
}

/* CTA V2: Split with Form and Benefits - ENHANCED */
.cta {
  background: linear-gradient(180deg, #0a0a15 0%, #1a1a2e 100%);
  padding: 120px 0;
  padding-top: 100px;
  border-top: 4px solid #FF6B35;
  position: relative;
  overflow: hidden;
}

/* Decorative background element */
.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(111,216,30,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.cta__content h2 {
  color: #fff;
  margin-bottom: 22px;
  font-size: 2.5rem;
}

.cta__content h2 span {
  color: var(--brand-orange);
  position: relative;
}

.cta__content h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(244,97,34,0.15);
  z-index: -1;
}

.cta__content > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 35px;
  line-height: 1.8;
}

.cta__benefits {
  list-style: none;
}

.cta__benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.9);
  font-size: 1.02rem;
}

.cta__benefits li::before {
  content: '\2713';
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, rgba(111,216,30,0.15) 0%, rgba(111,216,30,0.05) 100%);
  color: var(--cta-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
  flex-shrink: 0;
}

.cta__form {
  background: #fff;
  border-radius: 24px;
  padding: 45px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 8px 25px rgba(0,0,0,0.05);
  position: relative;
}

/* Subtle gradient border effect */
.cta__form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--brand-orange), var(--accent-orange), var(--cta-green));
  border-radius: 24px 24px 0 0;
}

.cta__form h3 {
  color: var(--body-brown);
  font-size: 1.4rem;
  margin-bottom: 28px;
  text-align: center;
}

.cta__form-group {
  margin-bottom: 22px;
}

.cta__form-group label {
  display: block;
  color: var(--body-brown);
  font-size: 0.9rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.cta__form-group input,
.cta__form-group select {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(173,146,134,0.15);
  border-radius: 12px;
  font-size: 1rem;
  background: #faf8f7;
  transition: all 0.3s ease;
}

.cta__form-group input:focus,
.cta__form-group select:focus {
  outline: none;
  border-color: var(--brand-orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(244,97,34,0.1);
}

.cta__form-group input::placeholder {
  color: rgba(173,146,134,0.6);
}

.cta__form-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, var(--brand-orange), var(--accent-orange));
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(244,97,34,0.3);
  position: relative;
  overflow: hidden;
}

.cta__form-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cta__form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(111,216,30,0.4);
}

.cta__form-btn:hover::before {
  left: 100%;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

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

/* --- Tablet (<=992px) --- */
@media (max-width: 992px) {
  /* Reduce section padding globally */
  .hero,
  .who-we-help,
  .social-proof,
  .scenarios,
  .pyramid,
  .services,
  .cta {
    padding: 80px 0;
  }

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

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

  .hero h1 span {
    font-size: 0.85rem;
    letter-spacing: 4px;
  }

  /* Stack who-we-help */
  .who-we-help .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .who-we-help__visual {
    height: 350px;
    order: -1;
  }

  /* Stack social proof */
  .social-proof .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Reduce heading sizes */
  .who-we-help__content h2,
  .social-proof__content h2,
  .scenarios__header h2,
  .pyramid__header h2,
  .services__header h2,
  .cta__content h2 {
    font-size: 2rem;
  }

  /* Pyramid — tighter on tablet */
  .pyramid__header {
    margin-bottom: 28px;
  }

  .pyramid__visual {
    margin-bottom: 30px;
  }

  .pyramid__visual img {
    max-width: 340px;
  }

  .pyramid__descriptions {
    gap: 12px;
  }

  /* 2-col services on tablet */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Stack CTA */
  .cta .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta__form {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- Mobile (<=768px) --- */
@media (max-width: 768px) {
  .hero,
  .who-we-help,
  .social-proof,
  .scenarios,
  .pyramid,
  .services,
  .cta {
    padding: 60px 0;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 50px;
  }

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

  .hero__services {
    gap: 12px;
    justify-content: center;
  }

  .hero__services a {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 30px;
  }

  /* Who we help - tighter on mobile */
  .who-we-help {
    padding-bottom: 40px;
  }

  .who-we-help__visual {
    height: 280px;
  }

  .who-we-help__content > p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  /* Social proof stat row */
  .social-proof__stat-row {
    gap: 25px;
  }

  .social-proof__stat strong {
    font-size: 2rem;
  }

  /* Scenarios accordion */
  .scenarios__item-header {
    padding: 20px;
    gap: 14px;
  }

  .scenarios__item-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    border-radius: 10px;
  }

  .scenarios__item-title {
    font-size: 0.92rem;
  }

  .scenarios__item-content {
    padding: 0 20px 25px;
    padding-left: 20px;
  }

  /* Pyramid — single column cards on mobile */
  .pyramid__header {
    margin-bottom: 20px;
  }

  .pyramid__visual {
    margin-bottom: 24px;
  }

  .pyramid__visual img {
    max-width: 280px;
  }

  .pyramid__descriptions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pyramid__desc {
    padding: 16px 18px;
    gap: 12px;
  }

  .pyramid__desc-number {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  .pyramid__desc-body p {
    font-size: 0.88rem;
  }

  /* Services grid - single column */
  .services__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services__card {
    padding: 28px 24px;
  }

  .services__card-icon {
    width: 80px;
    height: 80px;
  }

  .services__header {
    margin-bottom: 40px;
  }

  /* CTA form */
  .cta .container {
    gap: 40px;
  }

  .cta__form {
    padding: 30px 24px;
    border-radius: 18px;
  }

  .cta__form h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .cta__form-group {
    margin-bottom: 16px;
  }

  .cta__content h2 {
    font-size: 1.8rem;
  }

  .cta__content > p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .cta__benefits li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  /* Logo cloud — 4 per row on mobile */
  .logo-cloud-section {
    padding: 28px 10px;
  }

  .logo-cloud-header {
    margin-bottom: 16px;
  }

  .logo-cloud-label {
    font-size: 0.72rem;
    letter-spacing: 1.4px;
  }

  .logo-cloud {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 100%;
  }

  .cloud-item {
    width: auto;
    height: 48px;
    padding: 6px 4px;
    border-radius: 5px;
  }

  .cloud-item img {
    max-width: 64px;
    max-height: 34px;
  }

  /* Pyramid — tighter on large mobile */
  .pyramid__visual img {
    max-width: 260px;
  }
}

/* --- Small mobile (<=480px) --- */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero h1 span {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }

  .hero > .container > div > p {
    font-size: 0.95rem;
  }

  .who-we-help__visual {
    height: 220px;
  }

  .who-we-help__content h2,
  .social-proof__content h2,
  .scenarios__header h2,
  .pyramid__header h2,
  .services__header h2,
  .cta__content h2 {
    font-size: 1.6rem;
  }

  .social-proof__stat-row {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .pyramid__visual img {
    max-width: 240px;
  }

  .pyramid__desc {
    padding: 14px 16px;
    gap: 10px;
  }

  .pyramid__desc-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    border-radius: 7px;
  }

  .pyramid__desc-body h4 {
    font-size: 0.88rem;
    margin-bottom: 3px;
  }

  .pyramid__desc-body p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .cta__form {
    padding: 24px 18px;
  }
}

/* LOGO CLOUD — MAGNETIC HOVER */
.logo-cloud-section {
  background: var(--background-cream, #faf8f6);
  padding: 70px 40px;
  border-top: 1px solid rgba(173,146,134,0.12);
  border-bottom: 1px solid rgba(173,146,134,0.12);
}
.logo-cloud-header {
  text-align: center;
  margin-bottom: 36px;
}
.logo-cloud-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--midtone-taupe, #8a7060);
}
.logo-cloud {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cloud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 56px;
  padding: 8px 6px;
  border-radius: 6px;
  border: 1px solid #c8bfb5;
  background: #e8e2db;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
  will-change: transform;
}
.cloud-item img {
  max-width: 74px;
  max-height: 40px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter 0.2s;
}

/* PARTNER SPOTLIGHT — Two-column layout */
.partner-spotlight {
  background: var(--background-cream, #faf8f6);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.partner-spotlight .container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.partner-spotlight__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-orange);
  margin-bottom: 14px;
  font-weight: 600;
}

.partner-spotlight__content h2 {
  color: var(--body-brown);
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.partner-spotlight__content h2 span {
  color: var(--brand-orange);
  position: relative;
}

.partner-spotlight__content h2 span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(244,97,34,0.15);
  z-index: -1;
}

.partner-spotlight__content p {
  color: var(--midtone-taupe);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
}

.partner-spotlight__content p a {
  color: var(--brand-orange);
  text-decoration: underline;
  text-decoration-color: rgba(244,97,34,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.3s ease;
  font-weight: 500;
}

.partner-spotlight__content p a:hover {
  text-decoration-color: var(--brand-orange);
}

.partner-spotlight__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-orange);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.partner-spotlight__cta:hover {
  gap: 12px;
}

.partner-spotlight__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(173,146,134,0.12);
}

.partner-spotlight__visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.08);
}

.partner-spotlight__visual a {
  display: block;
  line-height: 0;
}

.partner-spotlight__visual img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .partner-spotlight {
    padding: 80px 0;
  }
  .partner-spotlight .container {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .partner-spotlight__content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .partner-spotlight {
    padding: 60px 0;
  }
  .partner-spotlight__content h2 {
    font-size: 1.6rem;
  }
  .partner-spotlight__content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .partner-spotlight__content h2 {
    font-size: 1.4rem;
  }
}

/* Logo cloud responsive — must come AFTER base styles */
@media (max-width: 992px) {
  .logo-cloud-section {
    padding: 36px 12px;
  }
  .logo-cloud {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-width: 100%;
  }
  .cloud-item {
    width: auto;
    height: 52px;
    padding: 6px 4px;
  }
}
@media (max-width: 768px) {
  .logo-cloud-section {
    padding: 28px 10px;
  }
  .logo-cloud-header {
    margin-bottom: 16px;
  }
  .logo-cloud-label {
    font-size: 0.72rem;
    letter-spacing: 1.4px;
  }
  .logo-cloud {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 100%;
  }
  .cloud-item {
    width: auto;
    height: 48px;
    padding: 6px 4px;
    border-radius: 5px;
  }
  .cloud-item img {
    max-width: 100%;
    max-height: 34px;
  }
}
