:root {
  --ink: #102033;
  --muted: #5b6b7f;
  --brand: #0f766e;
  --brand-strong: #075985;
  --accent: #f59e0b;
  --surface: #ffffff;
  --soft: #f4f8fb;
  --line: #dce6ef;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
}

.site-logo-fixed {
  position: fixed;
  top: 8px;
  left: 10px;
  width: 190px;
  height: 100px;
  display: block;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(15, 118, 110, .22);
  border-radius: 12px;
  box-shadow:
    0 18px 42px rgba(16, 32, 51, .26),
    0 4px 12px rgba(15, 118, 110, .16);
  z-index: 80;
  overflow: hidden;
}

.site-logo-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  left: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 230, 239, 0.9);
}

.nav {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  padding: .55rem .7rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.language-menu {
  position: relative;
  display: flex;
  align-items: center;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: .9rem;
  font-weight: 850;
  padding: .5rem .7rem;
}

.language-button:hover,
.language-menu.open .language-button {
  border-color: var(--brand-strong);
  background: var(--soft);
}

.language-options {
  position: absolute;
  top: calc(100% + .55rem);
  right: 0;
  min-width: 185px;
  display: none;
  padding: .45rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 80;
}

.language-menu.open .language-options {
  display: grid;
}

.language-options a {
  text-decoration: none;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
  padding: .55rem .7rem;
  border-radius: 12px;
}

.language-options a:hover,
.language-options a.active {
  color: white;
  background: var(--brand-strong);
}

.nav-links a {
  text-decoration: none;
  padding: .5rem .62rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 650;
  font-size: .92rem;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--soft);
}

.cta-small {
  background: var(--ink) !important;
  color: white !important;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(245, 158, 11, .30), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(14, 165, 233, .26), transparent 30%),
    linear-gradient(135deg, #073b4c 0%, #0f766e 48%, #075985 100%);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% -10%;
  height: 55%;
  background: white;
  transform: rotate(-3deg);
  z-index: -1;
}

.hero-inner {
  width: min(1460px, calc(100% - 12px));
  margin: 0 auto;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(390px, .72fr);
  gap: .7rem;
  align-items: center;
  padding: 5rem 0 7rem;
}

.eyebrow {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  color: inherit;
  font-weight: 750;
  letter-spacing: .02em;
}

.hero h1,
.page-hero h1 {
  margin: 1rem 0;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
  line-height: 1.06;
  letter-spacing: -.045em;
  max-width: 900px;
}

.hero > .hero-inner > div > p,
.page-hero p {
  font-size: clamp(1.05rem, 1.6vw, 1.32rem);
  max-width: 880px;
  color: rgba(255,255,255,.9);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary {
  color: var(--ink);
  background: white;
}

.button.dark {
  color: white;
  background: var(--ink);
}

.button.ghost {
  color: white;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}

.button.light {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.hero-card {
  background: rgba(255,255,255,.94);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateX(18px);
}

.hero-slider {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.62);
}

.hero-slides {
  position: relative;
  min-height: 610px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity .55s ease, transform .55s ease, visibility .55s ease;
  background: #ffffff;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}

.hero-slide img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-card-body {
  padding: 1.35rem 1.4rem 1.15rem;
  background: #ffffff;
  color: var(--ink);
}

.hero-card-body strong {
  display: block;
  font-size: 1.32rem;
  line-height: 1.2;
  color: var(--ink);
}

.hero-card-body p {
  color: var(--muted);
  font-size: 1rem;
  margin: .6rem 0 0;
}

.model-kicker {
  display: inline-flex;
  margin-bottom: .55rem;
  color: var(--brand-strong);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.slider-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 0 1.35rem 1.25rem;
  background: #ffffff;
}

.slider-dot {
  width: 11px;
  height: 11px;
  border: 0;
  border-radius: 999px;
  background: #c7d5e3;
  cursor: pointer;
  padding: 0;
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.slider-dot:hover {
  transform: translateY(-1px);
  background: var(--brand);
}

.slider-dot.active {
  width: 34px;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.section.compact {
  padding: 3rem 0;
}

.section-head {
  max-width: 840px;
  margin-bottom: 2rem;
}

.section-head h2,
.content h2 {
  margin: 0 0 .8rem;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}

.section-head p,
.content p,
.card p,
.legal p,
.legal li {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.1rem;
}

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

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 8px 24px rgba(16, 32, 51, 0.05);
}

.card.image-card {
  padding: 0;
  overflow: hidden;
}

.card.image-card img {
  height: 270px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.card-content {
  padding: 1.25rem;
}

.card h3 {
  margin: 0 0 .5rem;
  line-height: 1.2;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.tag-list li {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: .45rem .7rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--muted);
}

.band {
  background: linear-gradient(135deg, #eefaf7, #edf5ff);
  border-block: 1px solid var(--line);
}

.page-hero {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: white;
}

.page-hero .section {
  padding: 4.5rem 0;
}

.content {
  max-width: 920px;
}

.content ul,
.legal ul {
  padding-left: 1.2rem;
}

.profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

.profile img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-box {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 2rem;
}

.form {
  display: grid;
  gap: .85rem;
}

.form label {
  display: grid;
  gap: .35rem;
  font-weight: 750;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .85rem .95rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  color: var(--ink);
  background: white;
}

.form textarea {
  min-height: 170px;
  resize: vertical;
}

.notice {
  border-left: 4px solid var(--accent);
  background: #fffbeb;
  padding: 1rem;
  border-radius: 16px;
  color: #713f12;
}

.footer {
  background: #0b1624;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 2rem;
}

.footer a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
}

.footer-logo {
  width: 150px;
  height: auto;
  border-radius: 12px;
  background: white;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: flex-end;
}

.fineprint {
  color: rgba(255,255,255,.62);
  font-size: .92rem;
}

@media (max-width: 900px) {
  .site-logo-fixed {
    width: 118px;
    height: 62px;
    top: 76px;
    left: 8px;
    border-radius: 10px;
  }

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

  .nav-links {
    position: absolute;
    inset: 74px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .75rem;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .language-menu {
    margin-left: auto;
  }

  .hero-inner,
  .grid.three,
  .grid.two,
  .profile,
  .contact-box,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 4rem 0 6rem;
  }

  .hero-card {
    transform: none;
  }

  .hero-slides {
    min-height: 520px;
  }

  .hero-slide img {
    height: 300px;
  }

  .card.image-card img {
    height: 230px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .nav,
[dir="rtl"] .hero-actions,
[dir="rtl"] .actions,
[dir="rtl"] .tag-list,
[dir="rtl"] .footer-links,
[dir="rtl"] .language-menu {
  direction: rtl;
}

[dir="rtl"] .language-options {
  left: 0;
  right: auto;
}

[dir="rtl"] .hero::after {
  inset: auto -10% -55% -10%;
  height: 46%;
}

[dir="rtl"] .hero-inner {
  padding-bottom: 8.5rem;
}

[dir="rtl"] .hero-actions .button.ghost {
  color: var(--ink);
  background: #ffffff;
  border-color: #ffffff;
}

[dir="rtl"] .hero-actions .button.ghost:hover {
  background: #eef7ff;
  border-color: #eef7ff;
}

[dir="rtl"] .content ul,
[dir="rtl"] .legal ul {
  padding-left: 0;
  padding-right: 1.2rem;
}
