:root {
  --ink: #071116;
  --ink-soft: #0c1a20;
  --surface: #10242c;
  --surface-light: #f3f8f7;
  --white: #f9fdfc;
  --text: #c8d6d7;
  --muted: #879b9e;
  --cyan: #3dd5f3;
  --cyan-strong: #15bfe4;
  --teal: #25e0b3;
  --teal-dark: #0eaa88;
  --line: rgba(213, 247, 245, 0.13);
  --line-dark: rgba(10, 48, 53, 0.13);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
  --radius-lg: 30px;
  --radius-md: 20px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Cairo", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  right: 10px;
  padding: 10px 16px;
  background: var(--teal);
  color: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 17, 22, 0.9);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 62px;
  height: 44px;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
}

.brand-logo > img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: block;
  object-fit: contain;
}

.brand-logo.image-missing > img {
  display: none;
}

.brand-logo-fallback {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.brand-logo.image-missing .brand-logo-fallback {
  opacity: 1;
}

.brand-mark {
  width: 44px;
  height: 44px;
  position: relative;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 10px 8px;
  overflow: hidden;
  border: 1px solid rgba(61, 213, 243, 0.35);
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(61, 213, 243, 0.18), rgba(37, 224, 179, 0.04)),
    var(--surface);
}

.brand-mark::after {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: -8px;
  left: -6px;
  border-radius: 50%;
  background: var(--teal);
  filter: blur(8px);
}

.brand-mark-line {
  height: 3px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
}

.brand-mark-line:nth-child(1) {
  width: 20px;
}

.brand-mark-line:nth-child(2) {
  width: 27px;
}

.brand-mark-line:nth-child(3) {
  width: 15px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 800;
}

.brand-copy span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.7px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-inline: auto;
}

.primary-nav a {
  position: relative;
  color: #acbdbf;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: -10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--teal));
  transition: width 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 12px 25px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan-strong), var(--teal));
  box-shadow: 0 12px 35px rgba(37, 224, 179, 0.14);
  color: #041619;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(37, 224, 179, 0.24);
}

.button:focus-visible,
.menu-toggle:focus-visible,
.primary-nav a:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid rgba(61, 213, 243, 0.7);
  outline-offset: 4px;
}

.button-small {
  min-height: 44px;
  padding: 9px 19px;
  border-radius: 11px;
  font-size: 12px;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
  color: var(--white);
}

.button-secondary:hover {
  border-color: rgba(61, 213, 243, 0.45);
  box-shadow: none;
}

.menu-toggle {
  width: 46px;
  height: 44px;
  display: none;
  margin-right: auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin-block: 5px;
  border-radius: 2px;
  background: var(--white);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 75px) 0 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 45%, rgba(9, 75, 86, 0.25), transparent 30%),
    linear-gradient(180deg, #071116 0%, #08161b 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: linear-gradient(to bottom, black 15%, transparent 90%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}

.hero-glow-one {
  width: 430px;
  height: 430px;
  top: 18%;
  left: -260px;
  background: rgba(61, 213, 243, 0.08);
  box-shadow: 0 0 100px rgba(61, 213, 243, 0.1);
}

.hero-glow-two {
  width: 250px;
  height: 250px;
  right: 38%;
  bottom: -170px;
  background: rgba(37, 224, 179, 0.1);
  box-shadow: 0 0 90px rgba(37, 224, 179, 0.08);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 80px;
}

.eyebrow,
.section-kicker {
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 8px 13px;
  border: 1px solid rgba(37, 224, 179, 0.16);
  border-radius: 999px;
  background: rgba(37, 224, 179, 0.045);
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  position: relative;
  border-radius: 50%;
  background: var(--teal);
}

.eyebrow-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(37, 224, 179, 0.45);
  border-radius: inherit;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.65);
    opacity: 1;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.2;
}

