:root {
  --bg: #f5f8ff;
  --bg-soft: #eaf0ff;
  --text: #0a1f4f;
  --muted: #3b5387;
  --primary: #0d2f7a;
  --secondary: #1a4cb7;
  --accent: #274fc4;
  --card: rgba(255, 255, 255, 0.88);
  --border: rgba(13, 47, 122, 0.16);
  --shadow: 0 16px 36px rgba(18, 48, 112, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(45, 89, 199, 0.14) 0%, transparent 35%),
    radial-gradient(circle at 84% 20%, rgba(16, 54, 141, 0.12) 0%, transparent 34%),
    linear-gradient(145deg, #ffffff 0%, #f1f6ff 52%, #edf3ff 100%);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Lato", sans-serif;
  line-height: 1.15;
  margin: 0 0 0.6rem;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, calc(100% - 2.6rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
  perspective: 1000px;
}

.section-3d {
  transform-style: preserve-3d;
}

.noise-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(rgba(13, 47, 122, 0.18) 0.4px, transparent 0.4px);
  background-size: 4px 4px;
  z-index: -1;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, #1a4cb7, #2fb1ff, #0d2f7a);
  box-shadow: 0 0 10px rgba(26, 76, 183, 0.65);
  transition: width 0.1s linear;
  pointer-events: none;
}

.scroll-bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  z-index: -1;
  will-change: transform;
}

.scroll-bg-orb.orb-1 {
  top: 12%;
  left: -10%;
  width: 36vw;
  height: 36vw;
  background: radial-gradient(circle, rgba(45, 120, 255, 0.42), transparent 70%);
}

.scroll-bg-orb.orb-2 {
  top: 58%;
  right: -10%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(13, 47, 122, 0.38), transparent 70%);
}

.scroll-bg-orb.orb-3 {
  top: 130%;
  left: 20%;
  width: 28vw;
  height: 28vw;
  background: radial-gradient(circle, rgba(47, 177, 255, 0.32), transparent 70%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(13, 47, 122, 0.14);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

@media (max-width: 720px) {
  .brand-logo {
    height: 44px;
    max-width: 170px;
  }
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  font-size: 0.93rem;
}

.main-nav a {
  color: var(--text);
  padding: 0.5rem 0.2rem;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  bottom: 0.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(13, 47, 122, 0.18);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 6px 14px rgba(13, 47, 122, 0.1);
  position: relative;
  z-index: 45;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* The mobile menu lives inside .site-header, which creates its own stacking
   context (position:sticky + z-index, and backdrop-filter). That traps the
   menu's z-index:40 INSIDE the header's z-index:30, so the backdrop at
   z-index:35 painted over the open menu and swallowed every tap - the links
   and the close button were both unclickable.
   Lifting the whole header above the backdrop while the menu is open fixes
   the menu and the close button together. */
body.nav-open .site-header {
  z-index: 45;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: #ffffff;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(13, 47, 122, 0.24);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  border: 1px solid rgba(13, 47, 122, 0.22);
  box-shadow: none;
}

.top-banner {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  margin-top: 0;
  background-color: #0a1c48;
  background-image:
    linear-gradient(90deg, rgba(10, 28, 74, 0.78), rgba(10, 28, 74, 0.4)),
    url("assets/banner-poster.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  perspective: 1400px;
  perspective-origin: 50% 35%;
}

.top-banner.has-video .banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  transform: translateZ(0);
  background: #0a1c48;
}

.top-banner.has-video .banner-video.is-ready {
  opacity: 1;
}

.top-banner.has-video .banner-overlay {
  z-index: 1;
}

.top-banner.has-video .banner-bubbles {
  z-index: 2;
}

.top-banner.has-video .banner-content {
  z-index: 3;
}

.top-banner::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle at 50% 50%, rgba(80, 170, 255, 0.35), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
  transform: translateZ(-100px);
  will-change: transform;
}

.top-banner::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 55%;
  height: 120%;
  background: radial-gradient(circle at 50% 50%, rgba(25, 60, 160, 0.45), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
  transform: translateZ(-140px);
  will-change: transform;
}

.banner-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.banner-bubbles span {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), rgba(140, 200, 255, 0.08) 60%, transparent 72%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.18);
  animation: bubbleFloat 9s ease-in-out infinite;
  will-change: transform;
}

.banner-bubbles span:nth-child(1) {
  width: 120px; height: 120px; left: 8%; top: 18%;
  animation-duration: 10s;
}
.banner-bubbles span:nth-child(2) {
  width: 70px; height: 70px; left: 22%; top: 62%;
  animation-duration: 7s; animation-delay: -2s;
}
.banner-bubbles span:nth-child(3) {
  width: 180px; height: 180px; right: 12%; top: 12%;
  animation-duration: 12s; animation-delay: -3s;
}
.banner-bubbles span:nth-child(4) {
  width: 48px; height: 48px; right: 32%; bottom: 22%;
  animation-duration: 8s; animation-delay: -1s;
}
.banner-bubbles span:nth-child(5) {
  width: 90px; height: 90px; left: 52%; bottom: 10%;
  animation-duration: 11s; animation-delay: -4s;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.75; }
  50% { transform: translate3d(-10px, -28px, 30px) scale(1.08); opacity: 1; }
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 21, 56, 0.72) 0%,
    rgba(7, 21, 56, 0.55) 20%,
    rgba(7, 21, 56, 0.28) 45%,
    rgba(7, 21, 56, 0) 65%
  );
}

.banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  padding: 6.5rem 0 5rem 4.2rem;
  text-align: left;
  margin: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.banner-content h1,
.banner-content > p,
.banner-eyebrow {
  text-shadow: 0 2px 22px rgba(6, 18, 50, 0.55);
}

.banner-content > * {
  max-width: 58ch;
}

.banner-content h1 br {
  display: block;
}

.banner-content h1 {
  max-width: 16ch;
  line-height: 1.16;
}

.banner-content p {
  max-width: 50ch;
}

.banner-actions {
  max-width: none;
}

@media (min-width: 1600px) {
  .banner-content {
    padding-left: 6rem;
  }
}

@media (max-width: 900px) {
  .banner-content {
    padding-left: 2rem;
    padding-right: 1rem;
  }
}

