:root {
  --navy: #0d1b2a;
  --navy-deep: #08121d;
  --navy-soft: #13283c;
  --teal: #00b8a9;
  --emerald: #009973;
  --gold: #d4af37;
  --white: #ffffff;
  --off-white: #f4f7f8;
  --text: #263746;
  --muted: #667785;
  --border: rgba(13, 27, 42, 0.12);
  --shadow: 0 20px 50px rgba(4, 16, 27, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 27, 42, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 168px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--white);
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 184, 169, 0.22), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.10), transparent 28%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 55%, #102b3b);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.018);
}

.hero-content {
  max-width: var(--container);
  padding-block: 110px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.7rem);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-text {
  max-width: 680px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-tagline {
  margin: 14px 0 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--teal);
}

.button-primary:hover {
  background: #18cabb;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.development-notice {
  max-width: 760px;
  margin-top: 54px;
  padding: 16px 20px;
  color: rgba(255, 255, 255, 0.70);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.88rem;
}

.development-notice strong {
  color: var(--white);
}

.section {
  padding-block: 110px;
}

.section-light {
  background: var(--white);
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.section h2 {
  max-width: 700px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.section-navy h2,
.section-contact h2 {
  color: var(--white);
}

.section-copy {
  max-width: 700px;
  font-size: 1.08rem;
}

.section-copy > p:first-child {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  transition: border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: rgba(0, 184, 169, 0.55);
  transform: translateY(-4px);
}

.feature-number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.company-details {
  margin: 40px 0 0;
  border-top: 1px solid var(--border);
}

.company-details div {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--border);
}

.company-details dt {
  color: var(--muted);
  font-size: 0.88rem;
}

.company-details dd {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.section-contact {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0, 153, 115, 0.98), rgba(0, 110, 100, 0.98)),
    var(--emerald);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.72fr);
  gap: clamp(50px, 9vw, 130px);
  align-items: start;
}

.section-contact .section-label {
  color: var(--gold);
}

.contact-layout > div > p:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  padding: 34px;
  color: var(--text);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  font-style: normal;
}

.contact-card strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.contact-card p {
  margin: 20px 0 0;
}

.contact-card a {
  color: var(--emerald);
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding-block: 44px;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy-deep);
}

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

.footer-inner strong {
  color: var(--white);
  letter-spacing: 0.08em;
}

.footer-inner p {
  margin: 3px 0 0;
}

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

.footer-links a {
  color: var(--white);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 142px;
    height: 50px;
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 28px;
    background: var(--navy);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    font-size: 1.1rem;
  }

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

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

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

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 88px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
  }

  .section {
    padding-block: 78px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 220px;
  }

  .company-details div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .copyright {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
/* Legal pages */

.legal-header-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.legal-header-nav a {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.legal-header-nav a:hover,
.legal-header-nav a:focus-visible {
  color: var(--teal);
}

.legal-hero {
  padding-block: 92px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 15%, rgba(0, 184, 169, 0.20), transparent 34%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
}

.legal-container {
  max-width: 860px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-hero > .legal-container > p:last-child {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.legal-content {
  padding-block: 86px 110px;
  background: var(--off-white);
}

.legal-content .legal-container {
  padding: clamp(26px, 6vw, 68px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-notice {
  margin-bottom: 52px;
  padding: 20px 22px;
  color: var(--navy);
  border-left: 4px solid var(--gold);
  background: rgba(212, 175, 55, 0.10);
  font-weight: 650;
}

.legal-content h2 {
  margin: 54px 0 16px;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 18px;
}

.legal-content ul {
  margin: 10px 0 24px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 9px;
  padding-left: 5px;
}

.legal-content a {
  color: var(--emerald);
  font-weight: 700;
}

.legal-address {
  margin-top: 24px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--off-white);
  font-style: normal;
}

.legal-address strong {
  color: var(--navy);
}

@media (max-width: 700px) {
  .legal-header-nav {
    gap: 16px;
  }

  .legal-header-nav a {
    font-size: 0.8rem;
  }

  .legal-header-nav a:first-child {
    display: none;
  }

  .legal-hero {
    padding-block: 68px;
  }

  .legal-content {
    padding-block: 42px 70px;
  }

  .legal-content .legal-container {
    width: min(calc(100% - 24px), 860px);
    padding: 25px 20px;
  }

  .legal-content h2 {
    margin-top: 42px;
  }
}
