:root {
  --bg: #f0f4f4;
  --bg-dark: #0d3a3c;
  --surface: #ffffff;
  --text: #1b3644;
  --muted: #5a7274;
  --primary: #005b5e;
  --primary-dark: #134e4a;
  --accent: #26a69a;
  --accent-2: #167d7d;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
  --max: min(1180px, calc(100% - 2.4rem));
  --radius: 20px;
  --shadow: 0 24px 60px rgba(13, 58, 60, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Sans Arabic", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

body.nav-menu-open {
  overflow: hidden;
  touch-action: none;
}

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

a {
  color: inherit;
}

.container {
  width: var(--max);
  margin-inline: auto;
}

.glass {
  background: var(--glass);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: #fff;
  font-size: 0.8rem;
  padding: 0.45rem 0;
}

.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.top-bar a:hover {
  opacity: 0.9;
}

.top-bar-phones {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Phone icon sprite */
.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon-phone {
  display: block;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  fill: none;
  color: inherit;
}

.icon-phone--sm {
  width: 1rem;
  height: 1rem;
}

.icon-phone--md {
  width: 1.125rem;
  height: 1.125rem;
}

.icon-phone--lg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-phone--xl {
  width: 1.35rem;
  height: 1.35rem;
}

.icon-phone-bubble {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(38, 166, 154, 0.14);
  color: var(--primary);
  transition: background 0.2s ease, color 0.2s ease;
}

.icon-phone-bubble--pill {
  width: 2.15rem;
  height: 2.15rem;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.icon-phone-bubble--nav {
  width: 1.85rem;
  height: 1.85rem;
  background: rgba(38, 166, 154, 0.16);
  color: var(--primary);
}

/* Header */
.header-stack {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid rgba(0, 91, 94, 0.08);
}

.site-header--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 0 0.75rem;
}

.brand {
  text-decoration: none;
}

.brand__img--mark {
  display: none;
}

.brand--center img.brand__img--full {
  height: clamp(52px, 10vw, 64px);
  width: auto;
  max-width: min(320px, 82vw);
  margin-inline: auto;
  object-fit: contain;
}

.site-header--center .nav-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: auto;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: center;
}

.nav-links--bar {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.nav-links .nav-item-link {
  text-decoration: none;
  padding: 0.25rem 0;
  border-radius: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s ease;
}

.nav-links--bar .nav-item-link:hover,
.nav-links--bar .nav-item-link.active {
  background: none;
  color: var(--primary);
}

.nav-cta {
  display: none;
}

.menu-toggle,
.nav-mobile-head,
.nav-mobile-section,
.nav-item-ico,
.nav-mobile-cta {
  display: none;
}

.nav-mobile-links {
  display: contents;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-stage {
  position: relative;
  min-height: clamp(420px, 72svh, 640px);
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #b8ddd9 0%, #dceeed 35%, #e8f4f3 65%, #c5e8e6 100%);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  background-size: 220% 100%;
  animation: heroShimmer 9s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes heroShimmer {
  0% {
    background-position: 120% 0;
  }
  100% {
    background-position: -120% 0;
  }
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: url("../images/hero-poster.jpg") center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
  filter: saturate(0.9) contrast(1.05) brightness(0.95);
}

.hero-media.is-video-ready .hero-video {
  opacity: 1;
}

.hero-media:not(.is-video-ready) .hero-video {
  opacity: 0;
}

.hero-media.is-video-ready .hero-mesh {
  opacity: 0.45;
}

.hero-media.is-video-ready .hero-pattern {
  opacity: 0.35;
}

.hero-media.is-video-ready .hero-orb {
  opacity: 0.4;
}

.hero-mesh {
  position: absolute;
  inset: -30%;
  z-index: 1;
  transition: opacity 0.8s ease;
  background:
    radial-gradient(ellipse 60% 50% at 15% 25%, rgba(38, 166, 154, 0.65), transparent 58%),
    radial-gradient(ellipse 55% 48% at 85% 75%, rgba(0, 91, 94, 0.6), transparent 55%),
    radial-gradient(ellipse 45% 40% at 50% 50%, rgba(0, 91, 94, 0.25), transparent 50%);
  animation: heroMesh 18s ease-in-out infinite alternate;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: url("../images/hero-pattern.svg") center / 520px repeat;
  opacity: 0.85;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 3;
  opacity: 0.75;
  animation: heroOrb 14s ease-in-out infinite;
}

.hero-orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  top: -5%;
  right: -5%;
  background: rgba(38, 166, 154, 0.7);
}

.hero-orb--2 {
  width: min(380px, 50vw);
  height: min(380px, 50vw);
  bottom: -8%;
  left: -8%;
  background: rgba(0, 91, 94, 0.65);
  animation-delay: -4s;
}

.hero-orb--3 {
  width: min(260px, 35vw);
  height: min(260px, 35vw);
  top: 40%;
  left: 38%;
  background: rgba(255, 255, 255, 0.5);
  animation-delay: -7s;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(240, 244, 244, 0.62) 50%, rgba(240, 244, 244, 0.72) 100%),
    linear-gradient(115deg, rgba(0, 91, 94, 0.12) 0%, transparent 45%, rgba(38, 166, 154, 0.1) 100%);
  pointer-events: none;
}

.hero-media.is-video-ready + .hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(240, 244, 244, 0.55) 50%, rgba(240, 244, 244, 0.65) 100%),
    linear-gradient(115deg, rgba(0, 91, 94, 0.15) 0%, transparent 45%, rgba(38, 166, 154, 0.12) 100%);
}

.hero-inner {
  position: relative;
  z-index: 6;
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.glass-hero {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: clamp(20px, 4vw, 28px);
  padding: clamp(1.75rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  box-shadow:
    0 32px 80px rgba(13, 58, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-content {
  color: var(--text);
}

@keyframes heroMesh {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-3%, -2%) scale(1.05);
  }
}

@keyframes heroOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -18px) scale(1.08);
  }
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: var(--muted);
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-teal {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  padding: 0.85rem 1.65rem;
  box-shadow: 0 12px 28px rgba(0, 91, 94, 0.28);
}

.btn-teal-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 0.8rem 1.55rem;
}

