:root {
  --tiffany: #38e4dc;
  --tiffany-deep: #0a9b98;
  --ink: #191a22;
  --charcoal: #2d2d38;
  --slate: #41434c;
  --paper: #f5f7f7;
  --white: #ffffff;
  --muted: #667176;
  --line: rgba(25, 26, 34, 0.12);
  --gold: #a77d44;
  --shadow: 0 24px 70px rgba(16, 23, 31, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 76px;
  gap: 24px;
  padding: 12px clamp(18px, 4.5vw, 70px);
  color: var(--white);
  background: rgba(45, 45, 56, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: 176px;
  height: 46px;
}

.brand img {
  width: 176px;
  height: 46px;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
}

.nav-panel a,
.dropdown-button {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-panel a:hover,
.dropdown-button:hover,
.nav-panel a[aria-current="page"] {
  color: var(--tiffany);
}

.dropdown {
  position: relative;
}

.dropdown-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.dropdown-button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  width: min(760px, 92vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  padding: 16px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: none;
}

.dropdown-menu a:hover {
  background: #eef8f7;
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--tiffany);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 900;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero.compact {
  min-height: 430px;
}

.hero-image,
.hero::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.8;
}

.hero::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 17, 23, 0.96) 0%, rgba(28, 29, 38, 0.84) 42%, rgba(28, 29, 38, 0.28) 78%),
    linear-gradient(0deg, rgba(16, 17, 23, 0.9), rgba(16, 17, 23, 0.08) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 108px);
  padding: 86px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--tiffany);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.compact h1 {
  font-size: clamp(2.5rem, 5vw, 5.3rem);
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.55vw, 1.26rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  background: var(--tiffany);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
}

.button.outline {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.section {
  padding: clamp(70px, 9vw, 128px) clamp(18px, 6vw, 96px);
}

.section.white {
  background: var(--white);
}

.section.tint {
  background: #edf4f3;
}

.section.dark {
  color: var(--white);
  background: #101116;
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 94px);
  align-items: start;
}

.section-heading {
  max-width: 940px;
  margin-bottom: 42px;
}

.section-heading h2,
.split h2,
.cta-band h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4.3vw, 4.65rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.lead {
  margin: 0;
  color: #3f4c50;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
}

.dark .lead,
.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.body-copy {
  display: grid;
  gap: 20px;
}

.body-copy p {
  margin: 0;
  color: #3f4c50;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  padding: 52px 34px 30px;
  border: 1px solid rgba(56, 228, 220, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 82% 16%, rgba(56, 228, 220, 0.18), transparent 18%),
    radial-gradient(circle at 0 0, rgba(56, 228, 220, 0.18), transparent 30%),
    linear-gradient(145deg, #061326 0%, #091b31 48%, #08172a 100%);
  box-shadow: 0 18px 48px rgba(3, 12, 24, 0.28);
  color: var(--white);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(56, 228, 220, 0.28), transparent 22%),
    repeating-radial-gradient(circle at 16% 96%, rgba(56, 228, 220, 0.14) 0 1px, transparent 1px 9px),
    linear-gradient(135deg, transparent 72%, rgba(56, 228, 220, 0.22));
  opacity: 0.68;
}

.card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 30px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(56, 228, 220, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 48%, rgba(56, 228, 220, 0.42), rgba(56, 228, 220, 0.12) 38%, transparent 64%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 0 0 14px rgba(56, 228, 220, 0.035),
    0 0 32px rgba(56, 228, 220, 0.28);
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(56, 228, 220, 0.66);
  box-shadow: 0 24px 62px rgba(3, 12, 24, 0.34), 0 0 36px rgba(56, 228, 220, 0.16);
}

.card.dark-card {
  background:
    radial-gradient(circle at 82% 16%, rgba(56, 228, 220, 0.18), transparent 18%),
    linear-gradient(145deg, #061326 0%, #091b31 48%, #08172a 100%);
  border-color: rgba(56, 228, 220, 0.22);
}

.card small,
.step-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 46px;
  color: var(--tiffany);
  font-size: 1.05rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.card small::after,
.step-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 28px;
  height: 2px;
  background: var(--tiffany);
  border-radius: 999px;
}

.card h3 {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 74px);
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(1.18rem, 1.55vw, 1.46rem);
  line-height: 1.18;
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
  line-height: 1.72;
}

.card.dark-card p {
  color: rgba(255, 255, 255, 0.72);
}

.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--tiffany);
  font-size: 0.9rem;
  font-weight: 900;
}

.service-link::after {
  content: "→";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  line-height: 1;
  transition: transform 220ms ease, border-color 220ms ease;
}

.card:hover .service-link::after {
  transform: translateX(4px);
  border-color: rgba(56, 228, 220, 0.72);
}

.grid.three .card:nth-child(4n)::before,
.grid.two .card:nth-child(4n)::before {
  background:
    radial-gradient(circle at 92% 22%, rgba(56, 228, 220, 0.24), transparent 22%),
    repeating-radial-gradient(circle at 92% 18%, rgba(56, 228, 220, 0.18) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, transparent 68%, rgba(56, 228, 220, 0.18));
}

.grid.three .card:nth-child(5n)::before,
.grid.two .card:nth-child(5n)::before {
  background:
    linear-gradient(135deg, transparent 70%, rgba(56, 228, 220, 0.32)),
    radial-gradient(circle at 0 0, rgba(56, 228, 220, 0.16), transparent 30%);
}

