:root {
  --color-bg: #040913;
  --color-surface: rgba(255, 255, 255, 0.07);
  --color-surface-2: rgba(255, 255, 255, 0.12);
  --color-accent: #f2c25b;
  --color-accent-2: #9be2ff;
  --color-glow-1: #0e3a5f;
  --color-glow-2: #201046;
  --color-glow-3: #0f5e5d;
  --color-text: #f7f9ff;
  --color-muted: #c7d1e4;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 12px 36px rgba(0, 0, 0, 0.22);
  --motion-fast: 150ms;
  --motion-normal: 260ms;
  --motion-slow: 480ms;
  --blur-soft: 18px;
  --layer-overlay: rgba(255, 255, 255, 0.08);
  --layer-highlight: linear-gradient(135deg, rgba(242, 194, 91, 0.25), rgba(155, 226, 255, 0.25));
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Heebo", sans-serif;
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at 20% 20%, rgba(155, 226, 255, 0.08), transparent 34%),
    radial-gradient(circle at 80% 10%, rgba(242, 194, 91, 0.12), transparent 36%),
    radial-gradient(circle at 50% 80%, rgba(15, 94, 93, 0.12), transparent 40%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: 20% 20%, 80% 10%, 50% 80%;
  background-size: 520px 520px, 460px 460px, 420px 420px;
  background-attachment: scroll, scroll, scroll;
  color: var(--color-text);
  direction: rtl;
  scroll-behavior: smooth;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("pics/be14d9e1-160f-4330-9de6-794210ba5328.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: translateZ(0);
  pointer-events: none;
}

@media (max-width: 768px) {
  body {
    background-image: radial-gradient(circle at 18% 16%, rgba(155, 226, 255, 0.08), transparent 34%),
      radial-gradient(circle at 82% 12%, rgba(242, 194, 91, 0.12), transparent 36%),
      radial-gradient(circle at 50% 84%, rgba(15, 94, 93, 0.12), transparent 40%);
    background-position: 18% 16%, 82% 12%, 50% 84%;
    background-size: 320px 320px, 280px 280px, 240px 240px;
    background-attachment: scroll, scroll, scroll;
  }

  body::before {
    background-image: url("pics/mobile.png");
  }
}

.background-accents {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.background-accents .bubble {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.5;
  animation: float 14s ease-in-out infinite;
}

.background-accents .bubble-lg {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(155, 226, 255, 0.25), transparent 60%);
  top: -60px;
  left: -120px;
  animation-delay: 0.3s;
}

.background-accents .bubble-md {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(242, 194, 91, 0.22), transparent 62%);
  bottom: -80px;
  right: 6%;
  animation-delay: 0.8s;
}

.background-accents .bubble-sm {
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(15, 94, 93, 0.2), transparent 58%);
  top: 22%;
  right: 18%;
  animation-delay: 1.6s;
}

.background-accents .beam {
  position: absolute;
  width: 160%;
  height: 320px;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.05), rgba(155, 226, 255, 0.03), transparent 60%);
  top: 24%;
  left: -30%;
  transform: rotate(-6deg);
  filter: blur(20px);
  animation: slow-pan 18s ease-in-out infinite;
}

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

body.nav-open {
  overflow: hidden;
}

ul {
  list-style: none;
}

.page {
  padding-top: 92px;
  position: relative;
}

.section {
  padding: 80px 8%;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  position: relative;
}

.section.animate {
  animation: fadeInUp 0.9s ease forwards;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: linear-gradient(180deg, rgba(4, 9, 19, 0.95), rgba(4, 9, 19, 0.55));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.is-scrolled {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
  position: relative;
  z-index: 1;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.nav-toggle-line {
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 10px 0;
}

.nav-logo {
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 46px;
  height: 46px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 2px;
}

.logo-wordmark {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.6px;
}

.logo-subtitle {
  color: #d6dbea;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.nav-menu {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex: 1 1 auto;
  align-items: center;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu li a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  color: #e2e7f5;
  letter-spacing: 0.2px;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.nav-menu li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transform: translateY(-1px);
}

.emergency-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff6b6b, #ff3b30);
  color: #fff9f4;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 20px 42px rgba(255, 59, 48, 0.32);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
  z-index: 11;
  isolation: isolate;
  animation: floatY 4.8s ease-in-out infinite;
}

.emergency-banner::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.32), transparent 65%);
  filter: blur(12px);
  opacity: 0.75;
  z-index: -1;
  animation: pulseRing 2.8s ease-out infinite;
}