.btn-teal-outline:hover {
  background: rgba(0, 91, 94, 0.06);
}

/* Hero stats bar */
.hero-stats {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
}

.hero-stats__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.hero-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

/* Sections */
.section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
  border-radius: clamp(28px, 5vw, 48px);
  margin-inline: clamp(0.5rem, 2vw, 1.25rem);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.65rem;
}

.section-dark .eyebrow {
  color: var(--accent);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head.center {
  text-align: center;
  margin-inline: auto;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

/* About — editorial layout */
.about-mobile {
  display: none;
}

.section-about {
  padding-block: clamp(3rem, 7vw, 5.5rem);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr) minmax(0, 0.9fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-intro__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
}

.about-intro__text {
  margin: 0;
  max-width: 16rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.about-intro__hero {
  border-radius: clamp(28px, 4vw, 40px);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}

.about-intro__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__thumb {
  border-radius: clamp(20px, 3vw, 28px);
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 32px rgba(0, 91, 94, 0.12);
  aspect-ratio: 16 / 10;
}

.about-intro__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-intro__subtitle {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.about-intro__philosophy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.about-principals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.2fr) minmax(0, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.about-principals__band {
  background: linear-gradient(180deg, #e6ecec 0%, #dfe8e8 100%);
  border-radius: clamp(40px, 6vw, 64px);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 91, 94, 0.08);
}

.about-principals__heading {
  margin: 0 0 1.25rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.about-pills li {
  flex: 0 0 auto;
}

.about-pills img {
  width: clamp(72px, 10vw, 110px);
  height: clamp(44px, 6vw, 64px);
  object-fit: cover;
  border-radius: 999px;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 91, 94, 0.15);
}

.about-principals__desc {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
}

.about-principals__branch {
  text-align: center;
}

.about-principals__photo {
  border-radius: clamp(24px, 3vw, 32px);
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  max-width: 220px;
  margin-inline: auto;
}

.about-principals__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-principals__branch h4 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

.about-principals__branch p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.about-stats {
  margin-top: 0;
}

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

.stat-card {
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1.1;
}

.stat-card span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Services — luxury (large screens) */
.section-services {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.services-compact {
  display: none;
}

.services-mobile {
  display: none;
}

.services-luxury {
  position: relative;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
}

.services-luxury__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.services-luxury__pattern {
  position: absolute;
  inset: -20% -10%;
  background: url("../images/hero-pattern.svg") center / 520px repeat;
  opacity: 0.22;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.services-luxury__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.services-luxury__glow--a {
  width: min(420px, 50vw);
  height: min(420px, 50vw);
  top: -8%;
  inset-inline-end: -6%;
  background: rgba(38, 166, 154, 0.28);
}

.services-luxury__glow--b {
  width: min(360px, 45vw);
  height: min(360px, 45vw);
  bottom: 5%;
  inset-inline-start: -8%;
  background: rgba(0, 91, 94, 0.2);
}

.services-liquid {
  position: absolute;
  opacity: 0.35;
  animation: liquidFloat 16s ease-in-out infinite;
}

.services-liquid--1 {
  width: clamp(90px, 12vw, 140px);
  height: clamp(70px, 10vw, 110px);
  top: 18%;
  inset-inline-start: 8%;
  animation-delay: -3s;
}

.services-liquid--2 {
  width: clamp(60px, 8vw, 100px);
  height: clamp(50px, 7vw, 85px);
  bottom: 25%;
  inset-inline-end: 12%;
  animation-delay: -8s;
  opacity: 0.25;
}

.services-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.services-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(0, 91, 94, 0.12);
  box-shadow: 0 8px 24px rgba(13, 58, 60, 0.06);
}

.services-tag svg {
  color: var(--accent);
}

.services-head__title {
  margin: 0.75rem 0 0;
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

.services-head__aside {
  max-width: 22rem;
  margin-inline-start: auto;
  text-align: start;
}

.services-head__aside p {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.35rem 0.7rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(0, 91, 94, 0.14);
  box-shadow:
    0 12px 32px rgba(13, 58, 60, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.services-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 40px rgba(13, 58, 60, 0.14);
}

.services-cta__icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary-dark);
  color: #fff;
}

.services-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 1rem);
  position: relative;
  z-index: 1;
}

.service-glass-card {
  border-radius: clamp(22px, 2vw, 28px);
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(13, 58, 60, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-glass-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(13, 58, 60, 0.18);
}

.service-glass-card__link {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4.6;
  min-height: clamp(300px, 38vw, 420px);
  text-decoration: none;
  color: inherit;
}

.service-glass-card__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-glass-card:hover .service-glass-card__link img {
  transform: scale(1.06);
}

.service-glass-card__link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(13, 58, 60, 0.35) 100%);
  pointer-events: none;
}

.service-glass-card__go {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px) saturate(1.3);
  -webkit-backdrop-filter: blur(12px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.service-glass-card:hover .service-glass-card__go {
  background: rgba(255, 255, 255, 0.72);
  transform: scale(1.06);
}

.service-glass-card__cap {
  position: absolute;
  bottom: 0.75rem;
  inset-inline: 0.75rem;
  z-index: 2;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 8px 24px rgba(13, 58, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: background 0.3s ease;
}

.service-glass-card:hover .service-glass-card__cap {
  background: rgba(255, 255, 255, 0.58);
}

.service-glass-card__cap h3 {
  margin: 0;
  font-size: clamp(0.82rem, 1.1vw, 0.95rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary-dark);
}

/* Services — compact (mobile fallback) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  border-radius: var(--radius);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(13, 58, 60, 0.16);
}

.service-num {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Products showcase */
.services-products {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid rgba(0, 91, 94, 0.1);
}

.products-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(0, 91, 94, 0.1);
  box-shadow: 0 12px 32px rgba(13, 58, 60, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(13, 58, 60, 0.12);
}

.product-card__visual {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  font-size: clamp(2rem, 8vw, 2.75rem);
  background: linear-gradient(145deg, rgba(0, 91, 94, 0.08), rgba(38, 166, 154, 0.12));
}

.product-card figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

@media (min-width: 981px) and (max-width: 1180px) {
  .services-rail {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .service-glass-card {
    flex: 0 0 min(200px, 22vw);
    scroll-snap-align: start;
  }
}

/* Branches — glass showcase */
.section-branches {
  position: relative;
  overflow: hidden;
}

.branches-showcase {
  position: relative;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.branches-showcase__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.branches-showcase__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.branches-showcase__glow--a {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  top: -15%;
  inset-inline-end: -12%;
  background: rgba(38, 166, 154, 0.2);
}

.branches-showcase__glow--b {
  width: min(300px, 45vw);
  height: min(300px, 45vw);
  bottom: -10%;
  inset-inline-start: -10%;
  background: rgba(0, 91, 94, 0.15);
}

.branches-liquid {
  position: absolute;
  opacity: 0.32;
  animation: liquidFloat 14s ease-in-out infinite;
}

.branches-liquid--1 {
  width: clamp(80px, 14vw, 120px);
  height: clamp(65px, 12vw, 95px);
  top: 20%;
  inset-inline-start: 5%;
  animation-delay: -4s;
}

.branches-liquid--2 {
  width: clamp(55px, 10vw, 85px);
  height: clamp(48px, 8vw, 70px);
  bottom: 25%;
  inset-inline-end: 8%;
  animation-delay: -9s;
  opacity: 0.22;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  position: relative;
  z-index: 1;
}

.location-card--glass {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: clamp(22px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(22px) saturate(1.45);
  -webkit-backdrop-filter: blur(22px) saturate(1.45);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow:
    0 20px 48px rgba(13, 58, 60, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.location-card--glass:hover {
  transform: translateY(-6px);
  box-shadow:
    0 28px 56px rgba(13, 58, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.location-card__glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.05) 42%,
    rgba(38, 166, 154, 0.06) 100%
  );
  pointer-events: none;
}

.location-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(0, 91, 94, 0.1), rgba(38, 166, 154, 0.16));
  border: 1px solid rgba(0, 91, 94, 0.1);
  position: relative;
  z-index: 1;
}

.location-card__icon svg {
  width: 22px;
  height: 22px;
}

.location-badge {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: #fff;
  margin-bottom: 0.65rem;
  box-shadow: 0 6px 16px rgba(0, 91, 94, 0.25);
}

.location-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.4rem;
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.location-card address {
  position: relative;
  z-index: 1;
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1.15rem;
  line-height: 1.65;
}

.location-phones {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.location-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.4rem 0.85rem 0.4rem 0.7rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-dark);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 91, 94, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.location-phones a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateX(-3px);
}

.location-phones a:hover .icon-phone-bubble {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

html[dir="ltr"] .location-phones a:hover {
  transform: translateX(3px);
}

/* Contact — glass showcase */
.section-contact {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.contact-showcase {
  position: relative;
}

.contact-showcase__bg {
  position: absolute;
  inset: -20% 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-showcase__glow {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  width: min(500px, 80vw);
  height: min(280px, 50vw);
  border-radius: 50%;
  background: rgba(38, 166, 154, 0.18);
  filter: blur(80px);
}

.contact-liquid {
  position: absolute;
  opacity: 0.3;
  animation: liquidFloat 16s ease-in-out infinite;
}

.contact-liquid--1 {
  width: clamp(90px, 16vw, 130px);
  height: clamp(75px, 14vw, 105px);
  top: 10%;
  inset-inline-end: 6%;
  animation-delay: -2s;
}

.contact-liquid--2 {
  width: clamp(60px, 11vw, 90px);
  height: clamp(50px, 9vw, 75px);
  bottom: 15%;
  inset-inline-start: 8%;
  animation-delay: -7s;
  opacity: 0.22;
}

.contact-hero--glass {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3rem);
  border-radius: clamp(28px, 4vw, 40px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px) saturate(1.5);
  -webkit-backdrop-filter: blur(28px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 28px 64px rgba(13, 58, 60, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.contact-hero__glass {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.55) 0%,
    rgba(38, 166, 154, 0.08) 50%,
    rgba(0, 91, 94, 0.06) 100%
  );
  pointer-events: none;
}

.contact-hero--glass .eyebrow {
  position: relative;
  z-index: 1;
}

.contact-hero--glass h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  color: var(--primary-dark);
}

.contact-hero--glass > p {
  position: relative;
  z-index: 1;
  max-width: 28rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.contact-phones-big {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.phone-pill--glass {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 14px 36px rgba(0, 91, 94, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.phone-pill--glass:hover {
  transform: translateY(-3px);
  box-shadow:
    0 20px 44px rgba(0, 91, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.phone-pill--glass .icon-phone-bubble--pill {
  flex-shrink: 0;
}

/* Footer */
.footer-mobile {
  display: none;
}

.footer-desktop {
  display: none;
}

.site-footer {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: 0;
  background: transparent;
  color: var(--text);
}

.footer-credits {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.credits-text {
  font-size: 0.8rem;
  color: var(--muted);
}

.credits-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.credits-link:hover {
  color: var(--accent);
}

/* Footer — desktop glass (large screens) */
@media (min-width: 981px) {
  .footer-desktop {
    display: block;
  }

  .footer-desktop__wrap {
    width: var(--max);
    margin-inline: auto;
    padding-inline: 0;
  }

  .footer-desktop__scene {
    position: relative;
    padding-bottom: clamp(2rem, 4vw, 3rem);
  }

  .footer-desktop__watermark {
    position: absolute;
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    font-size: clamp(4rem, 12vw, 7.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: rgba(0, 91, 94, 0.06);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }

  .footer-desktop__logo-link {
    display: inline-block;
    text-decoration: none;
  }

  .footer-desktop__cta {
    position: relative;
    z-index: 1;
    margin-bottom: -2.5rem;
    padding: clamp(2.5rem, 5vw, 3.25rem) clamp(2rem, 4vw, 3rem);
    border-radius: clamp(28px, 3vw, 36px);
    overflow: hidden;
    background: linear-gradient(
      165deg,
      var(--primary-dark) 0%,
      #0a3234 45%,
      #061e20 100%
    );
    box-shadow:
      0 32px 64px rgba(13, 58, 60, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .footer-desktop__cta-glass {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.12) 0%,
      transparent 40%,
      rgba(38, 166, 154, 0.08) 100%
    );
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
  }

  .footer-desktop__cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 32rem;
    margin-inline: auto;
  }

  .footer-desktop__cta h3 {
    margin: 0 0 0.65rem;
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
  }

  .footer-desktop__cta p {
    margin: 0 0 1.35rem;
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
  }

  .footer-desktop__cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    background: #fff;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 0.92rem;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .footer-desktop__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  }

  .footer-desktop__card {
    position: relative;
    z-index: 2;
    padding: clamp(2.25rem, 4vw, 3rem) clamp(2rem, 3.5vw, 2.75rem) clamp(1.75rem, 3vw, 2.25rem);
    border-radius: clamp(24px, 3vw, 32px);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow:
      0 24px 64px rgba(13, 58, 60, 0.12),
      0 4px 24px rgba(0, 91, 94, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  .footer-desktop__glass {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.05) 45%,
      transparent 70%
    );
    pointer-events: none;
  }

  .footer-desktop__main {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
    padding-bottom: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid rgba(0, 91, 94, 0.1);
  }

  .footer-desktop__brand img {
    height: clamp(44px, 5vw, 56px);
    width: auto;
    margin-bottom: 1rem;
    object-fit: contain;
  }

  .footer-desktop__brand p {
    margin: 0 0 1.25rem;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 20rem;
  }

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

  .footer-desktop__social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--primary-dark);
    background: rgba(0, 91, 94, 0.08);
    border: 1px solid rgba(0, 91, 94, 0.1);
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  }

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

  .footer-desktop__social svg {
    width: 17px;
    height: 17px;
  }

  .footer-desktop__col h4 {
    margin: 0 0 1rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text);
  }

  .footer-desktop__col a {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-desktop__col a:hover {
    color: var(--primary);
  }

  .footer-desktop__col--contact {
    text-align: center;
  }

  .footer-desktop__phones {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.65rem;
  }

  .footer-desktop__phones a,
  .footer-desktop__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 0;
    direction: ltr;
    unicode-bidi: embed;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    color: var(--text);
    transition: color 0.2s ease;
  }

  .footer-desktop__phone:hover {
    color: var(--primary);
  }

  .footer-desktop__phone .icon-phone {
    color: var(--accent);
  }

  .footer-desktop__col--contact .footer-desktop__meta {
    text-align: center;
  }

  .footer-desktop__meta {
    display: block;
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.35rem;
  }

  .footer-desktop__bar {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    padding-top: clamp(1.25rem, 2.5vw, 1.5rem);
  }

  .footer-desktop__copy {
    font-size: 0.8rem;
    color: var(--muted);
  }

  .footer-desktop__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
  }

  .footer-desktop__legal a {
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .footer-desktop__legal a:hover {
    color: var(--primary);
  }

  .footer-credits--desktop {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 91, 94, 0.08);
  }
}

@media (min-width: 981px) and (max-width: 1100px) {
  .footer-desktop__main {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-desktop__brand {
    grid-column: 1 / -1;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* Mobile nav */
@media (max-width: 980px) {
  .top-bar {
    display: none;
  }

  .header-stack {
    padding: 0.35rem 0;
  }

  .site-header--center {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }

  .brand--center {
    flex: 0 0 auto;
    order: 1;
    margin: 0;
  }

  .brand--center .brand__img--full {
    display: none;
  }

  .brand--center .brand__img--mark {
    display: block;
  }

  .site-header--center .nav-wrap {
    width: auto;
    flex: 0 0 auto;
    order: 2;
    margin-inline-start: auto;
    justify-content: flex-end;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(0, 91, 94, 0.1);
    color: var(--primary);
    font-size: 1.25rem;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 10000;
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    min-height: 100svh;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: var(--bg-dark);
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: transform 0.28s ease, visibility 0.28s step-end;
  }

  .nav-links.open {
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-mobile-head {
    display: block;
    padding: calc(env(safe-area-inset-top, 0px) + 0.5rem) 0 0;
    background: linear-gradient(165deg, var(--primary) 0%, var(--primary-dark) 55%, var(--bg-dark) 100%);
    border-radius: 0 0 28px 28px;
  }

  .nav-mobile-head__inner {
    padding: 0.25rem 1.15rem 1.75rem;
  }

  .nav-mobile-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
  }

  .nav-mobile-brand img {
    height: 40px;
  }

  .nav-mobile-close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    cursor: pointer;
  }

  .nav-mobile-intro {
    text-align: center;
    color: #fff;
  }

  .nav-mobile-intro__title {
    margin: 0 0 0.25rem;
    font-weight: 800;
    font-size: 1.1rem;
  }

  .nav-mobile-intro__sub {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.9;
  }

  .nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.15rem;
    flex: 1;
  }

  .nav-mobile-section {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.45);
    margin: 0.5rem 0.35rem 0.35rem;
  }

  .nav-item-ico {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--accent);
  }

  .nav-item-ico svg {
    width: 20px;
    height: 20px;
  }

  .nav-links .nav-item-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.75rem 0.85rem;
    color: #fff;
    border-radius: 14px;
  }

  .nav-links .nav-item-link.active {
    background: rgba(38, 166, 154, 0.15);
    border: 1px solid rgba(38, 166, 154, 0.45);
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-inner {
    padding: clamp(1.75rem, 6vw, 2.5rem) 0 clamp(1.5rem, 4vw, 2rem);
  }

  .glass-hero {
    padding: clamp(1.35rem, 5vw, 2rem) clamp(1rem, 4vw, 1.5rem);
  }

  .hero-orb--1 {
    width: 200px;
    height: 200px;
  }

  .hero-orb--2 {
    width: 160px;
    height: 160px;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

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

  .services-grid,
  .products-row,
  .locations-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --max: min(1180px, calc(100% - 1.25rem));
  }

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

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

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

  .hero-stat strong {
    font-size: 1.65rem;
  }

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

  .product-card figcaption {
    font-size: 0.78rem;
    padding: 0.65rem 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  .hero-mesh,
  .hero-orb,
  .hero-stage::after {
    animation: none;
  }

  .hero-stage::after {
    display: none;
  }

  [data-reveal] {
    transition: none;
  }
}
