/* ============================================
   KUSTOOM PROJECTS — Landing Page
   Colors extracted from kustoomprojects.com
   ============================================ */

:root {
  --red: #f91f3a;
  --red-dark: #e73a3a;
  --red-light: #f2295b;
  --magenta: #f90c6d;
  --black: #121212;
  --dark: #1b1b1b;
  --darker: #161616;
  --darkest: #050505;
  --white: #ffffff;
  --off-white: #f9f9f9;
  --gray: #69727d;
  --gray-light: #ddd;
  --gray-muted: #888;
  --red-bg: rgba(249, 31, 58, 0.08);

  --gradient-dark: linear-gradient(107deg, #161616 0%, #050505 100%);
  --gradient-btn: linear-gradient(180deg, #e73a3a 0%, #f2295b 100%);
  --gradient-btn-hover: linear-gradient(180deg, #d42f2f 0%, #e0204f 100%);

  --font-heading: 'Epilogue', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 100px;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

/* Skip to content */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 200;
  font-weight: 600;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section spacing ---- */
.section {
  padding: 96px 0;
}
.section--sm {
  padding: 72px 0;
}

/* ---- Typography ---- */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
}
.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
}
.heading-sm {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
}
.text-lg {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}
.text-body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray);
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.6;
}
.text-xs {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.text-center { text-align: center; }
.text-red { color: var(--red); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient-btn);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--gradient-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 31, 58, 0.3);
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--lg {
  padding: 18px 40px;
  font-size: 1rem;
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--red-bg);
  color: var(--red);
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
}
.nav__logo span {
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--gray);
  margin-left: 6px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
}
.nav__link:hover { color: var(--red); }
.nav__cta { display: none; }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--dark);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
}
.nav__mobile a:hover { color: var(--red); }
.nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__close svg {
  width: 28px;
  height: 28px;
  stroke: var(--dark);
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}
@media (min-width: 769px) {
  .nav__cta { display: inline-flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__subtitle {
  color: var(--gray);
  margin-bottom: 12px;
}
.hero__title {
  margin-bottom: 24px;
}
.hero__title .accent {
  color: var(--red);
}
.hero__desc {
  max-width: 480px;
  margin-bottom: 32px;
}
.hero__video {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  aspect-ratio: 16/9;
  cursor: pointer;
}
.hero__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}
.hero__video:hover .hero__video-overlay {
  background: rgba(0,0,0,0.45);
}
.hero__play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
  box-shadow: 0 8px 32px rgba(249, 31, 58, 0.3);
}
.hero__video:hover .hero__play-btn {
  transform: scale(1.1);
}
.hero__play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  margin-left: 3px;
}
.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tech logos */
.hero__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-light);
}
.hero__logos span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  opacity: 0.5;
  transition: opacity var(--transition);
}
.hero__logos span:hover { opacity: 1; }

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__content { order: 2; }
  .hero__video-wrapper { order: 1; }
  .hero { min-height: auto; padding-top: 100px; }
}

/* ============================================
   THREE PROFILES
   ============================================ */
.profiles {
  background: var(--off-white);
}
.profiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.profile-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.profile-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.profile-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.profile-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}
.profile-card__title {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .profiles__grid { grid-template-columns: 1fr; }
}

/* ============================================
   PROBLEM REFRAME
   ============================================ */
.reframe {
  background: var(--gradient-dark);
  color: var(--white);
  text-align: center;
}
.reframe__title .accent {
  color: var(--red);
}
.reframe__quote {
  font-style: italic;
  max-width: 640px;
  margin: 32px auto 0;
  opacity: 0.75;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  position: relative;
}
.reframe__quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--red);
  opacity: 0.3;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

/* ============================================
   METHODOLOGY
   ============================================ */