.emergency-icon {
  font-size: 1.1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.emergency-banner:hover,
.emergency-banner:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(214, 40, 40, 0.48);
  filter: brightness(1.06);
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
}

.sticky-cta {
  position: fixed;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f2c25b, #ffdf92);
  color: #0e1626;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 18px 40px rgba(242, 194, 91, 0.3);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: opacity var(--motion-normal) ease, transform var(--motion-normal) ease, box-shadow var(--motion-normal) ease;
  z-index: 9;
}

.sticky-cta.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-open .emergency-banner,
.nav-open .sticky-cta {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.26), 0 0 0 2px rgba(255, 255, 255, 0.28);
}

.emergency-banner:focus-visible {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

@keyframes pulseRing {
  0% {
    transform: scale(0.96);
    opacity: 0.76;
    filter: blur(8px);
  }
  50% {
    transform: scale(1.08);
    opacity: 0.4;
    filter: blur(14px);
  }
  100% {
    transform: scale(1.16);
    opacity: 0.24;
    filter: blur(16px);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 8px 10px;
    background: linear-gradient(180deg, rgba(4, 9, 19, 0.96), rgba(4, 9, 19, 0.72));
  }

  .nav-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    background: linear-gradient(170deg, rgba(4, 9, 19, 0.96), rgba(4, 9, 19, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: 72vh;
    overflow-y: auto;
    z-index: 2;
  }

  .emergency-banner {
    right: 14px;
    bottom: 16px;
    padding: 12px 18px;
    gap: 8px;
    font-size: 0.98rem;
  }

  .sticky-cta {
    left: 14px;
    bottom: 82px;
    padding: 12px 18px;
    font-size: 0.96rem;
  }

  .emergency-banner::after {
    inset: -8px;
    filter: blur(10px);
    opacity: 0.65;
  }

  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-menu li {
    flex: 0 0 auto;
  }

  .nav-menu li a {
    padding: 12px 14px;
    white-space: nowrap;
    text-align: center;
    width: 100%;
  }

  .nav-phone {
    display: none;
  }

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

  .navbar.is-open .nav-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

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

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

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

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(242, 194, 91, 0.08), transparent 40%),
    radial-gradient(circle at 20% 60%, rgba(155, 226, 255, 0.08), transparent 34%);
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(155, 226, 255, 0.12), transparent 46%),
    radial-gradient(circle at 76% 22%, rgba(242, 194, 91, 0.14), transparent 36%);
  filter: blur(22px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 18px;
  color: #ffffff;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
}

.high-end-title {
  position: relative;
  display: inline-block;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(120deg, #ffffff 0%, #f2c25b 32%, #9be2ff 68%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.55);
}

.high-end-title::before {
  content: "";
  position: absolute;
  inset: -10px -16px;
  background: radial-gradient(circle at 25% 30%, rgba(242, 194, 91, 0.18), transparent 55%),
    radial-gradient(circle at 75% 70%, rgba(155, 226, 255, 0.18), transparent 60%);
  filter: blur(26px);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
}

.high-end-title::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.35) 50%, transparent 80%);
  mix-blend-mode: screen;
  transform: translateX(-120%) skewX(-10deg);
  animation: titleSheen 4.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(155, 226, 255, 0.18), rgba(242, 194, 91, 0.18));
  color: #f7f9ff;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}

.pill-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent-2);
}

.pill-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--color-accent);
}

.hero-content [data-animate] {
  opacity: 0;
  transform: translateY(14px) scale(0.99);
}

.hero.animate .hero-content [data-animate="hero-title"] {
  animation: heroTitleRise 0.85s cubic-bezier(0.22, 0.77, 0.36, 1) forwards;
}

.hero.animate .hero-content [data-animate="hero-meta"] {
  animation: heroLeadFade 0.9s ease-out 0.05s forwards;
}

.hero.animate .hero-content [data-animate="hero-lead"] {
  animation: heroLeadFade 0.95s ease-out 0.12s forwards;
}

.hero.animate .hero-content [data-animate="hero-cta"] {
  animation: heroCtaLift 0.85s ease-out 0.24s forwards;
}

.hero .lead {
  color: #eef3ff;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 24px;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  z-index: 1;
  justify-content: flex-start;
}

