:root {
  --bg: #06111b;
  --bg-deep: #040b13;
  --panel: rgba(12, 24, 37, 0.76);
  --panel-strong: rgba(12, 24, 37, 0.92);
  --border: rgba(173, 219, 255, 0.14);
  --text: #eef7ff;
  --muted: #abc1d5;
  --accent: #48e0d1;
  --accent-2: #ffb84d;
  --accent-3: #76a9ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius: 28px;
  --radius-sm: 18px;
  --container: min(1200px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope__subset, "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(72, 224, 209, 0.16), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(118, 169, 255, 0.18), transparent 28%),
    linear-gradient(180deg, #081320 0%, #050b12 100%);
  min-height: 100vh;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: clip;
  min-height: 100vh;
}

.orb {
  position: fixed;
  inset: auto;
  width: 36rem;
  height: 36rem;
  filter: blur(40px);
  opacity: 0.4;
  pointer-events: none;
  z-index: -2;
}

.orb-a {
  top: -8rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(72, 224, 209, 0.44), transparent 66%);
}

.orb-b {
  top: 18rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(255, 184, 77, 0.26), transparent 66%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.95), rgba(0,0,0,0.2));
}

.topbar,
.section,
.footer {
  width: var(--container);
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(5, 11, 18, 0.66);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(173, 219, 255, 0.1);
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  flex: 0 0 auto;
  box-shadow: 0 12px 30px rgba(72, 224, 209, 0.35);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}

.brand-text small {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  margin-left: auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(173, 219, 255, 0.14);
  background: rgba(255,255,255,0.03);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  border-radius: 99px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(72, 224, 209, 0.18), rgba(118, 169, 255, 0.14));
  border: 1px solid rgba(72, 224, 209, 0.22);
  text-align: center;
  line-height: 1;
}

.lang-switch {
  display: flex;
  gap: 8px;
  padding-left: 8px;
}

.lang-btn {
  border: 1px solid rgba(173, 219, 255, 0.14);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  border-radius: 999px;
  min-width: 48px;
  padding: 10px 12px;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}

