/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,31,58,0.4) 0%,
    rgba(11,31,58,0.6) 40%,
    rgba(11,31,58,0.92) 80%,
    rgba(11,31,58,1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 160px;
  padding-bottom: 100px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.15);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(44px, 6vw, 82px);
  color: var(--white);
  line-height: 1.02;
  margin-bottom: 24px;
  font-weight: 800;
}

.gold-word { color: var(--gold); }

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

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

.hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(212,168,67,0.25);
  display: flex;
  align-items: center;
  padding: 28px 48px;
}

.hero-stats .h-stat {
  flex: 1;
  padding: 0 32px;
}

.hero-stats .h-stat:first-child { padding-left: 0; }

.hero-stats .h-stat strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stats .h-stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  max-width: 200px;
  display: block;
}

.h-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ===================== INTRO STRIP ===================== */
.intro-strip {
  background: var(--gold);
  padding: 32px 48px;
}

.intro-inner { max-width: 1200px; margin: 0 auto; }

.intro-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  text-align: center;
}

.intro-text em {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===================== PROBLEM SECTION ===================== */
.problem-section {
  padding: 96px 48px;
  background: var(--cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.problem-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left { padding-top: 8px; }

.problem-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===================== PROCESS SECTION ===================== */
.process-section {
  padding: 96px 48px;
  background: var(--navy);
}

.process-header {
  text-align: center;
  margin-bottom: 64px;
}

.process-header .section-subtitle {
  margin: 0 auto;
  color: rgba(255,255,255,0.65);
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  padding: 36px 28px;
  transition: background 0.3s;
}

.process-step:hover { background: rgba(255,255,255,0.07); }

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
}

.step-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.process-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}

.process-arrow {
  font-size: 28px;
  color: var(--gold);
  padding: 0 16px;
  padding-top: 60px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===================== GALLERY ===================== */
.gallery-section {
  padding: 96px 48px;
  background: var(--white);
}

.gallery-header {
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  height: 500px;
}

.gallery-item {
  overflow: hidden;
  background: #1a3a5c;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item.tall { grid-row: span 1; }

.gallery-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-col .gallery-item { flex: 1; }

/* ===================== CTA BAND ===================== */
.cta-band {
  padding: 80px 48px;
  background: linear-gradient(135deg, #0B1F3A 0%, #1a3a5c 100%);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,67,0.15) 0%, transparent 60%);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .hero-content { padding: 0 24px; padding-top: 140px; padding-bottom: 80px; }
  .hero-stats { flex-direction: column; gap: 24px; padding: 28px 24px; }
  .h-stat-divider { width: 60px; height: 1px; }
  .hero-stats .h-stat { padding: 0; }
  .intro-strip { padding: 24px; }
  .problem-section { padding: 64px 24px; }
  .problem-section .container { grid-template-columns: 1fr; gap: 48px; }
  .process-section { padding: 64px 24px; }
  .process-steps { flex-direction: column; gap: 16px; }
  .process-arrow { display: none; }
  .gallery-section { padding: 64px 24px; }
  .gallery-grid { height: auto; grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 200px; }
  .gallery-col { flex-direction: row; }
  .cta-band { padding: 64px 24px; }
}
