
:root {
  --navy: #071422;
  --navy-2: #0b1d31;
  --ink: #0f2238;
  --blue: #3b8fc6;
  --blue-2: #72afd1;
  --sky: #eaf1f7;
  --line: #d8e2ea;
  --white: #ffffff;
  --text: #183047;
  --muted: #5d7388;
  --shadow: 0 24px 60px rgba(9, 21, 36, 0.14);
  --radius: 26px;
  --max: 1240px;
}
* { 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(--text);
  background: #f5f8fb;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 36px), var(--max)); margin: 0 auto; }
.container--wide { width: min(calc(100% - 24px), 1460px); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(7, 20, 34, 0.74);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.brand img { width: 56px; height: 56px; object-fit: contain; flex: 0 0 56px; }
.brand__text { min-width: 0; }
.brand__name {
  display: block;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 19px;
}
.brand__tag {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
}
.nav a:hover { color: #fff; }
.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}
.lang-switch__btn {
  min-width: 44px;
  min-height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: .2s ease;
}
.lang-switch__btn:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.lang-switch__btn.is-active {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
.hero {
  position: relative;
  min-height: min(92vh, 980px);
  color: #fff;
  background: var(--navy);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,18,30,0.76) 0%, rgba(6,18,30,0.54) 35%, rgba(6,18,30,0.18) 68%, rgba(6,18,30,0.14) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  min-height: min(92vh, 980px);
  padding: 110px 0 72px;
}
.hero__content--narrow { max-width: 740px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.14);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7fc3ea;
  box-shadow: 0 0 16px rgba(127,195,234,0.9);
}
.hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 900px;
}
.hero p {
  margin: 0 0 28px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255,255,255,0.9);
  max-width: 760px;
}
.hero__actions, .button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: .25s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 16px 38px rgba(0,0,0,0.2);
}
.btn--ghost {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.hero-stat {
  min-width: 180px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
}
.hero-stat strong {
  display: block;
  font-size: 22px;
  margin-bottom: 4px;
}
.hero-stat span {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.section { padding: 92px 0; }
.section--light { background: #fff; }
.section--ink { background: #edf3f7; }
.section--dark { background: var(--navy); color: #fff; }
.section-header {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
  max-width: 840px;
}
.section-header h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.section-header p { margin: 0; font-size: 18px; color: var(--muted); }
.section--dark .section-header p { color: rgba(255,255,255,0.78); }
.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.summary-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.summary-card h3 { margin: 0 0 10px; font-size: 22px; }
.summary-card p { margin: 0; color: var(--muted); }
.tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,20,34,0.08) 15%, rgba(8,20,34,0.72) 100%);
}
.tile__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 28px;
  color: #fff;
}
.tile__content h3 { margin: 0 0 10px; font-size: 30px; line-height: 1.02; }
.tile__content p { margin: 0 0 18px; color: rgba(255,255,255,0.84); }
.full-bleed {
  position: relative;
  min-height: 74vh;
  overflow: hidden;
  background: var(--navy);
}
.full-bleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.full-bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,20,34,0.7) 0%, rgba(7,20,34,0.38) 35%, rgba(7,20,34,0.18) 100%);
}
.full-bleed__content {
  position: relative;
  z-index: 1;
  min-height: 74vh;
  display: flex;
  align-items: end;
  padding: 70px 0;
  color: #fff;
}
.full-bleed__box {
  max-width: 760px;
  background: rgba(7,20,34,0.52);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 28px;
  backdrop-filter: blur(14px);
}
.full-bleed__box h2, .full-bleed__box h3 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; }
.full-bleed__box p { margin: 0; font-size: 18px; color: rgba(255,255,255,0.86); }

.full-bleed__actions {
  margin-top: 20px;
}
.full-bleed__actions .btn--primary {
  background: #fff;
  color: var(--navy);
}
.full-bleed__actions .btn--ghost {
  color: #fff;
}

.story-grid {
  display: grid;
  gap: 28px;
}
.story-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 0;
  min-height: 580px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.story-card--reverse { grid-template-columns: .9fr 1.1fr; }