@media (max-width: 560px) {
  .banner-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .banner-content h1 {
    font-size: clamp(1.65rem, 8.6vw, 2.5rem);
    max-width: 12ch;
  }
}

.banner-content h1 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.9rem);
  margin-bottom: 1rem;
}

.banner-content p {
  color: rgba(243, 247, 255, 0.95);
}

.banner-eyebrow {
  color: #b8cbff;
}

.banner-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.banner-phone {
  color: #ffffff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 0.68rem 1rem;
  background: rgba(255, 255, 255, 0.08);
}

.special-section {
  padding: 3.2rem 0 2.2rem;
  background: #fafafa;
}

.special-head {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.special-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: normal;
}

.special-controls {
  display: flex;
  gap: 0.6rem;
}

.special-nav {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 47, 122, 0.2);
  background: #ffffff;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
}

.special-track-wrap {
  width: 100%;
  padding: 0 4.2rem;
}

.special-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3rem) / 4);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 1rem;
  scroll-behavior: smooth;
}

.special-track::-webkit-scrollbar {
  height: 8px;
}

.special-track::-webkit-scrollbar-thumb {
  background: rgba(13, 47, 122, 0.38);
  border-radius: 999px;
}

.special-card {
  position: relative;
  border: 1px solid #e2e8f7;
  border-radius: 1.2rem;
  background: #ffffff;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  box-shadow: 0 10px 22px rgba(13, 47, 122, 0.08);
}

.special-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 0 rgba(26, 76, 183, 0);
  transition: box-shadow 0.35s ease;
}

@media (hover: hover) {
  .special-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(13, 47, 122, 0.18);
    border-color: rgba(26, 76, 183, 0.28);
  }

  .special-card:hover::after {
    box-shadow: inset 0 0 0 2px rgba(26, 76, 183, 0.18);
  }

  .special-card:hover .special-image img {
    transform: scale(1.05);
  }
}

.special-image img {
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.special-badge {
  border-radius: 0.4rem;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 0.6rem 0.34rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.special-badge.launch {
  background: #daac45;
}

.special-badge.bestseller {
  background: #0d3b8f;
}

.special-badge.trending {
  background: #228b3f;
}

.special-image {
  position: relative;
  height: 210px;
  border-bottom: 1px solid #edf2fb;
  background: #f7f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.special-inquiry {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translate(-50%, 16px);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 2;
}

.special-inquiry svg {
  flex-shrink: 0;
}

.special-card:hover .special-inquiry,
.special-inquiry:focus-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.special-inquiry:hover {
  background: #1ebe5a;
}

.special-image img {
  width: 72%;
  height: 82%;
  object-fit: contain;
  object-position: center;
}

.special-image:has(.special-image-cover) {
  padding: 0;
  background: #ffffff;
  height: 340px;
}

.special-image img.special-image-cover {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 0;
}

.special-body {
  display: flex;
  flex-direction: column;
  padding: 1rem 2.6rem 1.1rem 1rem;
}

.special-body h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin: 0 0 0.6rem;
}

.special-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
  align-content: flex-start;
}

.tag {
  border-radius: 0.45rem;
  border: 1px solid;
  font-size: 0.9rem;
  padding: 0.22rem 0.5rem;
}

.tag.blue {
  color: #1a4cb7;
  border-color: #a8bdf1;
  background: #eef3ff;
}

.tag.yellow {
  color: #b57900;
  border-color: #efcf85;
  background: #fff9e9;
}

.tag.green {
  color: #228b3f;
  border-color: #9dd6ab;
  background: #edfbf1;
}

.tag.red {
  color: #d54a4a;
  border-color: #f0b0b0;
  background: #fff1f1;
}

.special-meta {
  margin-top: 0.25rem;
  padding-right: 2.2rem;
}

.special-meta .special-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(180deg);
  border-radius: 0.4rem 0 0 0;
}

.promo-carousel-section {
  padding: 1rem 0 3.2rem;
  background: #ffffff;
}


.promo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 4.2rem;
  margin-bottom: 0.9rem;
}

.promo-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
}

.promo-nav-wrap {
  display: flex;
  gap: 0.55rem;
}

.promo-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 47, 122, 0.2);
  background: #ffffff;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
}

.promo-carousel {
  margin: 0 4.2rem;
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  scroll-behavior: smooth;
  border: 1px solid #e3e9f7;
}

.promo-carousel::-webkit-scrollbar {
  display: none;
}

.promo-slide {
  min-width: 100%;
  height: 360px;
  position: relative;
  scroll-snap-align: start;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-carousel .promo-slide--banner {
  height: auto;
  aspect-ratio: 1600 / 533;
  background: #050f28;
}

.promo-carousel .promo-slide--banner img {
  object-fit: cover;
}

.promo-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.4rem 1.2rem;
  color: #ffffff;
  background: linear-gradient(0deg, rgba(6, 18, 50, 0.78) 0%, rgba(6, 18, 50, 0) 100%);
}

.promo-overlay h3 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 2.8vw, 2rem);
}

.promo-overlay p {
  margin: 0;
  color: rgba(244, 248, 255, 0.96);
}

.promo-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

.promo-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  border: 0;
  background: rgba(13, 47, 122, 0.3);
  cursor: pointer;
}

.promo-dot.is-active {
  width: 1.5rem;
  background: var(--primary);
}

.filter-life-section {
  background: #ffffff;
  padding: 2.3rem 0 3rem;
}

.filter-wrap {
  padding: 0 4.2rem;
}

.filter-life-hero {
  background: #eef5f5;
  border-radius: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.8fr;
  align-items: center;
  min-height: 390px;
  overflow: hidden;
}

.filter-copy {
  padding: 2rem 2rem 2rem 2.2rem;
}

.filter-copy h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 4.8vw, 4rem);
  color: #121212;
  max-width: 12ch;
  line-height: 1.06;
}

.filter-copy h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  color: #171717;
}

.filter-copy p {
  margin: 0;
  color: #2b2b2b;
  font-size: 1.03rem;
  max-width: 50ch;
}

.filter-shop-btn {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #101115;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.72rem 1.4rem;
  font-weight: 800;
}

.filter-life-text {
  font-size: clamp(2rem, 7vw, 6rem);
  font-weight: 900;
  color: #1a4cb7;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-align: center;
}

