:root {
  --brand: #045085;
  --brand-dark: #023c63;
  --brand-deep: #021c31;
  --brand-soft: #e7f1f8;
  --accent: #f2b84b;
  --accent-dark: #b87311;
  --teal: #0f7b7d;
  --ink: #102331;
  --muted: #5e7080;
  --line: #d9e2ea;
  --surface: #ffffff;
  --surface-alt: #f5f8fb;
  --danger: #ad343e;
  --shadow: 0 18px 50px rgba(10, 33, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface-alt);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(4, 80, 133, 0.12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 188px;
  font-weight: 800;
  color: var(--brand);
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(4, 80, 133, 0.18);
}

.brand span {
  display: block;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.94rem;
  font-weight: 700;
  color: #314657;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand);
  border-bottom-color: var(--accent);
}

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

.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.lang-switch button {
  min-width: 42px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.lang-switch button.is-active {
  background: var(--brand);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--brand);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  background-color: #022339;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: var(--accent);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 720px;
  align-items: center;
}

.hero-content {
  max-width: 680px;
  padding: 86px 0 108px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  line-height: 1;
  font-size: 4.5rem;
  font-weight: 900;
}

.hero h2 {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: 2rem;
  line-height: 1.15;
}

.hero p {
  margin: 22px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-secondary {
  background: var(--brand);
  color: #fff;
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}

.btn-light {
  border-color: var(--line);
  background: #fff;
  color: var(--brand);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
  max-width: 760px;
}

.hero-proof div {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.hero-proof strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.hero-proof span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  color: #fff;
  background-color: #022339;;
}

.page-hero .container {
  min-height: 360px;
  display: flex;
  align-items: center;
}

.page-hero-content {
  max-width: 760px;
  padding: 78px 0 84px;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
}

.section {
  padding: 82px 0;
  background: var(--surface);
}

.section.alt {
  background: var(--surface-alt);
}

.section.band {
  color: #fff;
  background: var(--brand-deep);
}

.section.band .section-heading p,
.section.band .muted {
  color: rgba(255, 255, 255, 0.75);
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.25rem;
  line-height: 1.12;
}

.section.band .section-heading h2 {
  color: #fff;
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 35, 49, 0.06);
}

.card.accent {
  border-top: 4px solid var(--accent);
}

.card.teal {
  border-top: 4px solid var(--teal);
}

.card h3 {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 1.18rem;
  line-height: 1.25;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card ul,
.content-list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.card li,
.content-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.card li + li,
.content-list li + li {
  margin-top: 8px;
}

.card li::before,
.content-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--brand-deep);
}

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.logo-panel {
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: min(260px, 70%);
  border-radius: 50%;
}

.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(217, 226, 234, 0.5);
}

.step:first-child {
  border-top: 0;
}

.step-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #162635;
  font-weight: 900;
}

.step h3 {
  margin: 0 0 6px;
  color: inherit;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.band .step {
  border-color: rgba(255, 255, 255, 0.18);
}

.band .step p {
  color: rgba(255, 255, 255, 0.75);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.metric {
  padding: 22px;
  border-left: 1px solid var(--line);
}

.metric:first-child {
  border-left: 0;
}

.metric strong {
  display: block;
  color: var(--brand);
  font-size: 1.7rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 35, 49, 0.05);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--brand);
  font-size: 0.92rem;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

td:first-child {
  width: 150px;
  color: var(--brand);
  font-weight: 900;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: start;
}

.form-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: #284052;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd7e1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(4, 80, 133, 0.16);
  border-color: var(--brand);
}

.form-note {
  margin: 0 0 18px;
  color: var(--muted);
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.muted {
  color: var(--muted);
}

.cta-band {
  padding: 54px 0;
  color: #fff;
  background: var(--brand);
}

.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

.cta-band p {
  margin: 10px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: var(--brand-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 32px;
  padding: 54px 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.footer-grid h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid a {
  display: block;
  margin-top: 7px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero .container {
    min-height: 620px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.3rem;
  }

  .hero h2 {
    font-size: 1.55rem;
  }

  .grid.three,
  .grid.four,
  .metric-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .form-layout {
    grid-template-columns: 1fr;
  }

  .split.reverse .media-panel,
  .split.reverse .logo-panel {
    order: 2;
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
    right: 14px;
    left: 14px;
  }

  .hero,
  .hero .container {
    min-height: 650px;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(2, 25, 43, 0.96), rgba(2, 35, 57, 0.78)),
      url("../images/workshop.jpeg");
    background-position: 65% center;
  }

  .hero-content {
    padding: 62px 0 84px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .hero h2 {
    font-size: 1.28rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-proof,
  .grid.two,
  .grid.three,
  .grid.four,
  .metric-strip,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .metric:first-child {
    border-top: 0;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .cta-band h2 {
    font-size: 1.65rem;
  }

  .page-hero .container {
    min-height: 300px;
  }

  .page-hero-content {
    padding: 58px 0 64px;
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .form-card {
    padding: 20px;
  }
}