.hero-image {
  position: relative;
  display: grid;
  place-items: center;
  z-index: 1;
  width: 100%;
  max-width: 620px;
  justify-self: center;
  isolation: isolate;
  opacity: 0;
  transform: translateY(18px);
  transform-origin: center;
  will-change: transform;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: -14px;
  background: var(--layer-highlight);
  opacity: 0.5;
  filter: blur(var(--blur-soft));
  z-index: 0;
  pointer-events: none;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-lg) + 14px);
  background: linear-gradient(
    130deg,
    rgba(136, 215, 255, 0.45),
    rgba(90, 134, 255, 0.24),
    rgba(225, 255, 253, 0.15)
  );
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16), 0 18px 38px rgba(0, 0, 0, 0.35);
  animation: frameGlow 10s ease-in-out infinite alternate;
}

.hero-image img {
  width: min(560px, 100%);
  max-width: 640px;
  height: auto;
  object-fit: contain;
  background: rgba(5, 18, 38, 0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  padding: 12px;
  transition: transform var(--motion-slow) ease, box-shadow var(--motion-normal) ease;
  position: relative;
  z-index: 1;
}

.hero.animate .hero-image img {
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(155, 226, 255, 0.16);
}

@keyframes frameGlow {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 0.8;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 18px 38px rgba(0, 0, 0, 0.32);
  }
  50% {
    transform: scale(1.01) rotate(0.65deg);
    opacity: 0.95;
    box-shadow: 0 0 0 2px rgba(155, 226, 255, 0.28), 0 20px 42px rgba(0, 0, 0, 0.34);
  }
  100% {
    transform: scale(1.02) rotate(1.1deg);
    opacity: 0.9;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 22px 46px rgba(0, 0, 0, 0.36);
  }
}

