/* ——— HERO ——— */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--red);
  overflow: hidden;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 0;
}

.hero__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__line {
  position: absolute;
  display: block;
  pointer-events: none;
}

.hero__line--h {
  left: 0;
  right: 0;
  top: var(--p);
  height: 2px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1.25px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: center;
}

.hero__line--v {
  top: 0;
  bottom: 0;
  left: var(--p);
  width: 2px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1.25px);
  background-size: 2px 10px;
  background-repeat: repeat-y;
  background-position: center;
}

.hero__watermark {
  position: absolute;
  left: 50%;
  bottom: -14%;
  transform: translateX(-50%) scaleX(1.15);
  width: 130%;
  text-align: center;
  font-size: clamp(14rem, 42vw, 36rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.18);
  line-height: 0.7;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 1;
}

/* ——— NAV & BRAND MARK (reused by testimonial + footer) ——— */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 0 1.25rem;
  animation: fadeDown 0.7s ease both;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__phone {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.nav__menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 4px;
  width: 32px;
}

.nav__menu span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav__menu span:nth-child(1) { width: 70%; margin-left: auto; }
.nav__menu span:nth-child(2) { width: 100%; }
.nav__menu span:nth-child(3) { width: 55%; margin-left: auto; }

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 34rem) minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  column-gap: clamp(3rem, 10vw, 12rem);
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 110px);
  padding: 2rem 0 4rem;
}

.hero__copy {
  text-align: left;
  animation: fadeUp 0.8s 0.15s ease both;
  max-width: 34rem;
}

.hero__copy h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
  text-align: left;
}

.hero__copy p {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  font-weight: 400;
  max-width: 32rem;
  opacity: 0.98;
  margin-bottom: 2.25rem;
  line-height: 1.7;
  text-align: left;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: left;
  transition: gap 0.25s ease;
}

.hero__cta:hover {
  gap: 0.85rem;
}

.hero__visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: floatIn 1s 0.25s ease both;
}

.hero__phone {
  width: min(400px, 100%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
  transform: rotate(-6deg) translateY(1rem);
  transition: transform 0.15s linear;
}

@media (min-width: 1200px) {
  .hero__content {
    grid-template-columns: minmax(0, 36rem) minmax(0, 1fr);
    column-gap: clamp(5rem, 12vw, 14rem);
  }

  .hero__phone {
    width: min(440px, 100%);
  }
}

@media (min-width: 1500px) {
  .hero {
    padding: 0 clamp(2rem, 8vw, 8rem);
  }

  .hero__content {
    max-width: 1480px;
    column-gap: clamp(8rem, 14vw, 18rem);
  }

  .nav {
    max-width: 1480px;
  }
}

@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: left;
    padding-top: 2rem;
    min-height: auto;
    column-gap: 2rem;
  }

  .hero__copy {
    max-width: 36rem;
  }

  .hero__visual {
    order: -1;
    justify-content: center;
  }

  .hero__phone {
    width: min(280px, 70vw);
    transform: rotate(-4deg);
  }
}

@media (max-width: 640px) {
  .nav__phone {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero__copy h1 {
    font-size: 2.15rem;
  }
}