.hero h1 span {
  display: block;
  background: linear-gradient(100deg, var(--cyan) 5%, var(--teal) 70%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 650px;
  margin: 27px 0 0;
  color: #adbec0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: 0;
  margin-top: 48px;
}

.hero-trust div {
  min-width: 135px;
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.hero-trust div:first-child {
  padding-right: 0;
  border-right: 0;
}

.hero-trust strong,
.hero-trust span {
  display: block;
}

.hero-trust strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.hero-trust span {
  color: var(--muted);
  font-size: 11px;
}

.hero-visual {
  min-height: 530px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-card {
  width: 330px;
  height: 390px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(61, 213, 243, 0.2);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(61, 213, 243, 0.11), transparent 38%),
    rgba(13, 31, 37, 0.8);
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.34),
    inset 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  transform: rotate(-3deg);
}

.visual-card::before {
  content: "";
  width: 170px;
  height: 170px;
  position: absolute;
  right: -85px;
  bottom: -85px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  opacity: 0.2;
  filter: blur(8px);
}

.logo-placeholder {
  width: 230px;
  min-height: 190px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.hero-logo {
  width: 100%;
  height: 185px;
  position: relative;
  z-index: 2;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.25));
}

.logo-placeholder.image-missing .hero-logo {
  display: none;
}

.logo-fallback {
  width: 145px;
  height: 145px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px dashed rgba(61, 213, 243, 0.45);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(61, 213, 243, 0.1), rgba(37, 224, 179, 0.03)),
    rgba(7, 17, 22, 0.3);
  color: var(--cyan);
}

.logo-placeholder.image-missing .logo-fallback {
  display: flex;
}

.logo-fallback strong {
  font-size: 27px;
  font-weight: 800;
  line-height: 1.2;
}

.logo-fallback small {
  margin-top: 5px;
  color: var(--teal);
  font-size: 10px;
}

.visual-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
  color: #a8babb;
  font-size: 11px;
}

.status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(61, 213, 243, 0.11);
  border-radius: 50%;
}

.orbit::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  top: 50%;
  right: -5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.orbit-one {
  width: 470px;
  height: 470px;
  animation: rotate 18s linear infinite;
}

.orbit-two {
  width: 380px;
  height: 380px;
  border-style: dashed;
  animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 17, 22, 0.8);
  box-shadow: var(--shadow);
  color: #b6c7c8;
  font-size: 11px;
  backdrop-filter: blur(10px);
}

.floating-chip span {
  color: var(--teal);
  font-size: 9px;
}

.chip-one {
  top: 95px;
  right: 2px;
}

.chip-two {
  top: 235px;
  left: -14px;
}

.chip-three {
  right: 18px;
  bottom: 70px;
}

.scroll-hint {
  width: 26px;
  height: 42px;
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  transform: translateX(50%);
}

.scroll-hint span {
  width: 3px;
  height: 7px;
  border-radius: 3px;
  background: var(--teal);
  animation: scroll-down 1.8s ease-in-out infinite;
}

@keyframes scroll-down {
  0%,
  100% {
    transform: translateY(-5px);
    opacity: 0.4;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

.section {
  position: relative;
  padding: 125px 0;
}

.about,
.programs,
.contact {
  background: var(--surface-light);
  color: #0b252b;
}

.about {
  border-bottom: 1px solid var(--line-dark);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
}

.about .section-kicker,
.programs .section-kicker,
.contact .section-kicker {
  color: var(--teal-dark);
}

.section-heading h2,
.services-intro h2,
.contact-copy h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -1.7px;
  line-height: 1.35;
}

.about-copy {
  padding-top: 35px;
}

.about-copy p {
  max-width: 700px;
  margin: 0;
  color: #496269;
}

.about-copy .lead {
  margin-bottom: 18px;
  color: #11353d;
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.9;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.about-points span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #29474e;
  font-size: 12px;
  font-weight: 600;
}

.about-points i {
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 18px;
  margin-top: 4px;
  border: 1px solid rgba(14, 170, 136, 0.3);
  border-radius: 50%;
  background: rgba(37, 224, 179, 0.08);
}

.about-points i::after {
  content: "";
  width: 5px;
  height: 3px;
  position: absolute;
  top: 6px;
  right: 5px;
  border-bottom: 2px solid var(--teal-dark);
  border-left: 2px solid var(--teal-dark);
  transform: rotate(-45deg);
}

.section-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 60px;
}

.section-top > p {
  max-width: 510px;
  margin: 0 0 5px;
  color: #587078;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  min-height: 640px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: #fff;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.program-card:hover {
  border-color: rgba(14, 170, 136, 0.35);
  box-shadow: 0 28px 55px rgba(11, 37, 43, 0.08);
  transform: translateY(-7px);
}