.lang-btn.is-active {
  color: #041019;
  background: linear-gradient(135deg, var(--accent), #c7fff8);
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(72, 224, 209, 0.22);
}

.section {
  margin-top: 30px;
  padding: 44px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
  padding-top: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.hero h1,
.section h2,
.card h3,
.check-card h3,
.timeline-card h3,
.team-card h3,
.gallery-card h3,
.faq-item summary {
  font-family: Manrope__subset, "Manrope", system-ui, sans-serif;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-family: Manrope__subset, "Manrope", system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.4vw, 5.5rem);
  margin-top: 18px;
  max-width: 14ch;
  line-height: 1.03;
}

.section h2 {
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.card h3 {
  margin: 16px 0 12px;
  font-size: 1.4rem;
}

.lead,
.section-head p,
.split-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 62ch;
}

.lead {
  max-width: 58ch;
  margin-top: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #041019;
  background: linear-gradient(135deg, var(--accent), #c6fff7);
  box-shadow: 0 16px 32px rgba(72, 224, 209, 0.22);
}

.button-secondary {
  border-color: rgba(173, 219, 255, 0.18);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.chip {
  padding: 12px 15px;
  border-radius: 999px;
  border: 1px solid rgba(173, 219, 255, 0.12);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.chip strong {
  display: block;
  font-size: 0.95rem;
}

.chip span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  min-height: 720px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(173, 219, 255, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.hero-video,
.hero-video-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-video-overlay {
  background:
    linear-gradient(180deg, rgba(3, 10, 17, 0.1), rgba(3, 10, 17, 0.44)),
    radial-gradient(circle at 72% 18%, rgba(72, 224, 209, 0.2), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(255, 184, 77, 0.18), transparent 28%);
  pointer-events: none;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 32%;
  background: linear-gradient(180deg, transparent, rgba(3, 10, 17, 0.7));
  pointer-events: none;
}

.visual-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(173, 219, 255, 0.14);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), transparent 28%, rgba(0,0,0,0.2));
  pointer-events: none;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.visual-frame-main {
  inset: 0 0 112px;
  border-radius: 34px;
}

.visual-frame-secondary {
  width: 42%;
  right: -6px;
  bottom: 16px;
  aspect-ratio: 4 / 3;
  transform: rotate(2deg);
}

.visual-frame-tertiary {
  width: 33%;
  left: 20px;
  bottom: -18px;
  aspect-ratio: 1;
  transform: rotate(-5deg);
}

.floating-badge {
  position: absolute;
  top: 28px;
  right: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(5, 11, 18, 0.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(173, 219, 255, 0.14);
  box-shadow: var(--shadow);
}

.floating-badge span {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
}

.floating-badge small {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.strip {
  padding-top: 0;
}

.stat-card,
.card,
.check-card,
.timeline-card,
.faq-item,
.quote-card,
.contact-box,
.contact-form {
  border: 1px solid rgba(173, 219, 255, 0.12);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.stat-card {
  border-radius: var(--radius);
  padding: 22px;
}

.stat-card strong {
  display: block;
  font-size: 1.4rem;
  color: var(--text);
}

.stat-card span {
  color: var(--muted);
  margin-top: 6px;
  display: block;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border-radius: var(--radius);
  padding: 24px;
  min-height: 220px;
}

.card .card-kicker {
  color: var(--accent-2);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.split-panel,
.split-copy {
  min-width: 0;
}

.checklist {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 22px;
}

.check-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(72, 224, 209, 0.22), rgba(118, 169, 255, 0.2));
  color: var(--accent);
  font-weight: 900;
  flex: 0 0 auto;
}

.check-card h3,
.timeline-card h3,
.faq-item summary,
.team-card h3,
.gallery-card h3 {
  font-size: 1.15rem;
}

.check-card p,
.timeline-card p,
.faq-item p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote-card {
  border-radius: 28px;
  padding: 28px;
  margin-bottom: 18px;
}

.team-card {
  border: 1px solid rgba(173, 219, 255, 0.12);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
  padding: 24px;
}

.team-card h3 {
  margin: 0 0 16px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.check-card h3,
.timeline-card h3,
.gallery-card h3,
.faq-item summary {
  margin: 0;
}

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

.team-tile {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1 / 1.12;
  border: 1px solid rgba(173, 219, 255, 0.12);
  box-shadow: var(--shadow);
}

.team-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline-card {
  border-radius: 26px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.timeline-media {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 16 / 10;
}

.timeline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline-index {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
  color: #071521;
  background: linear-gradient(135deg, var(--accent), #d2fff9);
  margin-bottom: 16px;
}

.press-banner {
  padding-top: 24px;
  padding-bottom: 24px;
}

.press-banner img {
  width: 100%;
  display: block;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 30px;
  border: 1px solid rgba(173, 219, 255, 0.14);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card .overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(3, 10, 17, 0.92));
}

.gallery-card p {
  color: rgba(238, 247, 255, 0.78);
  line-height: 1.6;
  margin: 8px 0 0;
}

.gallery-card:nth-child(2),
.gallery-card:nth-child(3) {
  min-height: 340px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-weight: 900;
  font-size: 1.4rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item .faq-body {
  padding: 0 24px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.contact-copy {
  padding-right: 18px;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.point {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
}

.point::before {
  content: "●";
  color: var(--accent-2);
  margin-top: 1px;
}

.contact-box {
  margin-top: 28px;
  border-radius: 24px;
  padding: 20px;
  display: grid;
  gap: 12px;
}

.contact-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.contact-line span {
  color: var(--muted);
}

.contact-line strong {
  font-size: 1rem;
}

.contact-form {
  border-radius: 32px;
  padding: 26px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--text);
  background: rgba(3, 10, 17, 0.55);
  border: 1px solid rgba(173, 219, 255, 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(72, 224, 209, 0.55);
  box-shadow: 0 0 0 4px rgba(72, 224, 209, 0.12);
}

.button-submit {
  width: 100%;
  margin-top: 18px;
  min-height: 58px;
  border: 0;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 14px 0 0;
}

.footer {
  padding: 20px 0 110px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer p {
  margin: 0;
}

.footer a {
  color: var(--text);
}

.mobile-cta {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  gap: 10px;
}

.mobile-cta__item {
  flex: 1;
  min-height: 54px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  background: rgba(5, 11, 18, 0.86);
  border: 1px solid rgba(173, 219, 255, 0.14);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.mobile-cta__item--primary {
  color: #041019;
  background: linear-gradient(135deg, var(--accent), #c6fff7);
  border-color: transparent;
}

.noscript {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  background: rgba(5, 11, 18, 0.92);
  border: 1px solid rgba(173, 219, 255, 0.12);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 16px;
  max-width: min(640px, calc(100vw - 32px));
  z-index: 99;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

@media (max-width: 1100px) {
  .hero,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .stats,
  .card-grid,
  .timeline,
  .team-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .topbar {
    margin-top: 10px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 10px);
    padding: 16px;
    background: rgba(5, 11, 18, 0.96);
    border-radius: 22px;
    border: 1px solid rgba(173, 219, 255, 0.12);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav a {
    padding: 10px 0;
  }

  .nav-cta {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
  }

  .lang-switch {
    padding-left: 0;
    justify-content: flex-start;
  }

  .stats,
  .card-grid,
  .timeline,
  .team-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy {
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-visual {
    min-height: 540px;
    width: 100%;
    max-width: 100%;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-position: center;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 130px;
  }

  .mobile-cta {
    display: flex;
  }
}

@media (max-width: 560px) {
  .page-shell {
    padding-bottom: 76px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .topbar,
  .section,
  .footer {
    width: min(100vw - 20px, 1200px);
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand-text small {
    font-size: 0.76rem;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
    line-height: 1.08;
    max-width: 100%;
  }

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

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

  .button {
    width: 100%;
  }

  .section {
    padding: 30px 0;
  }

  .card,
  .stat-card,
  .timeline-card,
  .contact-form,
  .quote-card {
    border-radius: 22px;
    padding: 20px;
  }

  .visual-frame-main {
    inset: 0 0 120px;
  }

  .floating-badge {
    top: 18px;
    right: 10px;
  }
}