.filter-device-visual {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.filter-device-visual img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: 1rem;
}

.filter-feature-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.filter-feature-card {
  border-radius: 1.2rem;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 14px 30px rgba(13, 47, 122, 0.08);
  /* Grid stretches all three cards to the tallest one. Without this the
     caption kept its content height and the leftover space showed the card's
     white background as a strip under the dark panel - visible whenever one
     card's title wrapped to two lines and the others did not (e.g. iPad
     widths around 1024-1200px). Flex column + flex:1 on the caption makes the
     dark panel fill to the bottom on every card. */
  display: flex;
  flex-direction: column;
}

.filter-feature-card img {
  transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (hover: hover) {
  .filter-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(13, 47, 122, 0.22);
  }
  .filter-feature-card:hover img {
    transform: scale(1.05);
  }
}

.filter-feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.filter-feature-caption {
  background: #101216;
  color: #ffffff;
  padding: 1rem 1rem 1.2rem;
  flex: 1;
}

.filter-feature-caption h4 {
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 2.3vw, 2rem);
}

.filter-feature-caption p {
  margin: 0;
  color: #dbe4f5;
}

.explore-section {
  padding: 2.7rem 0 3rem;
  background: #ffffff;
}

.explore-wrap {
  padding: 0 4.2rem;
}

.explore-head h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.7rem, 3.2vw, 2.7rem);
  color: #12184b;
}

.explore-head p {
  margin: 0;
  color: #5b6f93;
}

.explore-tabs-row {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.explore-tabs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  flex: 1;
  min-width: 0;
}

.explore-discover-btn {
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font-weight: 700;
  padding: 0.62rem 1.35rem;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.explore-discover-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.explore-tab {
  border: 1px solid rgba(13, 47, 122, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-weight: 700;
  padding: 0.52rem 0.95rem;
  white-space: nowrap;
  cursor: pointer;
}

.explore-tab.is-active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.explore-controls {
  margin-top: 0.9rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
}

.explore-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 47, 122, 0.2);
  background: #ffffff;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
}

.explore-track-wrap {
  margin-top: 0.7rem;
}

.explore-track {
  grid-auto-columns: calc((100% - 3rem) / 4);
  padding: 1.5rem 0.4rem 1.6rem;
  overflow-y: visible;
}

.explore-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(13, 47, 122, 0.08);
  border-radius: 1.4rem;
  overflow: hidden;
  padding: 0;
  gap: 0;
  box-shadow: 0 6px 18px rgba(13, 47, 122, 0.07);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.explore-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 177, 255, 0.22) 0%, rgba(26, 76, 183, 0.05) 50%, transparent 70%);
  filter: blur(4px);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.explore-card::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 76, 183, 0.16) 0%, transparent 65%);
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.4s ease;
}

.explore-card:hover {
  transform: translateY(-10px);
  border-color: rgba(26, 76, 183, 0.28);
  box-shadow: 0 26px 50px rgba(13, 47, 122, 0.22);
}

.explore-card:hover::before {
  transform: translate(-10px, 10px) scale(1.15);
}

.explore-card:hover::after {
  transform: translate(10px, -10px) scale(1.15);
}

.explore-card .product-image {
  aspect-ratio: 1 / 1;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.explore-card .product-image::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(26, 76, 183, 0.25);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: explore-ring-spin 30s linear infinite;
}

@keyframes explore-ring-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.explore-card .product-image img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  transition: transform 0.6s ease;
}

.explore-card .product-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 31, 79, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.explore-card:hover .product-image::before {
  opacity: 1;
}

.explore-card:hover .product-image img {
  transform: scale(1.06);
}

.explore-card .product-body {
  padding: 1rem 1rem 1.1rem;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26, 76, 183, 0.08) 0%, transparent 70%),
    #ffffff;
}

.explore-card .product-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2fb1ff, #1a4cb7);
}

.explore-card .product-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
  background: linear-gradient(135deg, #0d2f7a 0%, #1a4cb7 50%, #2fb1ff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.explore-card .product-body .product-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(13, 47, 122, 0.55);
  font-weight: 700;
  margin: 0;
}

.explore-card .product-inquiry {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(140deg, #1a4cb7 0%, #0d2f7a 100%);
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.5rem;
  letter-spacing: 0.16em;
  box-shadow: 0 10px 22px rgba(13, 47, 122, 0.35);
  z-index: 2;
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.explore-card:hover .product-inquiry,
.explore-card:focus-within .product-inquiry {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.explore-card .product-inquiry:hover {
  background: linear-gradient(140deg, #173f9f 0%, #0a2566 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(13, 47, 122, 0.45);
}

.premium-showcase {
  position: relative;
  min-height: 90vh;
  background-color: #f0f0f0;
  background-image:
    linear-gradient(rgba(240, 240, 240, 0.85), rgba(240, 240, 240, 0.85)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0 2.8rem;
  transition: background-image 0.6s ease;
}

.premium-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
}

.premium-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 4.2rem;
  text-align: center;
}

.premium-inner h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(2rem, 4.2vw, 4rem);
  color: #0d1d4c;
}

.premium-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.premium-tab {
  border: 0;
  background: transparent;
  color: #1c1f29;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.32rem 0.4rem;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.premium-tab.is-active {
  border-bottom-color: #111111;
}

.premium-product {
  margin-top: 1.15rem;
}

.premium-product img {
  width: min(440px, 82vw);
  height: auto;
  object-fit: contain;
  border-radius: 1.25rem;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.2));
  animation: premiumFloat 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes premiumFloat {
  0%, 100% { transform: translateY(0) rotateX(0) rotateZ(0); }
  50% { transform: translateY(-14px) rotateX(4deg) rotateZ(-1deg); }
}

.premium-copy {
  margin-top: 0.8rem;
}

.premium-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.6rem);
  color: #0e1018;
}

.premium-copy p {
  margin: 0.25rem 0 0;
  color: #1f2430;
  font-size: clamp(1rem, 2vw, 1.8rem);
}

.premium-shop {
  margin-top: 0.8rem;
  display: inline-flex;
  background: #111216;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.72rem 1.45rem;
  font-weight: 800;
}