.program-card.featured {
  border-color: rgba(37, 224, 179, 0.22);
  background:
    radial-gradient(circle at 10% 90%, rgba(37, 224, 179, 0.1), transparent 35%),
    var(--ink-soft);
  color: var(--white);
  box-shadow: 0 26px 60px rgba(4, 23, 28, 0.16);
}

.featured-tag {
  position: absolute;
  z-index: 4;
  top: 45px;
  left: 44px;
  padding: 5px 9px;
  border-radius: 6px;
  background: rgba(37, 224, 179, 0.1);
  color: var(--teal);
  font-size: 9px;
  font-weight: 700;
}

.program-number {
  position: absolute;
  z-index: 4;
  top: 47px;
  left: 46px;
  padding: 4px 8px;
  border: 1px solid rgba(10, 48, 53, 0.1);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.88);
  color: #61767a;
  font-size: 10px;
  letter-spacing: 1px;
  backdrop-filter: blur(7px);
}

.featured .program-number {
  display: none;
}

.program-media {
  height: 180px;
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(14, 170, 136, 0.14);
  border-radius: 15px;
  background:
    linear-gradient(145deg, rgba(61, 213, 243, 0.08), rgba(37, 224, 179, 0.1)),
    #edf6f4;
}

.featured .program-media {
  border-color: rgba(37, 224, 179, 0.19);
  background:
    linear-gradient(145deg, rgba(61, 213, 243, 0.07), rgba(37, 224, 179, 0.05)),
    rgba(255, 255, 255, 0.025);
}

.program-media::after {
  content: "";
  width: 70px;
  height: 70px;
  position: absolute;
  right: -25px;
  bottom: -30px;
  border: 1px solid rgba(14, 170, 136, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(14, 170, 136, 0.025);
}

.program-media img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 3;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.35s ease;
}

.program-card:hover .program-media img {
  transform: scale(1.025);
}

.program-media.image-missing img {
  display: none;
}

.media-fallback {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #42666d;
  text-align: center;
}

.media-fallback::before {
  content: "";
  width: 46px;
  height: 31px;
  margin-bottom: 12px;
  border: 1px solid rgba(14, 170, 136, 0.3);
  border-radius: 5px;
  background:
    linear-gradient(135deg, transparent 43%, rgba(14, 170, 136, 0.12) 44%, rgba(14, 170, 136, 0.12) 56%, transparent 57%),
    rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 0 -2px #edf6f4, 0 5px 0 -2px rgba(14, 170, 136, 0.2);
}

.media-fallback span {
  font-size: 11px;
  font-weight: 700;
}

.media-fallback small {
  margin-top: 3px;
  color: #799397;
  font-size: 8px;
  direction: ltr;
}

.featured .media-fallback {
  color: #b0c5c6;
}

.featured .media-fallback small {
  color: #728a8d;
}

.featured .media-fallback::before {
  border-color: rgba(37, 224, 179, 0.28);
  background:
    linear-gradient(135deg, transparent 43%, rgba(37, 224, 179, 0.14) 44%, rgba(37, 224, 179, 0.14) 56%, transparent 57%),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 4px 0 -2px #10242c, 0 5px 0 -2px rgba(37, 224, 179, 0.22);
}

.card-label {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
}

.featured .card-label {
  color: var(--teal);
}

.program-card h3 {
  min-height: 68px;
  margin: 7px 0 14px;
  font-size: 21px;
  line-height: 1.6;
}

.program-card p {
  margin: 0;
  color: #5f767b;
  font-size: 13px;
}

.featured p {
  color: #99adaf;
}

.card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 25px;
}

.card-features span {
  padding: 4px 9px;
  border: 1px solid rgba(10, 48, 53, 0.1);
  border-radius: 999px;
  background: #f4f8f7;
  color: #47636a;
  font-size: 9px;
}

.featured .card-features span {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: #a7b8ba;
}

.text-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 25px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translateX(-4px);
}

.featured .text-link,
.services .text-link {
  color: var(--teal);
}

.services {
  background: #09171c;
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(255, 255, 255, 0.026) 50%, transparent 50.05%),
    radial-gradient(circle at 15% 35%, rgba(61, 213, 243, 0.055), transparent 25%);
}

.services-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 95px;
}

.services-intro {
  position: sticky;
  top: 130px;
  height: fit-content;
  padding-left: 25px;
}

.services-intro p {
  max-width: 430px;
  margin: 22px 0 0;
  color: #91a6a8;
}

.services-intro .text-link {
  padding-top: 36px;
}