.story-card__media { min-height: 100%; }
.story-card__media img { width: 100%; height: 100%; object-fit: cover; }
.story-card__body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-card__body h3 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 44px); line-height: 1.04; }
.story-card__body p { margin: 0 0 16px; font-size: 18px; color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--text); }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  box-shadow: 0 0 12px rgba(59,143,198,0.3);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.process-step {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.process-step__num {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #e7f2fa;
  color: var(--blue);
  font-weight: 800;
  margin-bottom: 14px;
}
.process-step h3 { margin: 0 0 10px; font-size: 20px; }
.process-step p { margin: 0; color: var(--muted); }
.contact-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 26px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  max-width: 440px;
  backdrop-filter: blur(16px);
}
.contact-card h3 { margin: 0 0 18px; font-size: 28px; }
.contact-item {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.contact-item:first-of-type { border-top: 0; padding-top: 0; }
.contact-item span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 4px;
}
.contact-item strong { font-size: 18px; }
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: end;
}
.footer {
  background: #071422;
  color: rgba(255,255,255,0.72);
  padding: 28px 0 46px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 18px;
  font-size: 14px;
}
.legal-page {
  background: #fff;
  min-height: 100vh;
}
.legal-wrap { padding: 72px 0; }
.legal-wrap h1 { font-size: 44px; margin: 0 0 20px; color: var(--ink); }
.legal-wrap h2 { font-size: 22px; margin: 30px 0 10px; color: var(--ink); }
.legal-wrap p, .legal-wrap li { color: var(--muted); font-size: 16px; }
.breadcrumbs { margin-bottom: 18px; color: var(--muted); font-size: 14px; }
.image-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.image-strip img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
@media (max-width: 1120px) {
  .summary-grid, .tiles, .process-steps, .image-strip { grid-template-columns: 1fr 1fr; }
  .story-card, .story-card--reverse, .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .site-header__inner { align-items: flex-start; padding: 14px 0; }
  .nav { display: none; }
  .hero__content { padding: 104px 0 40px; }
  .hero h1 { font-size: clamp(38px, 12vw, 64px); }
  .summary-grid, .tiles, .process-steps, .image-strip { grid-template-columns: 1fr; }
  .story-card__body { padding: 28px; }
  .tile, .tile__content { min-height: 360px; }
  .full-bleed, .full-bleed__content { min-height: 62vh; }
}


/* Final tuning */
.brand { flex-direction: column; align-items: flex-start; gap: 5px; }
.brand img, .brand__logo { width: clamp(185px, 18vw, 245px); height: auto; max-height: 74px; object-fit: contain; flex: none; }
.brand__text { display: none; }
.brand__tagline {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
}
.hero__subnote { color: rgba(255,255,255,0.78); max-width: 660px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}
.contact-page-media {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.contact-page-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.contact-page-copy { padding: 28px; }
.contact-page-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.02;
}
.contact-data + .contact-data { margin-top: 18px; }
.contact-data span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-data strong {
  display: block;
  font-size: 20px;
  line-height: 1.35;
}
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  padding: 28px;
}
.contact-form { display: grid; gap: 18px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: grid; gap: 8px; }
.contact-form label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.form-input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
}
.form-input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(59,143,198,0.12);
}
.form-textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}
.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7fbff;
}
.captcha-box__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.captcha-box strong { font-size: 24px; }
.captcha-input { max-width: 160px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.form-consent input { margin-top: 4px; }
.btn--submit { width: 100%; }
.hidden-field {
  position: absolute !important;
  left: -5000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-alert {
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 600;
}
.form-alert--success {
  background: #edf9f1;
  color: #146c3f;
  border: 1px solid #bfdfc7;
}
.form-alert--error {
  background: #fff2f2;
  color: #9a2c2c;
  border: 1px solid #efc2c2;
}
@media (max-width: 1080px) {
  .contact-page-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .brand img, .brand__logo { width: 160px; max-height: 60px; }
  .brand__tagline { display: none; }
}
@media (max-width: 760px) {
  .form-row { grid-template-columns: 1fr; }
  .captcha-box { flex-direction: column; align-items: stretch; }
  .captcha-input { max-width: none; }
  .contact-page-media img { height: 300px; }
}