.methodology__eyebrow {
  color: var(--red);
  margin-bottom: 12px;
}
.methodology__subtitle {
  max-width: 600px;
  margin: 16px auto 0;
}
.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  position: relative;
}
.phases::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--magenta), var(--red));
  opacity: 0.2;
}
.phase {
  text-align: center;
  position: relative;
}
.phase__circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.phase__number {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.05em;
}
.phase__circle svg {
  width: 28px;
  height: 28px;
  stroke: var(--dark);
  fill: none;
  stroke-width: 1.8;
  margin-top: 2px;
}
.phase__title {
  margin-bottom: 12px;
}
.phase__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .phases { grid-template-columns: 1fr 1fr; }
  .phases::before { display: none; }
}
@media (max-width: 480px) {
  .phases { grid-template-columns: 1fr; }
}

/* ============================================
   BRAND LOGOS
   ============================================ */
.brands__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
  margin-top: 32px;
}
.brand-logo {
  opacity: 0.4;
  filter: grayscale(100%);
  transition: all var(--transition);
}
.brand-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}
.brand-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ============================================
   TECH & PARTNERS
   ============================================ */
.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.partner-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--red);
}
.partner-card__icon svg {
  width: 100%;
  height: 100%;
}
.partner-card__name {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.partner-card__desc {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
}

@media (max-width: 768px) {
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .partners__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.proof {
  background: var(--off-white);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.case-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.case-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--red-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.case-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}
.case-card__title {
  margin-bottom: 16px;
}
.case-card__metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.metric__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 4px;
}
.metric__value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}
.case-card__result {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}

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

/* ============================================
   VIDEO TESTIMONIALS
   ============================================ */
.vid-testimonials {
  background: var(--off-white);
}
.vid-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.vid-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all var(--transition);
}
.vid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.vid-card__video {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--dark);
  cursor: pointer;
  overflow: hidden;
}
.vid-card__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vid-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background var(--transition);
}
.vid-card__video:hover .vid-card__overlay {
  background: rgba(0,0,0,0.45);
}
.vid-card__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vid-card__info {
  padding: 20px 24px;
}
.vid-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}
.vid-card__role {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .vid-testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ============================================
   TEXT TESTIMONIALS
   ============================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.testimonial__icon {
  width: 32px;
  height: 32px;
  color: var(--red);
  opacity: 0.2;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.testimonial__icon svg {
  width: 100%;
  height: 100%;
}
.testimonial-card__text {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--dark);
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--off-white);
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--dark);
}
.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--gray);
  margin-top: 2px;
}

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

/* ============================================
   CLIENT FILTER
   ============================================ */
.filter {
  background: var(--off-white);
}
.filter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.filter-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.filter-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.filter-card__header svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.filter-card--yes .filter-card__header svg {
  stroke: #22c55e;
  fill: none;
  stroke-width: 2;
}
.filter-card--no .filter-card__header svg {
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}
.filter-card__label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.filter-card--yes .filter-card__label { color: #22c55e; }
.filter-card--no .filter-card__label { color: var(--red); }

.filter-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.filter-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.filter-card__item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.filter-card--yes .filter-card__item svg {
  stroke: #22c55e;
  fill: none;
  stroke-width: 2;
}
.filter-card--no .filter-card__item svg {
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
}
.filter-card__item span {
  font-size: 0.9375rem;
  color: var(--gray);
  line-height: 1.6;
}

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

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  background: var(--gradient-dark);
}
.final-cta__card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}
.final-cta__benefits {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  margin: 32px 0;
}
.final-cta__benefits-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.final-cta__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.final-cta__benefit svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  margin-top: 2px;
}
.final-cta__benefit span {
  font-size: 0.9375rem;
  color: var(--gray);
}

@media (max-width: 480px) {
  .final-cta__card { padding: 40px 24px; }
}

/* ============================================
   FAQ
   ============================================ */
.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  transition: color var(--transition);
}
.faq-item__question:hover { color: var(--red); }
.faq-item__chevron {
  width: 20px;
  height: 20px;
  stroke: var(--gray);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-item__chevron {
  transform: rotate(180deg);
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-item__answer {
  max-height: 300px;
}
.faq-item__answer-inner {
  padding: 0 28px 24px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--gray);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gradient-dark);
  color: var(--white);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--red); }
.footer__bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

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

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: all var(--transition);
}
.whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}
.whatsapp svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}
.whatsapp__text {
  display: none;
}
@media (min-width: 640px) {
  .whatsapp__text { display: inline; }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