.scroll-cue {
  position: absolute;
  bottom: 12px;
  right: 24px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 42px;
  padding: 8px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(4, 9, 19, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  --scroll-cue-shift: 0;
  transform: translate(var(--scroll-cue-shift), 12px);
  transition: opacity var(--motion-normal) ease, transform var(--motion-normal) ease;
}

.scroll-cue__dot {
  width: 10px;
  height: 10px;
  background: #f2c25b;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(242, 194, 91, 0.22);
  animation: pulseCue 1.8s ease-in-out infinite;
}

.scroll-cue__line {
  width: 2px;
  height: 16px;
  background: linear-gradient(180deg, rgba(247, 249, 255, 0.8), transparent);
}

.scroll-cue.is-visible {
  opacity: 1;
  transform: translate(var(--scroll-cue-shift), 0);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(15, 94, 93, 0.18), rgba(32, 16, 70, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #e9f3ff;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c25b, #ffdf92);
  box-shadow: 0 0 0 6px rgba(242, 194, 91, 0.22);
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent-2);
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.4px;
  font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

  .hero.animate [data-animate="hero-visual"] {
    animation: heroVisualReveal 0.95s ease-out 0.18s forwards;
  }

@keyframes heroTitleRise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroLeadFade {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroCtaLift {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  65% {
    transform: translateY(-4px) scale(1.01);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes heroVisualReveal {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleSheen {
  from {
    transform: translateX(-120%) skewX(-10deg);
  }

  to {
    transform: translateX(120%) skewX(-10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-content [data-animate],
  .hero [data-animate="hero-visual"] {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-image img {
    transition: none;
  }

  .high-end-title::after {
    animation: none;
    transform: none;
    opacity: 0.45;
  }
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  isolation: isolate;
}

.btn-primary {
  background: linear-gradient(135deg, #f2c25b, #ffdf92);
  color: #1d2433;
  box-shadow: 0 14px 32px rgba(242, 194, 91, 0.32);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #f7f9ff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-primary::after,
.btn-secondary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0.35) 100%);
  transform: translateX(-120%);
  transition: transform 0.35s ease;
  z-index: -1;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  transform: translateX(0%);
}

.stats-section .stats-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stat-box {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.stat-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), rgba(242, 194, 91, 0.12), rgba(155, 226, 255, 0.18));
  opacity: 0;
  transform: translateX(-120%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.stat-box.revealed::after,
.stat-box:hover::after {
  animation: statShimmer 0.9s ease forwards;
  opacity: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.stat-desc {
  color: #f7f9ff;
}

@keyframes statShimmer {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .stat-box.revealed::after,
  .stat-box:hover::after {
    animation: none;
    transform: translateX(0);
    opacity: 0.12;
  }
}


.section-heading {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 18px;
}

.section-heading h2,
.about h2,
.laparoscopy h2,
.team h2,
.services h2,
.faq h2,
.contact h2,
.gallery h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  text-align: center;
}

.section-heading .section-lead,
.about p,
.laparoscopy p,
.gallery .section-lead,
.contact p {
  color: var(--color-muted);
  line-height: 1.65;
  max-width: 900px;
  margin: 0 auto 18px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent-2);
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about h3 {
  color: var(--color-accent);
  margin: 24px 0 12px;
  text-align: center;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-list li,
.benefit-list li,
.service-card,
.team-card,
.faq-item,
.contact-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  color: var(--color-text);
  line-height: 1.55;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-list li:hover,
.benefit-list li:hover,
.service-card:hover,
.team-card:hover,
.faq-item:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.14);
}

.feature-list li strong,
.benefit-list li strong {
  display: block;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.laparoscopy .benefit-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.experience-card {
  background: radial-gradient(circle at 20% 20%, rgba(155, 226, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 10px;
  min-height: 200px;
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 1.4rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
}

.expert-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.collaboration-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  margin-top: 18px;
}

.collaboration-story .story-text p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.story-photo {
  width: 100%;
  max-width: 840px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
  position: relative;
  isolation: isolate;
  background: linear-gradient(135deg, rgba(242, 194, 91, 0.35), rgba(87, 148, 255, 0.32));
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 8px);
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.story-photo::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  background: conic-gradient(
    from 130deg,
    rgba(242, 194, 91, 0.9),
    rgba(87, 148, 255, 0.95),
    rgba(242, 194, 91, 0.9)
  );
  z-index: 0;
  animation: frameOrbit 14s linear infinite;
  filter: blur(18px);
  opacity: 0.75;
}

.story-photo::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: calc(var(--radius-lg) - 6px);
  border: 2px solid rgba(255, 255, 255, 0.35);
  z-index: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 24px rgba(0, 0, 0, 0.18);
  animation: framePulse 6.5s ease-in-out infinite;
}

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

@keyframes framePulse {
  0%,
  100% {
    transform: scale(0.995);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.01);
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 26px rgba(0, 0, 0, 0.22);
  }
}


.team-card {
  text-align: right;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.expert-card .avatar {
  margin: 0;
  flex-shrink: 0;
}

.expert-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 194, 91, 0.85), rgba(87, 148, 255, 0.9));
  color: #0f0f0f;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  position: relative;
  isolation: isolate;
}

.expert-name::before {
  content: "✦";
  color: #0f0f0f;
  font-size: 0.95em;
  opacity: 0.8;
}

.expert-name::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.4), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.28), transparent 45%);
  z-index: -1;
  filter: blur(1px);
}

.expert-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expert-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--color-muted);
}

.expert-highlights li {
  position: relative;
  padding-right: 16px;
}

.expert-highlights li::before {
  content: "✦";
  position: absolute;
  right: 0;
  color: var(--color-accent);
}

.avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto;
}