.grid.three .card:nth-child(7n)::before,
.grid.two .card:nth-child(7n)::before {
  background:
    radial-gradient(circle at 96% 96%, rgba(56, 228, 220, 0.2), transparent 26%),
    linear-gradient(145deg, transparent 0%, rgba(56, 228, 220, 0.12) 100%);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--charcoal);
}

.quick-facts div {
  padding: 28px clamp(18px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-facts strong {
  display: block;
  color: var(--tiffany);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
}

.quick-facts span {
  color: rgba(255, 255, 255, 0.74);
}

.feature-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  border-left: 4px solid var(--tiffany);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 0 8px 8px 0;
  color: #39464a;
}

.dark .feature-list li {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

.process {
  counter-reset: process;
}

.process .card {
  min-height: 250px;
}

.region-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.region-line span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
}

.cta-band {
  padding: clamp(70px, 8vw, 118px) clamp(18px, 6vw, 96px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(56, 228, 220, 0.18), transparent 42%),
    #171821;
}

.cta-band p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #384448;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.company-box {
  padding: 28px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.company-box p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
}

.company-box a {
  color: var(--tiffany);
}

.legal-note {
  padding: 18px;
  border-left: 4px solid var(--tiffany);
  background: #eef8f7;
  border-radius: 0 8px 8px 0;
  color: #37464a;
}

.site-footer {
  padding: 48px clamp(18px, 6vw, 96px) 28px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr 1.1fr;
  gap: 28px;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 14px;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  display: block;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: var(--tiffany);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
  will-change: opacity, transform;
}

body.reveal-ready[data-scroll-dir="up"] [data-reveal] {
  transform: translateY(-22px);
}

body.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1120px) {
  .nav-panel {
    gap: 14px;
  }

  .nav-panel a,
  .dropdown-button {
    font-size: 0.7rem;
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .nav-panel {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 20px;
    background: rgba(45, 45, 56, 0.99);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .nav-panel a,
  .dropdown-button {
    padding: 12px 0;
    font-size: 0.82rem;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    margin: 4px 0 10px;
  }

  .dropdown.is-open .dropdown-menu,
  .dropdown:hover .dropdown-menu {
    display: grid;
    transform: none;
  }

  .split,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid.three,
  .quick-facts {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    min-height: 650px;
  }
}

@media (max-width: 640px) {
  .brand,
  .brand img {
    width: 148px;
    height: 39px;
  }

  .site-header {
    min-height: 66px;
  }

  .nav-panel {
    top: 66px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .hero-content {
    margin: 0 auto;
    padding: 70px 0;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(16, 17, 23, 0.98), rgba(28, 29, 38, 0.74)),
      linear-gradient(0deg, rgba(16, 17, 23, 0.95), rgba(16, 17, 23, 0.28));
  }

  .grid.three,
  .quick-facts,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}




.illustration-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(16, 23, 31, 0.08);
}

.illustration-panel img {
  width: 100%;
  height: auto;
}

.illustration-panel.compact-visual {
  margin-top: 28px;
}

.section-visual {
  margin: -14px 0 38px;
}

.section-visual img {
  max-height: 430px;
  object-fit: cover;
}

.dark .illustration-panel,
.illustration-panel.on-dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.process-visual {
  margin: -8px 0 34px;
}

.visual-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.dark .visual-caption {
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 960px) {
  .section-visual,
  .process-visual {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .illustration-panel.compact-visual {
    margin-top: 22px;
  }

  .section-visual {
    margin-bottom: 28px;
  }
}



.language-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 88px;
  min-height: 38px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switch button {
  display: grid;
  place-items: center;
  min-height: 30px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.language-switch button.active {
  background: var(--tiffany);
  color: var(--ink);
}

.language-switch button:not(.active):hover {
  color: var(--tiffany);
}

@media (max-width: 960px) {
  .language-switch {
    justify-self: end;
  }
}

.site-footer .inline-link {
  display: inline;
  color: var(--tiffany);
}

.map-section {
  background: #101218;
  color: var(--white);
}

.map-heading .lead {
  color: rgba(245, 247, 250, 0.72);
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 16px;
  padding: 12px;
  border: 1px solid rgba(55, 229, 220, 0.24);
  border-radius: 10px;
  background:
    radial-gradient(circle at 8% 8%, rgba(55, 229, 220, 0.24), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(55, 229, 220, 0.16), transparent 30%),
    linear-gradient(145deg, #071426, #111827 58%, #08111c);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.map-shell iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.32) contrast(1.08) saturate(0.88);
  background: #dfe8ed;
}

.map-info {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(4, 12, 24, 0.58);
}

.map-info span {
  margin-bottom: 14px;
  color: var(--tiffany);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-info strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

.map-info p {
  margin: 18px 0 24px;
  color: rgba(245, 247, 250, 0.76);
}

.map-info a {
  width: fit-content;
  color: var(--tiffany);
  font-weight: 900;
  text-decoration: none;
}

.map-info a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .map-shell {
    grid-template-columns: 1fr;
  }

  .map-shell iframe {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .map-shell {
    padding: 8px;
  }

  .map-shell iframe {
    min-height: 300px;
  }

  .map-info {
    padding: 22px;
  }
}
