/* ── Home Page CSS ── */

/* Hero */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(27,154,170,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,.07) 0%, transparent 45%);
}
/* subtle grid texture */
.hero-bg::after {
  content:'';
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.hero-text h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-text .lead { color: rgba(255,255,255,.72); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero form card */
.hero-form-wrap {
  position: relative;
}
.hero-form-wrap::before {
  content:'';
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), transparent 60%);
  z-index: -1;
}
.hero-form {
  background: #0f2236;
  border: 1px solid rgba(27,154,170,.2);
  border-radius: 12px;
  padding: 36px;
}
.hero-form h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.hero-form input,
.hero-form textarea {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--white);
}
.hero-form input::placeholder,
.hero-form textarea::placeholder { color: rgba(255,255,255,.3); }
.hero-form input:focus,
.hero-form textarea:focus {
  background: rgba(255,255,255,.09);
  border-color: var(--teal);
}
.hero-form label { color: rgba(255,255,255,.7); }

/* Why grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-frame {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3550 100%);
  border-radius: 16px;
  height: 420px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/team3.png') center/cover;
  opacity: .35;
}
.why-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 60%);
}
.why-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 2;
  background: var(--gold);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-badge-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.why-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em;
}

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

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, #0d1b2a 0%, #0e2b38 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27,154,170,.12) 0%, transparent 70%);
}

@media (max-width: 1000px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-wrap { max-width: 500px; }
}
@media (max-width: 800px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-image-frame { height: 280px; }
  .services-grid { grid-template-columns: 1fr; }
}