.services-list {
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  align-items: center;
  gap: 25px;
  padding: 28px 5px;
  border-bottom: 1px solid var(--line);
  transition:
    padding 0.2s ease,
    background 0.2s ease;
}

.service-item:hover {
  padding-right: 16px;
  background: linear-gradient(90deg, transparent, rgba(37, 224, 179, 0.03));
}

.service-index {
  color: var(--teal);
  font-size: 10px;
}

.service-item h3 {
  margin: 0 0 3px;
  font-size: 19px;
}

.service-item p {
  margin: 0;
  color: #83999b;
  font-size: 12px;
}

.service-arrow {
  color: #4d676a;
  font-size: 20px;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.service-item:hover .service-arrow {
  color: var(--teal);
  transform: translate(-3px, 3px);
}

.why-masar {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(4, 20, 25, 0.2), rgba(4, 20, 25, 0.8)),
    #0b2229;
}

.why-glow {
  width: 700px;
  height: 700px;
  position: absolute;
  right: -390px;
  top: -270px;
  border: 1px solid rgba(37, 224, 179, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 100px rgba(37, 224, 179, 0.05),
    inset 0 0 100px rgba(61, 213, 243, 0.04);
}

.section-top.light > p {
  color: #9aadaf;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-card {
  min-height: 290px;
  padding: 35px 28px;
  border-left: 1px solid var(--line);
  transition: background 0.25s ease;
}

.why-card:last-child {
  border-left: 0;
}

.why-card:hover {
  background: rgba(61, 213, 243, 0.035);
}

.why-number {
  color: var(--teal);
  font-size: 10px;
}

.why-card h3 {
  min-height: 64px;
  margin: 70px 0 12px;
  font-size: 18px;
  line-height: 1.7;
}

.why-card p {
  margin: 0;
  color: #849a9d;
  font-size: 12px;
}

.quote-section {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 80px 0;
  background: var(--surface-light);
}

.quote-card {
  min-height: 310px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 70px;
  padding: 56px 65px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(115deg, rgba(61, 213, 243, 0.94), rgba(37, 224, 179, 0.97)),
    var(--teal);
  box-shadow: 0 30px 80px rgba(6, 42, 44, 0.16);
  color: #062329;
}

.quote-pattern {
  width: 390px;
  height: 390px;
  position: absolute;
  left: -120px;
  bottom: -240px;
  border: 1px solid rgba(3, 37, 42, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(3, 37, 42, 0.03),
    0 0 0 100px rgba(3, 37, 42, 0.025);
}

.quote-copy {
  position: relative;
  z-index: 1;
}

.quote-copy .section-kicker {
  color: rgba(6, 35, 41, 0.7);
}

.quote-copy h2 {
  max-width: 750px;
  font-size: clamp(31px, 4vw, 49px);
}

.quote-copy p {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(6, 35, 41, 0.72);
}

.button-dark {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: var(--ink);
  box-shadow: 0 15px 35px rgba(5, 22, 27, 0.2);
  color: var(--white);
}

.contact {
  padding-top: 125px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 95px;
}

.contact-copy p {
  max-width: 480px;
  margin: 22px 0 0;
  color: #587078;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact-card {
  min-height: 170px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: 17px;
  background: #fff;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.contact-card:hover {
  border-color: rgba(14, 170, 136, 0.35);
  transform: translateY(-3px);
}

.contact-card-wide {
  grid-column: 1 / -1;
  min-height: 170px;
}

.contact-label {
  color: #6d8388;
  font-size: 10px;
}

.contact-card strong {
  overflow-wrap: anywhere;
  color: #12343b;
  font-size: clamp(16px, 2vw, 21px);
  text-align: right;
}

.contact-action {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
}

.page-main {
  min-height: 70vh;
  background: var(--surface-light);
  color: #0b252b;
}

.page-hero {
  min-height: 510px;
  position: relative;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 100px) 0 85px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 40%, rgba(61, 213, 243, 0.1), transparent 27%),
    radial-gradient(circle at 80% 85%, rgba(37, 224, 179, 0.09), transparent 26%),
    var(--ink);
  color: var(--white);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 95%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  color: #82989b;
  font-size: 11px;
}