.hero {
  padding-top: 6.7rem;
  min-height: 90vh;
  isolation: isolate;
}

.hero-bg,
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  z-index: -1;
}

.hero-bg {
  width: min(58vw, 740px);
  height: min(58vw, 740px);
  right: -20%;
  top: -30%;
  background: radial-gradient(circle at 40% 40%, rgba(36, 79, 191, 0.26), transparent 68%);
}

.hero-glow {
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  left: -15%;
  bottom: -22%;
  background: radial-gradient(circle at 50% 50%, rgba(13, 47, 122, 0.2), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.4rem;
}

.eyebrow {
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-hero {
  padding-top: 6.2rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 18ch;
}

.page-hero p {
  max-width: 66ch;
}

.page-banner {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
  color: #ffffff;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 24%, rgba(120, 180, 255, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(47, 177, 255, 0.32) 0%, transparent 50%),
    linear-gradient(135deg, #0a1f4f 0%, #0d2f7a 45%, #1a4cb7 100%);
}

.page-banner::before,
.page-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.page-banner::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(120, 200, 255, 0.55), transparent 70%);
}

.page-banner::after {
  width: 280px;
  height: 280px;
  bottom: -140px;
  left: -60px;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.45), transparent 70%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner .eyebrow {
  color: rgba(220, 235, 255, 0.85);
  letter-spacing: 0.18em;
}

.page-banner h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  margin: 0.6rem 0 1.1rem;
  max-width: 20ch;
  color: #ffffff;
}

.page-banner .banner-lead {
  max-width: 64ch;
  color: rgba(230, 240, 255, 0.92);
  font-size: 1.05rem;
}

.banner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(220, 235, 255, 0.78);
  margin-bottom: 0.9rem;
}

.banner-breadcrumb a {
  color: rgba(220, 235, 255, 0.78);
  transition: color 0.2s ease;
}

.banner-breadcrumb a:hover {
  color: #ffffff;
}

.banner-breadcrumb span[aria-current="page"] {
  color: #ffffff;
  font-weight: 700;
}

.banner-cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.banner-cta .btn {
  background: #ffffff;
  color: var(--primary);
}

.banner-cta .btn:hover {
  background: #eaf0ff;
}

.banner-cta .btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.banner-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.banner-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 70px;
  display: block;
  z-index: 0;
  color: #ffffff;
}

.banner-wave path {
  fill: currentColor;
}

.page-banner + .section {
  background: #ffffff;
}

@media (max-width: 720px) {
  .page-banner {
    padding: 5.5rem 0 4rem;
  }
  .page-banner h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }
  .banner-wave {
    height: 44px;
  }
}

.hero-copy > p {
  max-width: 55ch;
}

.hero-cta {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.trust-row {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-row article {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  transform: translateZ(16px);
}

.trust-row h3 {
  margin-bottom: 0.3rem;
  color: var(--primary);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.orbital-card {
  width: min(100%, 420px);
  border-radius: 1.4rem;
  border: 1px solid var(--border);
  background: linear-gradient(130deg, #1944a8, #0a2a73);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transform-style: preserve-3d;
  color: #ffffff;
}

.orbital-card h3 {
  font-size: 1.35rem;
  color: #ffffff;
}

.orbital-card p {
  color: #d9e6ff;
}

.orbital-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.orbital-card li {
  color: #eef4ff;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.1rem;
}

.orbital-card li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.48rem;
  background: linear-gradient(140deg, var(--secondary), var(--primary));
}

.depth-stack {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.depth-stack span {
  position: absolute;
  border-radius: 1.1rem;
  border: 1px dashed rgba(13, 47, 122, 0.22);
}

.depth-stack span:nth-child(1) {
  inset: 7% 10%;
  transform: translateZ(-40px);
}

.depth-stack span:nth-child(2) {
  inset: 14% 5%;
  transform: translateZ(-80px);
}

.depth-stack span:nth-child(3) {
  inset: 2% 18%;
  transform: translateZ(-120px);
}

.section-head {
  margin-bottom: 1.9rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  max-width: 18ch;
}

.section.tech {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 7rem;
}

.section.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/latest-technology.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: -2;
}

.section.tech::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(47, 177, 255, 0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(13, 47, 122, 0.22), transparent 50%),
    linear-gradient(180deg, rgba(245, 248, 255, 0.78) 0%, rgba(234, 240, 255, 0.88) 100%);
  z-index: -1;
}

.section.tech .glass-card {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.glass-card {
  border-radius: 1.2rem;
  padding: 1.3rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(39, 79, 196, 0.08), rgba(39, 79, 196, 0) 55%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 44px rgba(13, 47, 122, 0.2);
    border-color: rgba(26, 76, 183, 0.4);
  }
  .glass-card:hover::before {
    opacity: 1;
  }
}

.glass-card h3 {
  margin-bottom: 0.55rem;
}

.category-strip {
  border: 1px solid var(--border);
  border-radius: 1.3rem;
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.94);
}

.category-strip div {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.category-strip span {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(13, 47, 122, 0.26);
  color: var(--primary);
  font-size: 0.85rem;
}

.products-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

select {
  border-radius: 0.8rem;
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 0.72rem 0.84rem;
  min-width: 190px;
}

.subcategory-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 1.6rem;
}

.subcategory-filter[hidden] {
  display: none;
}

.subcategory-chip {
  border: 1px solid rgba(13, 47, 122, 0.22);
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.45rem 0.9rem;
  white-space: nowrap;
  cursor: pointer;
}

.subcategory-chip.is-active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.product-card {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(13, 47, 122, 0.12);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  padding: 1.4rem 1.4rem 1.6rem;
  gap: 1.2rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, transparent 30%, rgba(26, 76, 183, 0.55) 75%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 76, 183, 0.35);
  box-shadow: 0 22px 44px rgba(13, 47, 122, 0.18);
}

.product-card:hover::before {
  opacity: 1;
}

.product-image {
  aspect-ratio: 1 / 1;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  position: relative;
}

.product-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
  filter: drop-shadow(0 12px 18px rgba(13, 47, 122, 0.18));
}

.product-card:hover .product-image img {
  transform: scale(1.06) translateY(-2px);
}