.photo-frame {
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(242, 194, 91, 0.8);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.icon-circle {
  display: grid;
  place-items: center;
  background: var(--color-surface-2);
  border-radius: 50%;
  font-size: 1.6rem;
}

.services .service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.service-highlight {
  margin-top: 22px;
  padding: 18px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(120deg, rgba(155, 226, 255, 0.12), rgba(242, 194, 91, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.service-highlight h3 {
  margin: 6px 0 8px;
}

.gallery .section-heading {
  text-align: center;
  margin-bottom: 22px;
}

.gallery .eyebrow {
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-grid img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.testimonial-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(15, 94, 93, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-card);
  line-height: 1.7;
  color: var(--color-muted);
}

.quote-mark {
  font-size: 2.6rem;
  color: var(--color-accent);
  position: absolute;
  top: -16px;
  left: 16px;
  opacity: 0.18;
}

.testimonial-meta {
  margin-top: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.tech-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-card);
  line-height: 1.6;
}

.prestige-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.prestige-card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(155, 226, 255, 0.06));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.prestige-card::before {
  content: "";
  position: absolute;
  inset: -60% auto auto -40%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(242, 194, 91, 0.12), transparent 60%);
  transform: rotate(-12deg);
  filter: blur(6px);
  opacity: 0.6;
}

.card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-weight: 700;
  color: var(--color-accent-2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.prestige-card h3 {
  margin: 10px 0 8px;
}

.prestige-card p {
  color: var(--color-muted);
  line-height: 1.7;
}

.prestige-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
  color: var(--color-text);
}

.prestige-list li {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(4, 9, 19, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.prestige-banner {
  position: relative;
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, rgba(155, 226, 255, 0.14), rgba(15, 94, 93, 0.1), rgba(242, 194, 91, 0.12));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
}

.prestige-banner h3 {
  margin: 6px 0;
}

.banner-copy {
  color: var(--color-muted);
}

.banner-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.banner-points span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  color: var(--color-text);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.banner-glow {
  position: absolute;
  inset: -20% -20% auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(242, 194, 91, 0.25), transparent 62%);
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.journey-step {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-card);
  align-items: center;
}

.step-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(242, 194, 91, 0.2), rgba(155, 226, 255, 0.2));
  color: #f7f9ff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.inline-link {
  color: var(--color-accent-2);
  font-weight: 700;
  border-bottom: 1px solid rgba(155, 226, 255, 0.5);
  padding-bottom: 2px;
  transition: color var(--motion-fast) ease, border-color var(--motion-fast) ease;
}

.inline-link:hover,
.inline-link:focus-visible {
  color: var(--color-text);
  border-color: var(--color-text);
}

.faq-item h3,
.contact-card h3,
.service-card h3,
.team-card h3 {
  color: var(--color-accent);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin: 24px auto 12px;
  max-width: 900px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  color: var(--color-text);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  transition: border-color var(--motion-fast) ease, box-shadow var(--motion-fast) ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(247, 249, 255, 0.65);
}

.form-group textarea {
  resize: vertical;
}

.form-group input.is-valid,
.form-group textarea.is-valid {
  border-color: rgba(155, 226, 255, 0.8);
  box-shadow: 0 0 0 2px rgba(155, 226, 255, 0.2);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid {
  border-color: rgba(255, 107, 107, 0.9);
  box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.2);
}

.form-feedback {
  grid-column: 1 / -1;
  text-align: center;
  margin: 8px 0 4px;
  min-height: 26px;
  font-weight: 600;
  color: var(--color-muted);
}

.form-feedback.is-success {
  color: var(--color-accent);
}

.form-feedback.is-error {
  color: #ffb3b3;
}

.contact-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  justify-content: center;
}

.map-wrapper {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 12px;
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.05);
  min-height: 320px;
}

.map-wrapper iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.footer {
  text-align: center;
  padding: 30px 8%;
  color: var(--color-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseCue {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(6px);
    opacity: 0.75;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.04);
  }
}

@keyframes slow-pan {
  0% {
    transform: translateX(0) rotate(-6deg);
  }
  50% {
    transform: translateX(6%) rotate(-4deg);
  }
  100% {
    transform: translateX(0) rotate(-6deg);
  }
}

@media (max-width: 720px) {
  .nav-inner {
    flex-wrap: nowrap;
    gap: 12px;
  }

  .nav-brand {
    gap: 8px;
    padding: 8px 10px;
  }

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

  .nav-phone {
    width: 100%;
    text-align: center;
  }
  .hero {
    padding-top: 10px;
  }
  .hero-image img {
    padding: 6px;
    width: 100%;
  }

  .scroll-cue {
    right: auto;
    left: 50%;
    --scroll-cue-shift: -50%;
  }

  .team-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .expert-highlights li {
    padding-right: 0;
  }

  .expert-highlights li::before {
    display: none;
  }

  .prestige-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .banner-points {
    justify-content: center;
  }
}

@media (max-width: 540px) {
  .section {
    padding: 56px 6%;
  }

  .hero {
    padding-top: 0;
    gap: 22px;
  }

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

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

  .hero .lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-image {
    max-width: 360px;
  }

  .hero-image img {
    max-height: 320px;
    padding: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  }
}

@media (prefers-reduced-motion: reduce) {
  .emergency-banner,
  .emergency-banner::after {
    animation: none;
  }

  .emergency-banner {
    transition: none;
  }

  .emergency-banner:hover,
  .emergency-banner:focus-visible {
    transform: none;
  }
}
