:root {
  --deep: #0d252d;
  --ink: #10242e;
  --ink-soft: #263e48;
  --muted: #60737b;
  --accent: #0f5d63;
  --accent-hi: #13777d;
  --gold: #d8bf84;
  --bg: #f7f5ef;
  --surface: #ffffff;
  --line: rgba(16, 36, 46, .12);
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.no-scroll {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
}

a {
  color: inherit;
}

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

.site-top {
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 9px 18px;
  background: var(--deep);
  color: #d9e5e7;
  font-size: .86rem;
}

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

.main-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 0 clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 246, 247, .96);
  box-shadow: 0 14px 36px -34px rgba(14, 26, 34, .7);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.44rem;
  line-height: 1;
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand b {
  color: var(--accent);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: .74em;
  letter-spacing: .08em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
}

.language-selector {
  position: relative;
  display: inline-flex;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 82px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid rgba(15, 93, 99, .24);
  border-radius: var(--radius);
  background: #fff;
  color: var(--accent);
  cursor: pointer;
}

.language-globe,
.language-chevron {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-globe {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.language-chevron {
  width: 13px;
  height: 13px;
  stroke-width: 2;
  transition: transform .18s var(--ease);
}

.language-selector.open .language-chevron {
  transform: rotate(180deg);
}

.language-current-flag,
.language-options img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(16, 36, 46, .12);
}

.language-current-code {
  font-size: .78rem;
  font-weight: 900;
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 60;
  display: grid;
  gap: 4px;
  min-width: 178px;
  padding: 8px;
  border: 1px solid rgba(16, 36, 46, .12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 60px -30px rgba(16, 36, 46, .45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .16s var(--ease), transform .16s var(--ease), visibility .16s var(--ease);
}

.language-selector.open .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-options button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 36px;
  padding: 8px 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font: 800 .88rem/1.2 Inter, Aptos, "Segoe UI", Arial, sans-serif;
  text-align: left;
}

.language-options button:hover,
.language-options button.active {
  background: #e5f1ef;
  color: var(--accent);
}

.nav-cta,
.btn,
.package a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 800;
  transition: transform .18s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}

.nav-cta {
  min-height: 38px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  font-size: .88rem;
}

.nav-cta:hover,
.btn.primary:hover {
  background: var(--accent-hi);
}

.btn {
  min-height: 50px;
  padding: 0 22px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.ghost {
  border: 1px solid rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.btn:hover,
.package a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -24px rgba(0, 0, 0, .48);
}

.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep) url("assets/images/it-hero-poster.jpg") center/cover no-repeat;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  contain: paint;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(102deg, rgba(8, 25, 31, .95) 0%, rgba(8, 25, 31, .78) 45%, rgba(15, 93, 99, .38) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 130px 0 82px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -.035em;
  line-height: 1.07;
}

h1 {
  max-width: 900px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.7vw, 5rem);
  font-weight: 700;
}

h1 span {
  color: var(--gold);
}

.lead {
  max-width: 61ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1.16rem;
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 30px;
}

.hero-proof {
  margin-top: 44px;
}

.hero-proof span,
.trust-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .86);
  font-size: .82rem;
  font-weight: 800;
}

.trust-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px 0;
}

.trust-grid span {
  border-color: var(--line);
  background: #fff;
  color: var(--ink-soft);
}

.intro,
.services,
.security,
.process,
.packages,
.contact {
  padding: 90px 0;
}

.intro-grid,
.security-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 58px;
  align-items: center;
}

.section-head {
  max-width: 760px;
}

.section-head h2,
.security-copy h2,
.contact-copy h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.intro-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

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

.service-card,
.step,
.package,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 28px 70px -48px rgba(14, 26, 34, .42);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #e5f1ef;
  color: var(--accent);
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.step h3,
.package h3 {
  color: var(--ink);
  font-size: 1.18rem;
}

.service-card p,
.step p,
.package p,
.security-copy p,
.contact-copy p {
  color: var(--muted);
}