.product-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.product-body h3 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text);
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.product-inquiry {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-inquiry::after {
  content: "\2192";
  font-size: 1rem;
  transition: transform 0.25s ease;
}

.product-inquiry:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(13, 47, 122, 0.25);
}

.product-inquiry:hover::after {
  transform: translateX(3px);
}

@media (max-width: 960px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 1.1rem 1.1rem 1.3rem;
  }
}

.service-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.service-grid > .reveal p + p {
  margin-top: 0.9rem;
}

.service-steps {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 1rem;
  align-content: stretch;
}

.service-steps article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: 1.1rem 1.25rem 1.1rem 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.95));
  box-shadow: 0 10px 28px -22px rgba(15, 42, 96, 0.45);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-steps article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), #4aa3ff);
}

.service-steps article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -22px rgba(15, 42, 96, 0.5);
}

.service-steps article p {
  margin: 0;
  color: var(--muted, #475569);
  font-size: 0.95rem;
}

.service-steps strong {
  color: var(--accent);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.testimonials {
  padding-top: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.testimonial-grid article {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.testimonial-grid h4 {
  margin-top: 0.8rem;
  color: var(--primary);
}

.contact-wrap {
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, #fdfefe, #eef3ff);
  padding: 1.7rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 0.65rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
  align-content: center;
}

.contact-form input,
.contact-form select {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid rgba(13, 47, 122, 0.26);
  background: #ffffff;
  color: var(--text);
  padding: 0.75rem 0.85rem;
}

.contact-form input::placeholder {
  color: #6981b1;
}

@media (min-width: 961px) {
  .nowrap-desktop {
    white-space: nowrap;
  }
}

/* ============ Service Stats Strip ============ */
.service-stats-section {
  padding: 2.5rem 0 0;
  position: relative;
  background: #ffffff;
}

.service-stats-wave-band {
  position: relative;
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #0a1f4f 0%, #0d2f7a 60%, #173f9f 100%);
}

.service-stats-wave {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 80px;
  color: #ffffff;
  pointer-events: none;
}

.service-stats-wave-top {
  top: -1px;
  transform: scaleY(-1);
}

.service-stats-wave-bottom {
  bottom: -1px;
  color: #f3f7ff;
}

.service-stats-wave path {
  fill: currentColor;
}

.service-stats-wave-band {
  height: 180px;
}

@media (max-width: 720px) {
  .service-stats-wave-band {
    height: 120px;
    margin-top: 1.6rem;
  }
  .service-stats-wave {
    height: 50px;
  }
}

.service-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: linear-gradient(135deg, #0a1f4f 0%, #0d2f7a 60%, #173f9f 100%);
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
  box-shadow: none;
}

.service-stats-grid::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 177, 255, 0.25), transparent 70%);
  filter: blur(40px);
}

.service-stat {
  position: relative;
  padding: 2rem 1.4rem;
  color: #ffffff;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  z-index: 1;
}

.service-stat:last-child {
  border-right: none;
}

.service-stat strong {
  display: block;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, #9fd0ff 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-stat strong span {
  font-size: 0.55em;
  font-weight: 800;
  -webkit-text-fill-color: rgba(220, 235, 255, 0.85);
}

.service-stat p {
  margin: 0.6rem 0 0;
  font-size: 0.88rem;
  color: rgba(220, 235, 255, 0.85);
  line-height: 1.45;
}

/* ============ Service Zigzag Section ============ */
.service-zigzag-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 177, 255, 0.1), transparent 45%),
    radial-gradient(circle at 88% 92%, rgba(13, 47, 122, 0.12), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.service-zigzag-head {
  max-width: 60ch;
  margin-bottom: 3rem;
}

.service-zigzag-head h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  letter-spacing: -0.01em;
}

.service-zigzag-lead {
  margin-top: 0.7rem;
}

.zigzag-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
  border-top: 1px solid rgba(13, 47, 122, 0.1);
}

.zigzag-row:first-of-type {
  border-top: none;
}

.zigzag-flip .zigzag-content {
  order: 2;
}

.zigzag-flip .zigzag-list-wrap {
  order: 1;
}

.zigzag-content {
  position: relative;
  z-index: 1;
  padding-top: 4.5rem;
}

.zigzag-num {
  position: absolute;
  top: -1rem;
  left: -0.4rem;
  font-size: clamp(6rem, 11vw, 10rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, rgba(26, 76, 183, 0.18) 0%, rgba(26, 76, 183, 0.02) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(26, 76, 183, 0.22);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.zigzag-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(26, 76, 183, 0.1);
  border: 1px solid rgba(26, 76, 183, 0.18);
}

.zigzag-content h3 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  margin: 0 0 1rem;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.zigzag-desc {
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1.4rem;
  max-width: 50ch;
}

.zigzag-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  color: var(--primary);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid currentColor;
  transition: gap 0.25s ease, color 0.25s ease;
}

.zigzag-link:hover {
  gap: 0.9rem;
  color: #0a1f4f;
}

.zigzag-list-wrap {
  position: relative;
  z-index: 1;
}

.zigzag-list {
  margin: 0;
  padding: 1.8rem 1.6rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(13, 47, 122, 0.1);
  border-radius: 1.1rem;
  box-shadow: 0 18px 38px rgba(13, 47, 122, 0.1);
  position: relative;
}

.zigzag-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 1.1rem 1.1rem 0 0;
  background: linear-gradient(90deg, #2fb1ff, #1a4cb7, #0d2f7a);
}

.zigzag-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.zigzag-list li strong {
  color: var(--text);
  font-weight: 700;
}

.zigzag-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #1a4cb7;
  box-shadow: 0 0 0 3px rgba(26, 76, 183, 0.12);
}

.zigzag-list li:hover::before {
  background: #1a4cb7;
  transition: background 0.2s ease;
}

@media (max-width: 860px) {
  .zigzag-row {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    padding: 2.2rem 0;
  }
  .zigzag-flip .zigzag-content {
    order: 0;
  }
  .zigzag-flip .zigzag-list-wrap {
    order: 0;
  }
  .zigzag-num {
    font-size: 7rem;
    top: -1.5rem;
  }
  .service-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .service-stat:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  .service-stat:nth-child(3),
  .service-stat:nth-child(4) {
    border-bottom: none;
  }
}

