
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(50px, 8vw, 100px);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  top: var(--hero-top-gap, 14px);
  inset-inline: 14px;
  bottom: 14px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  will-change: transform;
}
.hero__video { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); background: url('assets/images/hero-poster.svg') center/cover no-repeat; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(48, 102, 153, 0.15) 0%, rgba(48, 102, 153, 0.55) 65%, rgba(48, 102, 153, 0.92) 100%),
    linear-gradient(90deg, rgba(48, 102, 153, 0.55), transparent 60%);
  backdrop-filter: blur(1.5px);
}
.hero__glow {
  position: absolute; inset: -20%;
  background: radial-gradient(35% 40% at 75% 25%, rgba(48, 102, 153, 0.35), transparent 70%);
  animation: hero-drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes hero-drift { from { transform: translate(0,0) scale(1); } to { transform: translate(-4%, 3%) scale(1.08); } }

.hero__content { position: relative; z-index: 2; max-width: 1500px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: rgba(48, 102, 153, 0.14); border: 1px solid rgba(48, 102, 153, 0.35);
  color: var(--blue-300); font-weight: 700; font-size: 0.8rem; margin-bottom: 22px;
}
.hero__title { font-size: clamp(2.6rem, 5vw, 2.4rem); line-height: 1.15; color: var(--white); margin-bottom: 22px; }
.hero__title span { background: linear-gradient(120deg, var(--blue-300), var(--blue-500)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__desc { font-size: clamp(0.5rem, 1.2vw, 1.15rem); color: var(--text-secondary); max-width: 520px; margin-bottom: 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll-hint { position: absolute; bottom: 24px; inset-inline-start: 50%; transform: translateX(50%); z-index: 2; }
.hero__scroll-hint span { display: block; width: 26px; height: 42px; border: 2px solid rgba(255, 253, 247, 0.5); border-radius: 20px; position: relative; }
.hero__scroll-hint span::before { content:''; position:absolute; top: 8px; inset-inline-start: 32%; width: 4px; height: 8px; background: var(--blue-300); border-radius: 3px; transform: translateX(-50%); animation: scrollhint 1.8s infinite; }
@keyframes scrollhint { 0% { opacity:1; top:8px;} 70% { opacity:0; top:22px;} 100% { opacity:0; top:8px;} }

@media (max-width: 640px) {
  .hero { align-items: flex-end; padding-bottom: 60px; }
  .hero__media { --hero-top-gap: 180px; inset-inline: 15px; bottom: 10px; border-radius: var(--radius-md); }
  .hero__scroll-hint { display: none; }
}


.usp-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 10px; position: relative; z-index: 3;
}
.usp {
  display: flex; align-items: center; gap: 14px;
  padding: 20px; border-radius: var(--radius-md);
  background: var(--glass-fill-strong); border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
}
.usp svg { width: 30px; height: 30px; color: var(--blue-300); flex-shrink: 0; }
.usp h4 { font-size: 0.95rem; margin-bottom: 3px; }
.usp p { font-size: 0.8rem; color: var(--text-secondary); }
@media (max-width: 980px) { .usp-strip { grid-template-columns: repeat(2, 1fr); margin-top: 24px; } }
@media (max-width: 480px) {
  .usp-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .usp { padding: 14px; gap: 10px; }
  .usp svg { width: 24px; height: 24px; }
  .usp h4 { font-size: 0.82rem; }
  .usp p { font-size: 0.72rem; }
}


.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.story__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.story__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.story__badge {
  position: absolute; bottom: 20px; inset-inline-start: 20px;
  padding: 16px 22px; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: flex-start;
}
.story__badge strong { font-family: var(--font-num); font-size: 1.6rem; color: var(--blue-300); }
.story__badge span { font-size: 0.8rem; color: var(--text-secondary); }
.story__text h2 { font-size: clamp(1.7rem, 3.5vw, 2.3rem); margin-bottom: 18px; }
.story__text > p { color: var(--text-secondary); margin-bottom: 22px; }
.story__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.story__list li { position: relative; padding-inline-start: 28px; color: var(--text-secondary); font-size: 0.95rem; }
.story__list li::before { content: '✓'; position: absolute; inset-inline-start: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(48, 102, 153, 0.2); color: var(--blue-300); font-size: 0.72rem; display: flex; align-items: center; justify-content: center; }
@media (max-width: 900px) { .story__grid { grid-template-columns: 1fr; gap: 34px; } }


.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 30px 20px; border-radius: var(--radius-md);
  text-align: center; font-weight: 700;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.contact-card:hover { transform: translateY(-6px); border-color: rgba(48, 102, 153, 0.45); }
.contact-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFFDF7; }
.contact-icon svg { width: 24px; height: 24px; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (max-width: 480px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .contact-card { padding: 16px 8px; gap: 8px; font-size: 0.78rem; }
  .contact-icon { width: 40px; height: 40px; }
  .contact-icon svg { width: 18px; height: 18px; }
}

#featured .section-head h2,
#featured .section-head p { color: var(--glass-fill); }

.story .story__text > p,
.story .story__list li { color: var(--glass-fill); }

#contact-section .section-head h2 { color: var(--glass-fill); }