.breadcrumb a {
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb span:last-child {
  color: var(--teal);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.25;
}

.page-hero p {
  max-width: 740px;
  margin: 22px 0 0;
  color: #a8babc;
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 2;
}

.content-section {
  padding: 110px 0;
}

.content-section.alt {
  border-block: 1px solid var(--line-dark);
  background: #eaf2f1;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.content-title .section-kicker {
  color: var(--teal-dark);
}

.content-title h2 {
  margin: 0;
  font-size: clamp(31px, 4vw, 49px);
  letter-spacing: -1.4px;
  line-height: 1.45;
}

.rich-copy {
  color: #4d686e;
}

.rich-copy .lead {
  margin-top: 0;
  color: #173b43;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700;
  line-height: 1.9;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.value-grid,
.process-grid,
.service-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.value-card,
.process-card,
.catalog-card,
.policy-card {
  border: 1px solid var(--line-dark);
  border-radius: 18px;
  background: #fff;
}

.value-card,
.process-card {
  min-height: 235px;
  padding: 28px;
}

.value-card span,
.process-card span,
.catalog-card > span {
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 800;
}

.value-card h3,
.process-card h3,
.catalog-card h3 {
  margin: 42px 0 10px;
  color: #15383f;
  font-size: 18px;
}

.value-card p,
.process-card p,
.catalog-card p {
  margin: 0;
  color: #60777c;
  font-size: 12px;
}

.inner-programs {
  padding: 110px 0;
}

.inner-programs .program-grid {
  margin-top: 48px;
}

.inner-programs .program-card {
  min-height: 665px;
}

.program-card .button {
  width: 100%;
  margin-top: auto;
}

.program-card:not(.featured) .button-secondary {
  border-color: rgba(14, 170, 136, 0.25);
  background: rgba(14, 170, 136, 0.06);
  color: #0b6f5d;
}

.program-card:not(.featured) .button-secondary:hover {
  border-color: rgba(14, 170, 136, 0.42);
  background: rgba(14, 170, 136, 0.1);
}

.services-page-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(61, 213, 243, 0.05), transparent 23%),
    #09171c;
  color: var(--white);
}

.services-page-section .section-top > p {
  color: #91a6a8;
}

.service-catalog {
  grid-template-columns: repeat(3, 1fr);
}

.catalog-card {
  min-height: 260px;
  position: relative;
  padding: 29px;
  overflow: hidden;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.catalog-card::after {
  content: "";
  width: 90px;
  height: 90px;
  position: absolute;
  left: -45px;
  bottom: -50px;
  border: 1px solid rgba(37, 224, 179, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 25px rgba(37, 224, 179, 0.025);
}

.catalog-card:hover {
  border-color: rgba(37, 224, 179, 0.25);
  background: rgba(37, 224, 179, 0.035);
  transform: translateY(-4px);
}

.catalog-card h3 {
  margin-top: 55px;
  color: var(--white);
}

.catalog-card p {
  color: #879da0;
}

.contact-page-section {
  padding: 110px 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.contact-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
}

.contact-detail span {
  color: #6d8388;
  font-size: 10px;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  color: #15383f;
  font-size: 13px;
}

.contact-location {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #fff;
}

.contact-location > span {
  color: #6d8388;
  font-size: 10px;
}

.contact-location strong {
  color: #15383f;
  font-size: 13px;
}

.contact-location p {
  margin: 0;
  color: #60777c;
  font-size: 11px;
}

.contact-location .button {
  width: 100%;
  margin-top: 8px;
}

.contact-form {
  padding: 35px;
  border: 1px solid var(--line-dark);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 25px 60px rgba(12, 46, 52, 0.07);
}

.contact-form h2 {
  margin: 0 0 7px;
  color: #14363d;
  font-size: 27px;
}

.contact-form > p {
  margin: 0 0 28px;
  color: #70868a;
  font-size: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #36565c;
  font-size: 11px;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 14px;
  border: 1px solid #d4e0df;
  border-radius: 11px;
  outline: none;
  background: #f8fbfa;
  color: #15383f;
  font: inherit;
  font-size: 12px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 135px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 0 0 3px rgba(14, 170, 136, 0.09);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.form-status {
  display: none;
  margin: 0;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 700;
}

.form-status.visible {
  display: block;
}

.policy-section {
  padding: 110px 0;
}

.policy-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 70px;
}

.policy-aside {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.policy-aside p {
  color: #6b8185;
  font-size: 12px;
}

.policy-card {
  padding: 38px;
}

.policy-card section + section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
}

.policy-card h2 {
  margin: 0 0 12px;
  color: #15383f;
  font-size: 21px;
}

.policy-card p,
.policy-card li {
  color: #587176;
  font-size: 13px;
}

.policy-card ul {
  margin: 12px 0 0;
  padding-right: 19px;
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--header-height) + 70px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(37, 224, 179, 0.09), transparent 30%),
    var(--ink);
}

