/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --yellow: #fff000;
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-600: #666666;
  --gray-800: #1a1a1a;
  --gray-900: #0d0d0d;
  --font: 'Cocogoose', 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Courier New', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-mono);
  font-weight: 400;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.hero__title, .section-title, .service-card__title,
.why__item h3, .process__step h3, .cta-box h2,
.faq__question {
  font-family: var(--font);
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  color: var(--black);
  background: var(--yellow);
  padding: 0 8px;
  display: inline;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--black);
}

.btn--primary:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn--outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

/* ===== HEADER (floating glass) ===== */
.header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1100px;
  z-index: 1000;
  transition: var(--transition);
}

.header--scrolled .nav {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 60px;
  padding: 0 12px 0 24px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: var(--transition);
}

.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 8px;
}

.nav__link {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: var(--transition);
}

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

.nav__cta {
  background: var(--black);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  transition: var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--yellow);
  color: var(--black);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
}

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

.hero__picture,
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero__photo {
  object-fit: cover;
  object-position: center 30%;
}

@media (min-width: 769px) {
  .hero__photo {
    object-position: center center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.78) 30%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.2) 100%);
  pointer-events: none;
}

/* Binary code masked to person silhouette */
.hero__binary {
  --mx: -200px;
  --my: -200px;
  position: absolute;
  inset: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.35;
  color: var(--yellow);
  letter-spacing: 1px;
  word-break: break-all;
  white-space: pre-wrap;
  padding: 0;
  opacity: 0.2;
  pointer-events: auto;
  user-select: none;
  text-shadow: 0 0 4px rgba(255,240,0,0.85), 0 0 10px rgba(255,240,0,0.4);
  overflow: hidden;
  -webkit-mask-image: url('assets/hero-person-mask.png');
  mask-image: url('assets/hero-person-mask.png');
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: center 30%;
  mask-position: center 30%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Spotlight layer: extra 0.6 brightness following cursor with 45px falloff.
   Combined with the base 0.2 it reaches 0.8 right under the pointer
   and fades back to 0.2 at the edge of the 45px radius. */
.hero__binary--spot {
  opacity: 0.6;
  pointer-events: none;
  -webkit-mask-image:
    url('assets/hero-person-mask.png'),
    radial-gradient(circle 45px at var(--mx) var(--my), #000 0%, rgba(0,0,0,0) 100%);
  mask-image:
    url('assets/hero-person-mask.png'),
    radial-gradient(circle 45px at var(--mx) var(--my), #000 0%, rgba(0,0,0,0) 100%);
  -webkit-mask-size: cover, 100% 100%;
  mask-size: cover, 100% 100%;
  -webkit-mask-position: center 30%, 0 0;
  mask-position: center 30%, 0 0;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

@media (min-width: 769px) {
  .hero__binary {
    -webkit-mask-image: url('assets/hero-person-desktop-mask.png');
    mask-image: url('assets/hero-person-desktop-mask.png');
    -webkit-mask-position: center center;
    mask-position: center center;
  }
  .hero__binary--spot {
    -webkit-mask-image:
      url('assets/hero-person-desktop-mask.png'),
      radial-gradient(circle 45px at var(--mx) var(--my), #000 0%, rgba(0,0,0,0) 100%);
    mask-image:
      url('assets/hero-person-desktop-mask.png'),
      radial-gradient(circle 45px at var(--mx) var(--my), #000 0%, rgba(0,0,0,0) 100%);
    -webkit-mask-position: center center, 0 0;
    mask-position: center center, 0 0;
  }
}

/* Sweep effect — same mask, narrow column moving left to right */
.hero__sweep {
  position: absolute;
  inset: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 1px;
  color: var(--yellow);
  word-break: break-all;
  white-space: pre-wrap;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 0 6px rgba(255,240,0,1), 0 0 14px rgba(255,240,0,0.6);
  overflow: hidden;
  -webkit-mask-image: url('assets/hero-person-mask.png'), linear-gradient(90deg, transparent 0%, transparent 40%, #000 50%, transparent 60%, transparent 100%);
  mask-image: url('assets/hero-person-mask.png'), linear-gradient(90deg, transparent 0%, transparent 40%, #000 50%, transparent 60%, transparent 100%);
  -webkit-mask-size: cover, 200% 100%;
  mask-size: cover, 200% 100%;
  -webkit-mask-position: center 30%, -100% 0%;
  mask-position: center 30%, -100% 0%;
  -webkit-mask-repeat: no-repeat, no-repeat;
  mask-repeat: no-repeat, no-repeat;
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

@media (min-width: 769px) {
  .hero__sweep {
    -webkit-mask-image: url('assets/hero-person-desktop-mask.png'), linear-gradient(90deg, transparent 0%, transparent 40%, #000 50%, transparent 60%, transparent 100%);
    mask-image: url('assets/hero-person-desktop-mask.png'), linear-gradient(90deg, transparent 0%, transparent 40%, #000 50%, transparent 60%, transparent 100%);
    -webkit-mask-position: center center, -100% 0%;
    mask-position: center center, -100% 0%;
  }
}

.hero.is-sweeping .hero__sweep {
  animation: heroSweep 0.9s ease-out forwards;
}

@keyframes heroSweep {
  0% {
    -webkit-mask-position: center 30%, -100% 0%;
    mask-position: center 30%, -100% 0%;
    opacity: 0.3;
  }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% {
    -webkit-mask-position: center 30%, 100% 0%;
    mask-position: center 30%, 100% 0%;
    opacity: 0.3;
  }
}

@media (min-width: 769px) {
  @keyframes heroSweep {
    0% {
      -webkit-mask-position: center center, -100% 0%;
      mask-position: center center, -100% 0%;
      opacity: 0.3;
    }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% {
      -webkit-mask-position: center center, 100% 0%;
      mask-position: center center, 100% 0%;
      opacity: 0.3;
    }
  }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  color: var(--white);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 2px solid var(--black);
}

.hero__badge::before {
  content: '//';
  font-weight: 700;
}

.hero__title {
  font-size: clamp(2.5rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.hero__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--outline {
  color: var(--white);
  border-color: var(--white);
}

.hero .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.hero .btn--outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* ===== STATS ===== */
.stats {
  background: var(--black);
  padding: 48px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__number {
  display: block;
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stats__label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-300);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 2px solid var(--black);
}

.section-tag::before {
  content: '//';
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 2px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}

.service-card:hover {
  border-color: var(--black);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-card--featured {
  border-color: var(--yellow);
  background: var(--black);
  color: var(--white);
}

.service-card--featured:hover {
  border-color: var(--yellow);
}

.service-card--featured .service-card__text {
  color: var(--gray-300);
}

.service-card--featured .service-card__list li {
  color: var(--gray-300);
}

.service-card--featured .service-card__list li::before {
  color: var(--yellow);
}

.service-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--yellow);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card--featured .service-card__icon {
  color: var(--yellow);
}

.service-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card__text {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card__list li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}

.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--black);
  font-weight: 700;
}

/* ===== WHY US ===== */
.why {
  padding: 100px 0;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.why__item {
  padding: 36px;
  border-radius: var(--radius);
  border: 2px solid var(--gray-200);
  transition: var(--transition);
}

.why__item:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.why__number {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 2px var(--black);
  letter-spacing: -0.02em;
}

.why__item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.why__item p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== PROCESS ===== */
.process {
  padding: 100px 0;
  background: var(--gray-100);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process__step {
  text-align: center;
  position: relative;
  padding: 32px 20px;
}

.process__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--black);
}

.process__icon svg {
  width: 32px;
  height: 32px;
}

.process__number {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.process__step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.process__step p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
  background: var(--white);
}

.cta-box {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: 'FAH!';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(255, 240, 0, 0.04);
  pointer-events: none;
  white-space: nowrap;
}

.cta-box h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  line-height: 1.3;
}

.cta-box__logo {
  display: inline-block;
  height: 0.95em;
  width: auto;
  vertical-align: -0.05em;
  margin: 0 4px;
  transform: rotate(-4deg);
  transition: var(--transition);
}

.cta-box h2:hover .cta-box__logo {
  transform: rotate(4deg) scale(1.05);
}

.cta-box p {
  font-size: 1rem;
  color: var(--gray-300);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.7;
}

.cta-box .btn {
  position: relative;
}

/* CTA FORM */
.cta-form {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-form__textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  resize: vertical;
  min-height: 120px;
  transition: var(--transition);
}

.cta-form__textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.cta-form__textarea:focus {
  outline: none;
  border-color: var(--yellow);
  background: rgba(255,255,255,0.08);
}

.cta-form button {
  align-self: center;
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq__item[open] {
  border-color: var(--yellow);
}

.faq__question {
  padding: 20px 24px;
  font-weight: 400;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq__item[open] .faq__question::after {
  transform: rotate(45deg);
  color: var(--yellow);
}

.faq__question:hover {
  background: var(--gray-100);
}

.faq__answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: var(--yellow);
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--yellow);
}

.footer__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  margin-bottom: 8px;
}

.footer__whatsapp:hover {
  color: var(--yellow);
}

.footer__whatsapp svg {
  color: var(--yellow);
}

.footer__contact p {
  font-size: 0.9rem;
  color: var(--gray-300);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}

.footer__bottom p {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gray-600);
  letter-spacing: 0.02em;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .header {
    top: 12px;
    width: calc(100% - 20px);
  }

  .nav {
    height: 56px;
    padding: 0 8px 0 18px;
  }

  .nav__logo img {
    height: 30px;
  }

  .nav__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 24px;
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    margin: 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  }

  .nav__menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__cta {
    padding: 8px 16px;
    font-size: 0.72rem;
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }

  .hero {
    padding: 120px 0 60px;
    min-height: 90vh;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero__photo {
    object-position: 70% 30%;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.85) 100%);
  }

  .hero__text {
    max-width: 100%;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .process__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

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

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

  .stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .process__grid {
    grid-template-columns: 1fr;
  }

  .cta-box::before {
    font-size: 8rem;
  }
}
