/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 90px 0 64px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 50%, rgba(242,196,61,.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(74,144,196,.1) 0%, transparent 60%);
}
.hero-stripes {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -50deg,
    rgba(242,196,61,.025) 0px, rgba(242,196,61,.025) 2px,
    transparent 2px, transparent 24px
  );
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 520px; }
.hero-content .tag { margin-bottom: 20px; }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7.5rem);
  color: var(--white);
  line-height: .9;
  margin-bottom: 28px;
  letter-spacing: .01em;
}
.hero-highlight { color: var(--yellow); }
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.65);
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { display: flex; justify-content: center; align-items: center; }
.saucer-wrap { position: relative; width: 100%; max-width: 380px; }
.saucer-svg {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(242,196,61,.15));
  animation: hover 4s ease-in-out infinite;
}
@keyframes hover {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
.beam-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(242,196,61,.5);
  white-space: nowrap;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(242,196,61,.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .5; }
  50% { opacity: 1; }
}

/* ─── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  background: var(--yellow);
  padding: 20px 0;
  border-top: 3px solid var(--yellow-dk);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-icon { font-size: 1.3rem; }
.trust-sep { width: 1px; height: 32px; background: rgba(27,42,69,.2); }

/* ─── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  padding: 32px 28px 28px;
  background: var(--white);
  border-left: 4px solid var(--yellow);
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red);
  transition: letter-spacing var(--transition), color var(--transition);
}
.service-link:hover { letter-spacing: .1em; color: var(--navy); }

/* ─── Why Section ──────────────────────────────────────────── */
.why-section {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(242,196,61,.03) 0, rgba(242,196,61,.03) 2px,
    transparent 2px, transparent 20px
  );
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.why-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* ─── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: var(--gray-lt);
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .trust-inner { justify-content: center; }
  .trust-sep { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