.error-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
}

.error-code {
  display: block;
  background: linear-gradient(100deg, var(--cyan), var(--teal));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(100px, 20vw, 210px);
  font-weight: 800;
  letter-spacing: -10px;
  line-height: 0.85;
}

.error-content h1 {
  margin: 35px 0 10px;
  font-size: clamp(29px, 4vw, 44px);
}

.error-content p {
  margin: 0 auto 30px;
  color: #91a6a8;
}

.product-hero {
  min-height: 750px;
  position: relative;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 80px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 40%, rgba(61, 213, 243, 0.08), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(37, 224, 179, 0.08), transparent 25%),
    var(--ink);
  color: var(--white);
}

.product-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 65px 65px;
  mask-image: linear-gradient(to bottom, black 12%, transparent 94%);
}

.product-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 65px;
}

.product-hero-copy h1 {
  margin: 0;
  font-size: clamp(44px, 5.5vw, 74px);
  font-weight: 800;
  letter-spacing: -2.7px;
  line-height: 1.25;
}

.product-hero-copy > p {
  max-width: 650px;
  margin: 23px 0 0;
  color: #a9bbbd;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 2;
}

.product-hero-visual {
  min-width: 0;
  position: relative;
}

.product-hero-visual::before {
  content: "";
  width: 310px;
  height: 310px;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(37, 224, 179, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(61, 213, 243, 0.025);
  transform: translate(-50%, -50%);
}

.product-shot-frame {
  position: relative;
  z-index: 2;
  padding: 13px;
  border: 1px solid rgba(61, 213, 243, 0.2);
  border-radius: 24px;
  background: rgba(13, 31, 37, 0.78);
  box-shadow: 0 42px 90px rgba(0, 0, 0, 0.34);
  transform: perspective(1200px) rotateY(4deg) rotateX(1deg);
}

.product-shot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  background: #e9efef;
}

.product-shot-label {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: #9eb2b4;
  font-size: 9px;
}

.product-shot-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px var(--teal);
}

.product-overview .text-link {
  padding-top: 28px;
}

.product-features-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(61, 213, 243, 0.055), transparent 25%),
    #09171c;
  color: var(--white);
}

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.product-feature-card {
  min-height: 265px;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transition: background 0.2s ease;
}

.product-feature-card:hover {
  background: rgba(37, 224, 179, 0.035);
}

.product-feature-card > span {
  color: var(--teal);
  font-size: 10px;
}

.product-feature-card h3 {
  margin: 60px 0 10px;
  font-size: 18px;
}

.product-feature-card p {
  margin: 0;
  color: #849a9d;
  font-size: 12px;
}

.inventory-gallery-section {
  padding: 110px 0;
  background: var(--surface-light);
  color: #0b252b;
}

.inventory-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(12, 46, 52, 0.045);
  content-visibility: auto;
  contain-intrinsic-size: 520px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gallery-card:hover {
  border-color: rgba(14, 170, 136, 0.3);
  box-shadow: 0 24px 55px rgba(12, 46, 52, 0.08);
  transform: translateY(-4px);
}

.gallery-image-button {
  width: 100%;
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line-dark);
  background: #e9efef;
  cursor: zoom-in;
}

.gallery-image-button img {
  width: 100%;
  aspect-ratio: 16 / 10.8;
  display: block;
  object-fit: contain;
  background: #e9efef;
  transition: transform 0.3s ease;
}