/* ============ Legacy service-suite (kept for fallback) ============ */
.service-suite-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 10% 10%, rgba(47, 177, 255, 0.1), transparent 45%),
    radial-gradient(circle at 90% 90%, rgba(13, 47, 122, 0.1), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.service-suite-lead {
  max-width: 60ch;
  margin-top: 0.5rem;
}

.service-suite-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-suite-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(13, 47, 122, 0.08);
  border-radius: 1.2rem;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 12px 30px rgba(13, 47, 122, 0.06);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease, border-color 0.3s ease;
}

.service-suite-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #2fb1ff 0%, #1a4cb7 60%, #0d2f7a 100%);
  transition: width 0.35s ease;
}

.service-suite-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 76, 183, 0.08), transparent 70%);
  z-index: 0;
  transition: transform 0.5s ease;
}

.service-suite-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 76, 183, 0.22);
  box-shadow: 0 24px 48px rgba(13, 47, 122, 0.16);
}

.service-suite-card:hover::after {
  transform: scale(1.3);
}

.service-suite-card:hover::before {
  width: 8px;
}

.service-suite-head {
  position: relative;
  z-index: 1;
  margin-bottom: 1.1rem;
  padding-left: 0.4rem;
}

.service-suite-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(13, 47, 122, 0.55);
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.service-suite-head h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.service-suite-list {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.service-suite-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.service-suite-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(140deg, #2fb1ff, #1a4cb7);
  box-shadow: 0 0 0 3px rgba(26, 76, 183, 0.12);
}

.service-suite-list li strong {
  color: var(--text);
  font-weight: 700;
}

/* ============ Service CTA ============ */
.service-cta-section {
  background: linear-gradient(135deg, #0a1f4f 0%, #0d2f7a 60%, #173f9f 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.service-cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 177, 255, 0.22), transparent 70%);
  filter: blur(40px);
}

.service-cta-section .eyebrow {
  color: rgba(220, 235, 255, 0.85);
}

.service-cta-section h2 {
  color: #ffffff;
}

.service-cta-section p {
  color: rgba(230, 240, 255, 0.92);
}

.service-cta-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

.service-cta-section .btn {
  background: #ffffff;
  color: var(--primary);
}

.service-cta-section .btn:hover {
  background: #eaf0ff;
}

.service-cta-section .btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.service-cta-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 720px) {
  .service-suite-grid {
    grid-template-columns: 1fr;
  }
  .service-cta-wrap {
    grid-template-columns: 1fr;
  }
  .service-cta-actions {
    justify-content: flex-start;
  }
}

.site-footer {
  margin-top: 0;
  padding: 3.5rem 0 0;
  background: linear-gradient(160deg, #0a1f4f 0%, #0d2f7a 60%, #173f9f 100%);
  color: rgba(220, 232, 255, 0.85);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 177, 255, 0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 80px;
  left: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 140, 255, 0.16), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.2fr 1.3fr;
  gap: 2.4rem;
  padding-bottom: 2.6rem;
}

.footer-col h2 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: 0.04em;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-col h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, #2fb1ff, #1a4cb7);
  border-radius: 999px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  color: rgba(220, 232, 255, 0.85);
  font-size: 0.92rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}

.footer-col ul a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-logo {
  display: inline-block;
  background: #ffffff;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  display: block;
  height: 42px;
  width: auto;
}

.footer-tagline {
  color: rgba(220, 232, 255, 0.85);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 1.1rem;
  max-width: 36ch;
}

.footer-socials {
  display: flex;
  gap: 0.55rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-socials a svg {
  width: 18px;
  height: 18px;
}

.footer-socials a:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
  border-color: #ffffff;
}

.footer-contact {
  gap: 0.85rem !important;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: rgba(220, 232, 255, 0.85);
  line-height: 1.55;
}

.footer-contact a {
  color: rgba(220, 232, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(47, 177, 255, 0.18);
  color: #9fd0ff;
}

.footer-icon svg {
  width: 16px;
  height: 16px;
}

.footer-map {
  border-radius: 0.7rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  filter: grayscale(0.2) contrast(0.95);
}

.footer-map iframe {
  display: block;
  width: 100%;
  /* Was an inline style="border:0". Moved here so the Content-Security-Policy
     can ship style-src 'self' without 'unsafe-inline'. */
  border: 0;
}

.footer-map-link {
  display: inline-block;
  margin-top: 0.75rem;
  color: #9fd0ff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.footer-map-link::after {
  content: " \2192";
  transition: margin-left 0.2s ease;
}

.footer-map-link:hover {
  color: #ffffff;
}

.footer-map-link:hover::after {
  margin-left: 4px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(220, 232, 255, 0.75);
}

.footer-bottom-wrap a {
  color: rgba(220, 232, 255, 0.75);
  transition: color 0.2s ease;
}

.footer-bottom-wrap a:hover {
  color: #ffffff;
}

@media (max-width: 960px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .site-footer {
    padding-top: 2.5rem;
  }
}

.floating-cta {
  position: fixed;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.nav-open .floating-cta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-book-demo {
  width: 3.4rem;
  height: 11.4rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #1a4cb7, #0d2f7a);
  color: #ffffff;
  display: grid;
  place-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(13, 47, 122, 0.35);
}

.floating-whatsapp {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(22, 140, 75, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 140, 75, 0.45);
}

/* The icon artwork carries its own green disc, so the wrapper stays transparent. */
.floating-whatsapp img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 999px;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(13, 47, 122, 0.2);
  padding-top: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-left {
  transform: translateX(-60px) rotateY(-10deg);
}

.reveal.reveal-left.in {
  transform: translateX(0) rotateY(0);
}

.reveal.reveal-right {
  transform: translateX(60px) rotateY(10deg);
}

.reveal.reveal-right.in {
  transform: translateX(0) rotateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.55s; }

.scroll-scale {
  transform-origin: 50% 50%;
  will-change: transform;
  transition: transform 0.3s linear;
}

.depth-shadow {
  position: relative;
  z-index: 0;
}

.depth-shadow::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -18px;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(13, 47, 122, 0.32), transparent 70%);
  filter: blur(14px);
  z-index: -1;
  opacity: 0.6;
}

.floating {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotateX(0deg);
  }
  50% {
    transform: translateY(-10px) rotateX(2deg);
  }
}