.security {
  background: linear-gradient(155deg, #0d252d 0%, #083c46 56%, #0f5d63 100%);
  color: #eef7f5;
}

.security .eyebrow,
.contact .eyebrow {
  color: var(--gold);
}

.security-copy h2,
.security-copy p {
  color: #fff;
}

.security-copy p {
  color: rgba(238, 247, 245, .82);
}

.security-media {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px -56px rgba(0, 0, 0, .72);
}

.security-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(238, 247, 245, .88);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216, 191, 132, .12);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.step {
  min-height: 205px;
  padding: 22px;
}

.step b {
  display: block;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.package {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.package.featured {
  background: var(--deep);
  color: #fff;
}

.package.featured h3,
.package.featured p {
  color: #fff;
}

.package > span {
  color: var(--accent);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package.featured > span {
  color: var(--gold);
}

.package a {
  margin-top: auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(15, 93, 99, .28);
  color: var(--accent);
}

.package.featured a {
  border-color: rgba(255, 255, 255, .22);
  background: #fff;
  color: var(--accent);
}

.contact {
  background: var(--deep);
  color: #fff;
}

.contact-copy h2,
.contact-copy p {
  color: #fff;
}

.contact-copy p {
  color: rgba(238, 247, 245, .82);
}

.contact-card {
  padding: 28px;
}

.contact-card img {
  width: 190px;
  height: auto;
  margin-bottom: 18px;
}

.contact-card a:not(.btn) {
  color: var(--accent);
  text-decoration: none;
  font-weight: 800;
}

.footer {
  padding: 34px 0;
  background: #08191f;
  color: #d9e5e7;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand span {
  color: #fff;
}

.footer p {
  margin: 0;
  color: #aebec4;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 14px;
  }

  .service-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .topbar {
    display: none;
  }

  .main-nav {
    grid-template-columns: 1fr auto auto;
    min-height: 70px;
    gap: 8px;
    padding: 0 16px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .brand span {
    font-size: 1.18rem;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 36px;
    border: 1px solid rgba(15, 93, 99, .24);
    border-radius: var(--radius);
    background: #fff;
    color: var(--accent);
  }

  .menu-toggle span,
  .menu-toggle span::before,
  .menu-toggle span::after {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    content: "";
    transition: transform .18s var(--ease), opacity .18s var(--ease);
  }

  .menu-toggle span {
    position: relative;
  }

  .menu-toggle span::before,
  .menu-toggle span::after {
    position: absolute;
  }

  .menu-toggle span::before {
    transform: translateY(-6px);
  }

  .menu-toggle span::after {
    transform: translateY(6px);
  }

  .menu-toggle.open span {
    background: transparent;
  }

  .menu-toggle.open span::before {
    transform: rotate(45deg);
  }

  .menu-toggle.open span::after {
    transform: rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    inset: 70px 16px auto;
    z-index: 90;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 26px 60px -42px rgba(16, 36, 46, .7);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: var(--radius);
    background: #f4f8f7;
    font-size: .82rem;
  }

  .nav-actions {
    gap: 6px;
  }

  .language-toggle {
    width: 38px;
    min-width: 38px;
    height: 36px;
    padding: 0;
  }

  .language-current-flag,
  .language-current-code,
  .language-chevron {
    display: none;
  }

  .language-options {
    position: fixed;
    top: 74px;
    right: 16px;
    width: min(220px, calc(100vw - 32px));
  }

  .nav-cta {
    min-height: 36px;
    padding: 0 10px;
    font-size: .72rem;
    white-space: nowrap;
  }

  .hero {
    min-height: max(650px, calc(100svh - 70px));
    align-items: center;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(8, 25, 31, .86) 0%, rgba(8, 25, 31, .68) 45%, rgba(8, 25, 31, .9) 100%);
  }

  .hero-inner {
    padding: 72px 0 64px;
  }

  h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
    letter-spacing: 0;
  }

  .lead {
    font-size: 1rem;
  }

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

  .intro,
  .services,
  .security,
  .process,
  .packages,
  .contact {
    padding: 68px 0;
  }

  .intro-grid,
  .security-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-grid,
  .package-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card,
  .step,
  .package,
  .contact-card {
    min-height: auto;
  }

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

@media (max-width: 380px) {
  .brand span {
    font-size: 1.04rem;
  }

  .nav-cta {
    padding: 0 8px;
    font-size: .66rem;
  }
}

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

  .hero-video {
    display: none;
  }

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

  .reveal.in {
    transition: none;
  }
}