.gallery-image-button > span {
  position: absolute;
  right: 50%;
  bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(7, 17, 22, 0.84);
  color: #fff;
  font-size: 9px;
  opacity: 0;
  transform: translate(50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.gallery-image-button:hover img {
  transform: scale(1.015);
}

.gallery-image-button:hover > span,
.gallery-image-button:focus-visible > span {
  opacity: 1;
  transform: translate(50%, 0);
}

.gallery-image-button:focus-visible {
  outline: 3px solid rgba(14, 170, 136, 0.45);
  outline-offset: -3px;
}

.gallery-card figcaption {
  padding: 23px 25px 25px;
}

.gallery-card h3 {
  margin: 0 0 6px;
  color: #15383f;
  font-size: 16px;
}

.gallery-card p {
  margin: 0;
  color: #687f84;
  font-size: 11px;
}

.inventory-faq-section {
  padding: 110px 0;
  background: #eaf2f1;
  color: #0b252b;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}

.faq-layout .content-title {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-layout .content-title p {
  color: #697f84;
  font-size: 12px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 24px 0 24px 45px;
  color: #15383f;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 22px;
  left: 5px;
  color: var(--teal-dark);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  margin: -7px 0 24px;
  color: #5f767b;
  font-size: 12px;
}

.inventory-quote {
  padding-top: 80px;
}

.gallery-dialog {
  width: min(94vw, 1180px);
  max-height: 92vh;
  padding: 14px;
  border: 1px solid rgba(61, 213, 243, 0.24);
  border-radius: 20px;
  background: #071116;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
  color: var(--white);
}

.gallery-dialog::backdrop {
  background: rgba(2, 9, 12, 0.82);
  backdrop-filter: blur(7px);
}

.gallery-dialog img {
  width: 100%;
  max-height: calc(92vh - 85px);
  display: block;
  border-radius: 12px;
  object-fit: contain;
  background: #e9efef;
}

.gallery-dialog p {
  margin: 10px 6px 0;
  color: #a5b8ba;
  font-size: 12px;
}

.gallery-dialog-close {
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 2;
  top: 23px;
  left: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(7, 17, 22, 0.88);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.site-footer {
  background: #061015;
}

.footer-top {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.7fr;
  align-items: center;
  gap: 70px;
  padding-block: 55px;
  border-bottom: 1px solid var(--line);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
}

.footer-nav a {
  color: #7e9396;
  font-size: 11px;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--teal);
}

.domain-link {
  justify-self: end;
  color: var(--teal);
  font-size: 13px;
  direction: ltr;
}

.footer-location {
  max-width: 310px;
  display: grid;
  justify-self: end;
  gap: 5px;
  color: #7e9396;
  font-size: 10px;
}

.footer-location strong {
  color: #a5b6b8;
  font-size: 10px;
}

.footer-location .domain-link {
  justify-self: start;
  margin-top: 5px;
}

.footer-bottom {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: #63777a;
  font-size: 10px;
}

.footer-bottom a {
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--teal);
}

.legal-links {
  display: flex;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: #19bd73;
  box-shadow: 0 15px 40px rgba(8, 51, 38, 0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  box-shadow: 0 19px 47px rgba(8, 51, 38, 0.45);
  transform: translateY(-3px);
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 19px;
  transform: rotate(-35deg);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

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

@media (max-width: 1060px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    gap: 20px;
  }

  .primary-nav {
    gap: 16px;
  }

  .primary-nav a {
    font-size: 11px;
  }

  .hero-layout {
    gap: 35px;
  }

  .hero-visual {
    transform: scale(0.9);
  }

  .about-layout,
  .services-layout,
  .contact-layout {
    gap: 55px;
  }

  .why-card {
    padding-inline: 20px;
  }
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    z-index: 98;
    top: calc(var(--header-height) + 8px);
    right: 20px;
    left: 20px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(7, 17, 22, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  .primary-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding-top: 135px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions {
    margin-inline: auto;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    min-height: 450px;
    margin-top: 20px;
    transform: scale(0.92);
  }

  .scroll-hint {
    display: none;
  }

  .about-layout,
  .services-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .program-card:last-child {
    grid-column: 1 / -1;
  }

  .services-intro {
    position: static;
    padding-left: 0;
  }

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

  .why-card:nth-child(2) {
    border-left: 0;
  }

  .why-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .quote-card {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .quote-card .button {
    width: fit-content;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-nav {
    justify-content: flex-end;
  }

  .domain-link {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .content-grid,
  .contact-page-grid,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .value-grid,
  .process-grid,
  .service-catalog {
    grid-template-columns: 1fr 1fr;
  }

  .policy-aside {
    position: static;
  }

  .product-hero {
    min-height: auto;
    padding-top: 140px;
  }

  .product-hero-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-hero-copy {
    text-align: center;
  }

  .product-hero-copy .breadcrumb,
  .product-hero-copy .hero-actions {
    justify-content: center;
  }

  .product-hero-copy > p {
    margin-inline: auto;
  }

  .product-hero-visual {
    width: min(100%, 720px);
    margin-inline: auto;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .faq-layout .content-title {
    position: static;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy span {
    font-size: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-logo {
    width: 50px;
    height: 40px;
    flex-basis: 50px;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 65px;
  }

  .hero h1 {
    font-size: clamp(37px, 12vw, 53px);
    letter-spacing: -2px;
  }

  .hero-copy > p {
    font-size: 15px;
    line-height: 1.9;
  }

  .hero-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: right;
  }

  .hero-trust div,
  .hero-trust div:first-child {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    padding: 0;
    border: 0;
  }

  .hero-trust strong {
    margin: 0;
  }

  .hero-visual {
    min-height: 390px;
    margin: -10px -25px 0;
    transform: scale(0.78);
  }

  .section {
    padding: 85px 0;
  }

  .about-layout {
    gap: 35px;
  }

  .section-heading h2,
  .services-intro h2,
  .contact-copy h2,
  .quote-copy h2 {
    font-size: 33px;
    letter-spacing: -1px;
  }

  .about-copy .lead {
    font-size: 18px;
  }

  .about-points {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .section-top {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

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

  .program-card:last-child {
    grid-column: auto;
  }

  .program-card {
    min-height: 610px;
  }

  .services-layout {
    gap: 48px;
  }

  .service-item {
    grid-template-columns: 30px 1fr;
    gap: 15px;
  }

  .service-arrow {
    display: none;
  }

  .service-item h3 {
    font-size: 16px;
  }

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

  .why-card,
  .why-card:nth-child(2),
  .why-card:last-child {
    min-height: 265px;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .why-card:last-child {
    border-bottom: 0;
  }

  .why-card h3 {
    margin-top: 46px;
  }

  .quote-section {
    padding: 45px 0;
  }

  .quote-card {
    min-height: 0;
    padding: 38px 25px;
    border-radius: 23px;
  }

  .quote-card .button {
    width: 100%;
  }

  .contact {
    padding-top: 85px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-card-wide {
    grid-column: auto;
  }

  .contact-card {
    min-height: 150px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-nav {
    justify-content: flex-start;
  }

  .domain-link {
    grid-column: auto;
  }

  .footer-location {
    justify-self: start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 20px;
  }

  .legal-links {
    flex-wrap: wrap;
  }

  .page-hero {
    min-height: 440px;
    padding-bottom: 65px;
  }

  .page-hero h1 {
    font-size: 39px;
    letter-spacing: -1.4px;
  }

  .content-section,
  .inner-programs,
  .services-page-section,
  .contact-page-section,
  .policy-section {
    padding: 80px 0;
  }

  .value-grid,
  .process-grid,
  .service-catalog {
    grid-template-columns: 1fr;
  }

  .value-card,
  .process-card,
  .catalog-card {
    min-height: 220px;
  }

  .inner-programs .program-card {
    min-height: 630px;
  }

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

  .form-field.full {
    grid-column: auto;
  }

  .contact-form,
  .policy-card {
    padding: 25px 20px;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .button {
    width: 100%;
  }

  .product-hero {
    padding-top: 118px;
    padding-bottom: 70px;
  }

  .product-hero-copy h1 {
    font-size: 39px;
    letter-spacing: -1.6px;
  }

  .product-hero-copy .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-shot-frame {
    padding: 8px;
    border-radius: 17px;
    transform: none;
  }

  .product-shot-frame img {
    border-radius: 10px;
  }

  .product-features-section,
  .inventory-gallery-section,
  .inventory-faq-section {
    padding: 80px 0;
  }

  .product-feature-grid,
  .inventory-gallery {
    grid-template-columns: 1fr;
  }

  .product-feature-card {
    min-height: 225px;
  }

  .product-feature-card h3 {
    margin-top: 42px;
  }

  .gallery-card figcaption {
    padding: 20px;
  }

  .gallery-image-button > span {
    display: none;
  }

  .faq-list summary {
    padding-left: 38px;
    font-size: 14px;
  }

  .gallery-dialog {
    width: 96vw;
    padding: 8px;
    border-radius: 14px;
  }

  .gallery-dialog-close {
    top: 15px;
    left: 15px;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;
    padding: 7px;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }

  .whatsapp-icon {
    width: 36px;
    height: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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