.contact-actions {
  gap: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.9rem 1.4rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--royal-600), var(--navy-800));
  box-shadow: 0 18px 30px rgba(17, 48, 109, 0.22);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  box-shadow: 0 22px 36px rgba(17, 48, 109, 0.3);
}

.btn--secondary,
.btn--ghost {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 48, 109, 0.12);
}

.btn--secondary:hover,
.btn--ghost:hover,
.btn--secondary:focus-visible,
.btn--ghost:focus-visible {
  background: var(--white);
  box-shadow: 0 18px 30px rgba(11, 31, 77, 0.08);
}

.btn--large {
  min-height: 54px;
  padding-inline: 1.65rem;
}

.btn--full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid rgba(11, 31, 77, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--navy-900);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__grid,
.about-grid,
.services-grid,
.contact-layout,
.footer__grid,
.value-layout {
  display: grid;
  gap: 1.5rem;
}

.hero__grid {
  position: relative;
  width: 100vw;
  min-height: clamp(240px, 34vh, 300px);
  margin-left: calc(50% - 50vw);
  grid-template-columns: 1fr;
  align-items: stretch;
}

.hero__copy,
.hero-card {
  grid-area: 1 / 1;
}

.hero__copy h1 {
  max-width: 11ch;
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  margin-bottom: 0.55rem;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding: 1rem 0 0.2rem;
  align-self: center;
}

.hero__lead {
  max-width: 680px;
  margin: 0;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
}

.hero-slider {
  position: relative;
  min-height: 150px;
}

.hero-slide {
  display: none;
  min-height: 0;
  animation: heroFade 0.45s ease;
}

.hero-slide.is-active {
  display: block;
}

.hero-slide__eyebrow {
  display: inline-flex;
  margin-bottom: 0.45rem;
  padding: 0.42rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(6, 18, 44, 0.22), rgba(46, 216, 255, 0.2));
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.hero-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0;
}

.hero-tab {
  min-height: 46px;
  padding: 0.68rem 0.95rem;
  border: 1px solid rgba(17, 48, 109, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--navy-900);
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-tab:hover,
.hero-tab:focus-visible,
.hero-tab.is-active {
  transform: translateY(-2px);
  border-color: rgba(46, 216, 255, 0.42);
  background: linear-gradient(135deg, rgba(11, 31, 77, 0.08), rgba(46, 216, 255, 0.2));
  box-shadow: 0 14px 28px rgba(10, 31, 77, 0.08);
}

.hero__metrics {
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0;
}

.hero__metrics div {
  min-width: 160px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(11, 31, 77, 0.06);
}

.hero__metrics strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.3rem;
  color: var(--navy-900);
}

.hero__metrics span {
  color: var(--slate-700);
}

.hero-card,
.info-card,
.service-card,
.value-item,
.form-card,
.contact-card,
.benefit-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: clamp(240px, 34vh, 300px);
  height: 100%;
  border: 0;
  border-radius: 0;
  background: #07142f;
  box-shadow: none;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 18, 44, 0.88) 0%, rgba(6, 18, 44, 0.62) 32%, rgba(6, 18, 44, 0.16) 65%, rgba(6, 18, 44, 0.5) 100%),
    linear-gradient(180deg, rgba(6, 18, 44, 0.06), rgba(6, 18, 44, 0.64));
}

.hero-card__badge {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(12, 51, 121, 0.12), rgba(46, 216, 255, 0.2));
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-900);
}

.hero-card h2 {
  margin: 1.2rem 0 0.8rem;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.98;
}

.hero-card p {
  max-width: 460px;
  margin: 0;
  color: var(--slate-700);
}

.hero-media {
  position: relative;
  display: none;
  min-height: clamp(240px, 34vh, 300px);
  height: 100%;
}

.hero-media.is-active {
  display: block;
  animation: heroFade 0.45s ease;
}

.hero-media__asset {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: scale(1.02);
}

.hero-media__overlay {
  display: none;
}

.hero-media__overlay .hero-card__badge {
  color: var(--white);
}

.hero-media__overlay p {
  color: rgba(255, 255, 255, 0.82);
}

.hero__copy .section-heading,
.hero__copy h1 {
  color: var(--white);
}

.hero__copy .section-heading {
  margin-bottom: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.hero-summary {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.hero-diagram {
  position: relative;
  height: 290px;
  margin-top: 1.8rem;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(8, 26, 61, 0.95), rgba(17, 48, 109, 0.9)),
    linear-gradient(135deg, rgba(88, 200, 255, 0.2), transparent);
}

.hero-diagram__core,
.hero-diagram__ring,
.hero-diagram__panel {
  position: absolute;
}

.hero-diagram__core {
  inset: 50% auto auto 50%;
  width: 80px;
  height: 80px;