@media (max-width: 1080px) {
  .site-header {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 5.2rem 1.6rem 2rem;
    background: #ffffff;
    box-shadow: -18px 0 40px rgba(13, 47, 122, 0.18);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 40;
    font-size: 1.05rem;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    padding: 0.95rem 0.9rem;
    border-bottom: 1px solid rgba(13, 47, 122, 0.08);
    border-radius: 0.6rem;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease, transform 0.2s ease;
    position: relative;
    color: var(--text);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: #e6efff;
    color: var(--primary);
    padding-left: 1.4rem;
  }

  .main-nav a:active {
    background: #cfe0ff;
    color: var(--primary);
    transform: scale(0.98);
  }

  .main-nav a.active {
    background: #e6efff;
    color: var(--primary);
    font-weight: 700;
  }

  .hero-grid,
  .service-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .special-track {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }

  .promo-head {
    padding: 0 2rem;
  }

  .promo-carousel {
    margin: 0 2rem;
  }

  .premium-inner {
    padding: 0 2rem;
  }

  .filter-wrap {
    padding: 0 2rem;
  }

  .filter-life-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .filter-copy {
    padding: 1.6rem 1.4rem 1.2rem;
  }

  .filter-life-text {
    text-align: left;
    padding: 0 1.4rem 1.1rem;
  }

  .filter-device-visual {
    height: auto;
  }

  .filter-feature-grid {
    grid-template-columns: 1fr;
  }

  .explore-wrap {
    padding: 0 2rem;
  }

  /* Below this width the tab strip and the Discover button competed for one
     line. .explore-tabs is flex:1 with min-width:0, so instead of wrapping it
     shrank into a narrow scroller and clipped pills mid-word right beside the
     button - which read as the button covering them. Giving the tabs the whole
     line pushes the button underneath and lets the pills breathe. */
  .explore-tabs-row {
    flex-wrap: wrap;
    row-gap: 0.85rem;
  }

  .explore-tabs {
    flex: 1 1 100%;
  }

  .explore-discover-btn {
    margin-left: 0;
  }

  .explore-track {
    grid-auto-columns: calc((100% - 2rem) / 3);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.4rem 0;
  }

  .top-banner {
    min-height: 58vh;
  }

  .banner-content {
    padding: 4.6rem 1rem 3.2rem;
  }

  .banner-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.6rem);
    line-height: 1.18;
  }

  .banner-content p {
    font-size: 0.98rem;
  }

  .hero {
    min-height: auto;
    padding-top: 5.2rem;
  }

  .premium-showcase {
    min-height: auto;
    padding: 2.4rem 0 2.6rem;
  }

  .premium-inner h2 {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
  }

  .premium-copy h3 {
    font-size: clamp(1.55rem, 7vw, 2.3rem);
  }

  .premium-copy p {
    font-size: 1rem;
  }

  .special-section {
    padding: 2.2rem 0 1.4rem;
  }

  .special-head,
  .special-track-wrap {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .special-nav {
    width: 2.4rem;
    height: 2.4rem;
  }

  .special-track {
    grid-auto-columns: 100%;
    scroll-snap-type: x mandatory;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .special-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0 0.25rem;
  }

  .special-track-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .explore-track {
    grid-auto-columns: 100%;
    scroll-snap-type: x mandatory;
    gap: 0;
  }

  .explore-track .special-card {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    margin: 0 0.25rem;
  }

  .explore-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .special-body {
    min-height: auto;
    padding: 0.9rem 2.5rem 1.1rem 0.9rem;
  }

  .special-body h3 {
    min-height: auto;
    font-size: 0.98rem;
  }

  .special-tags {
    min-height: auto;
    margin-bottom: 0.6rem;
  }

  .special-image {
    height: 170px;
  }

  .promo-slide {
    height: 240px;
  }

  .promo-head {
    padding: 0 1.2rem;
  }

  .promo-carousel {
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .promo-overlay {
    padding: 1rem 1rem 1.1rem;
  }

  .promo-overlay h3 {
    font-size: 1.1rem;
  }

  .promo-overlay p {
    font-size: 0.92rem;
  }

  .trust-row,
  .tech-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .product-card {
    padding: 0.85rem;
  }

  .product-card h3 {
    font-size: 0.95rem;
  }

  .products-head {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .products-head select {
    width: 100%;
  }

  .filter-copy h2 {
    font-size: clamp(1.6rem, 7vw, 2.4rem);
  }

  .filter-life-text {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .contact-wrap {
    padding: 1.3rem;
    grid-template-columns: 1fr;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .btn {
    min-height: 48px;
    padding: 0.78rem 1.15rem;
  }

  .explore-tab {
    min-height: 40px;
  }

  .page-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .page-hero {
    padding-top: 5.2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .section-head h2 {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  .reveal {
    transform: translateY(24px);
  }

  .top-banner::before,
  .top-banner::after {
    display: none;
  }

  .banner-bubbles span {
    display: none;
  }

  .banner-bubbles span:nth-child(1),
  .banner-bubbles span:nth-child(3) {
    display: block;
    opacity: 0.6;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(1200px, calc(100% - 1.4rem));
  }

  .banner-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .banner-phone {
    text-align: center;
  }

  .special-track {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .special-head,
  .special-track-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .promo-head {
    padding: 0 1rem;
  }

  .promo-carousel {
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .premium-inner {
    padding: 0 1rem;
  }

  .premium-tabs {
    gap: 0.5rem;
  }

  .premium-tab {
    font-size: 0.95rem;
    padding: 0.28rem 0.3rem;
  }

  .premium-copy h3 {
    font-size: clamp(1.55rem, 9vw, 2.3rem);
  }

  .premium-finish-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  .premium-finishes {
    margin-top: 2rem;
  }

  .filter-wrap {
    padding: 0 1rem;
  }

  .filter-copy {
    padding: 1.3rem 1.1rem 1.1rem;
  }

  .filter-copy h2 {
    max-width: 14ch;
  }

  .filter-life-text {
    font-size: clamp(2rem, 14vw, 3rem);
    padding: 0 1.1rem 0.8rem;
  }

  .filter-feature-card img {
    height: 200px;
  }

  .explore-wrap {
    padding: 0 1rem;
  }

  .explore-track {
    grid-auto-columns: 100%;
    gap: 0;
  }

  .explore-tabs {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-wrap {
    flex-direction: column;
    gap: 0.7rem;
    text-align: center;
  }

  .floating-cta {
    right: 0.45rem;
    top: auto;
    bottom: 0.75rem;
    transform: none;
    flex-direction: row;
    align-items: flex-end;
    gap: 0.55rem;
  }

  .floating-book-demo {
    width: auto;
    height: auto;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.88rem;
  }

  .floating-whatsapp {
    width: 2.9rem;
    height: 2.9rem;
  }

  .site-header .container.nav-wrap {
    width: calc(100% - 1.4rem);
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.15s !important;
    scroll-behavior: auto !important;
  }

  .banner-bubbles span,
  .scroll-bg-orb,
  .premium-product img {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none !important;
  }
}

/* ============ About: Vision & Mission ============ */
.vm-section {
  background: #ffffff;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.vm-card {
  position: relative;
  padding: 2.2rem;
  border-radius: 1.4rem;
  background: linear-gradient(160deg, #ffffff 0%, #f3f7ff 100%);
  border: 1px solid rgba(13, 47, 122, 0.08);
  box-shadow: 0 12px 30px rgba(13, 47, 122, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 47, 122, 0.14);
}

.vm-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d2f7a, #173f9f);
  color: #ffffff;
  margin-bottom: 1rem;
}

.vm-icon svg {
  width: 28px;
  height: 28px;
}

.vm-card h3 {
  color: #0a1f4f;
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
}

.vm-card p {
  color: #3a4a6c;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 720px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }
}

/* ============ About: Journey Roadmap ============ */
.journey-section {
  background: linear-gradient(180deg, #f3f7ff 0%, #ffffff 100%);
}

.journey-roadmap {
  list-style: none;
  padding: 0;
  margin: 2.5rem 0 0;
  position: relative;
}

.journey-roadmap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #173f9f 0%, #2fb1ff 100%);
  transform: translateX(-50%);
  border-radius: 3px;
}

.journey-step {
  position: relative;
  width: 50%;
  padding: 1rem 2.5rem 1rem 0;
  margin-bottom: 1rem;
  box-sizing: border-box;
}

.journey-step:nth-child(even) {
  margin-left: 50%;
  padding: 1rem 0 1rem 2.5rem;
}

.journey-dot {
  position: absolute;
  top: 1.8rem;
  right: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #173f9f;
  box-shadow: 0 0 0 4px rgba(23, 63, 159, 0.12);
  z-index: 1;
}

.journey-step:nth-child(even) .journey-dot {
  right: auto;
  left: -10px;
}

.journey-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 12px 28px rgba(13, 47, 122, 0.08);
  border: 1px solid rgba(13, 47, 122, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(13, 47, 122, 0.14);
}

.journey-year {
  display: inline-block;
  background: linear-gradient(135deg, #0d2f7a, #173f9f);
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin: 0 0 0.6rem;
}

.journey-card h3 {
  color: #0a1f4f;
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.journey-card p {
  margin: 0;
  color: #3a4a6c;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .journey-roadmap::before {
    left: 14px;
  }
  .journey-step,
  .journey-step:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0.6rem 0 0.6rem 2.6rem;
  }
  .journey-dot,
  .journey-step:nth-child(even) .journey-dot {
    left: 5px;
    right: auto;
    top: 1.4rem;
  }
}

/* ==========================================================================
   Hero: hover-to-reveal text
   The banner copy stays hidden so the video plays unobstructed, and fades in
   only while the pointer is over the hero. Mouse/trackpad devices only —
   touch devices have no hover, so there the text behaves as before.
   Placed last so it wins over the .reveal / .reveal.in rules above.
   ========================================================================== */
@media (hover: hover) and (pointer: fine) {
  .top-banner .banner-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    pointer-events: none;
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s linear 0.45s;
  }

  .top-banner:hover .banner-content,
  .top-banner:focus-within .banner-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition:
      opacity 0.45s ease,
      transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
      visibility 0s;
  }

  /* Darkening overlay only while the copy is on screen, so the idle hero
     shows the video at full brightness. */
  .top-banner.has-video .banner-overlay {
    opacity: 0;
    transition: opacity 0.45s ease;
  }

  .top-banner.has-video:hover .banner-overlay,
  .top-banner.has-video:focus-within .banner-overlay {
    opacity: 1;
  }

  @media (prefers-reduced-motion: reduce) {
    .top-banner .banner-content,
    .top-banner:hover .banner-content,
    .top-banner:focus-within .banner-content {
      transform: none;
    }
  }
}

/* ============ About: team spotlight gallery ============ */
.team-spotlight-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.team-feature {
  margin: 2.2rem auto 0;
  max-width: 520px;
  border-radius: 1.2rem;
  overflow: hidden;
  border: 1px solid rgba(13, 47, 122, 0.1);
  box-shadow: 0 16px 38px rgba(13, 47, 122, 0.16);
}

.team-feature img {
  display: block;
  width: 100%;
  height: auto;
}

/* The four portraits play a supporting role under the group shot. */
.team-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  margin: 1.4rem auto 0;
  max-width: 860px;
}

.team-shot {
  margin: 0;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #050f28;
  border: 1px solid rgba(13, 47, 122, 0.1);
  box-shadow: 0 12px 30px rgba(13, 47, 122, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(13, 47, 122, 0.18);
}

.team-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.team-caption {
  margin: 1.6rem 0 0;
  text-align: center;
  color: #3a4a6c;
  font-size: 0.98rem;
}

@media (max-width: 900px) {
  .team-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .team-gallery {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

/* The About page stacks six sections; the default 5.5rem top+bottom doubles up
   at every seam into ~11rem of dead space. Scoped so other pages keep the
   roomier default rhythm. */
.page-about .section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.page-about .section:last-child {
  padding-bottom: 4.5rem;
}

/* Google Tag Manager <noscript> fallback iframe.
   The stock GTM snippet hides this with an inline style attribute; that is
   moved here so the Content-Security-Policy can keep style-src strict
   (no 'unsafe-inline'). */
.gtm-noscript {
  display: none;
  visibility: hidden;
}
