:root {
  --ink: #17202a;
  --muted: #667085;
  --line: #d7dde5;
  --surface: #ffffff;
  --soft: #f6f7f9;
  --primary: #18324a;
  --primary-2: #276f86;
  --accent: #0f766e;
  --danger: #c0362c;
  --warning-bg: #fff7df;
  --warning-text: #725008;
  --shadow: 0 14px 34px rgba(25, 39, 52, 0.1);
  --radius: 8px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.narrow {
  width: min(760px, calc(100% - 40px));
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: #eef5f5;
  color: var(--accent);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand strong {
  display: block;
  color: var(--primary);
  font-size: 1.12rem;
  letter-spacing: 0;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a,
.mobile-nav a {
  color: #3e4a5d;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:first-child {
  color: var(--primary);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
}

.menu-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.menu-close,
.mobile-nav {
  display: none;
}

.site-header.menu-open .menu-open {
  display: none;
}

.site-header.menu-open .menu-close {
  display: block;
}

.mobile-nav {
  padding: 8px 20px 20px;
  border-top: 1px solid var(--line);
  background: white;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
}

.hero {
  background: linear-gradient(180deg, #fbfcfd 0%, #eef2f5 100%);
  padding: 58px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(410px, 510px);
  gap: 56px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: 0;
}

h1 span {
  color: inherit;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 8px;
  color: #344054;
  font-size: 1.16rem;
  font-weight: 500;
}

.hero-note {
  max-width: 560px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

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

.primary,
.submit {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 24px rgba(24, 50, 74, 0.18);
}

.primary:hover,
.submit:hover {
  background: #10283c;
}

.secondary {
  border: 1px solid var(--line);
  background: white;
  color: var(--primary);
}

.light {
  background: white;
  color: var(--primary);
  padding-inline: 26px;
}

.hero-actions .button {
  padding-inline: 22px;
}

.hero-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.hero-media img {
  width: 100%;
  height: min(46vw, 380px);
  object-fit: cover;
}

.form-panel {
  position: sticky;
  top: 96px;
  border: 1px solid #cfd8e3;
  border-radius: 12px;
  background: white;
  box-shadow: 0 22px 48px rgba(25, 39, 52, 0.13);
  padding: 28px;
}

.form-heading {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.form-heading h2 {
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 1.55rem;
}

.form-heading p:last-child,
.privacy-note {
  color: var(--muted);
  font-size: 0.84rem;
}

.form-group {
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

fieldset.form-group {
  border: 1px solid #e7ecf3;
}

legend,
.field-label,
.field-grid label {
  display: block;
  margin-bottom: 8px;
  color: #273348;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

select,
input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfd8e3;
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--ink);
  outline: none;
}

.custom-select {
  position: relative;
  margin-bottom: 12px;
}

.custom-select-trigger {
  position: relative;
  width: 100%;
  min-height: 48px;
  padding: 12px 44px 12px 13px;
  border: 1px solid #cfd8e3;
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 9px;
  height: 9px;
  border-right: 2px solid #667085;
  border-bottom: 2px solid #667085;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.16s ease;
}

.custom-select.open .custom-select-trigger::after {
  transform: translateY(-35%) rotate(225deg);
}

.custom-select.has-value .custom-select-trigger {
  background: white;
}

.custom-select.danger-selected .custom-select-trigger {
  color: var(--danger);
}

.custom-select-trigger:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(39, 111, 134, 0.13);
  outline: none;
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 30;
  display: none;
  width: 100%;
  max-height: 260px;
  overflow: auto;
  margin: 0;
  padding: 6px;
  border: 1px solid #cfd8e3;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 18px 34px rgba(25, 39, 52, 0.16);
  list-style: none;
}

.custom-select.open .custom-select-options {
  display: block;
}

.custom-select-options li {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: #243044;
  cursor: pointer;
  padding: 9px 10px;
  font-weight: 650;
}

.custom-select-options li.option-group {
  min-height: auto;
  margin: 8px 4px 4px;
  padding: 8px 6px 5px;
  color: var(--primary);
  cursor: default;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.custom-select-options li.option-group:first-child {
  margin-top: 0;
}

.custom-select-options li.option-group:hover {
  background: transparent;
}

.formation-icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 7px;
  background: #eef5f5;
  color: var(--primary);
  flex: 0 0 auto;
}

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

.custom-select-options li:hover,
.custom-select-options li[aria-selected="true"] {
  background: #eef5f5;
}

.custom-select-options li.danger-option {
  color: var(--danger);
}

.custom-select-options li.danger-option:hover,
.custom-select-options li.danger-option[aria-selected="true"] {
  background: #fff1ef;
}

select.has-value,
input:not(:placeholder-shown) {
  background: white;
}

select:focus,
input:focus {
  border-color: var(--primary-2);
  box-shadow: 0 0 0 4px rgba(31, 111, 210, 0.13);
}

.field-grid label {
  margin-bottom: 0;
}

.field-grid input {
  margin-top: 7px;
  text-transform: none;
}

.field-grid select {
  margin-top: 7px;
  text-transform: none;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.proof-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid #d8e4e2;
  border-radius: 999px;
  background: #f7fbfa;
  color: #24524d;
  padding: 0 13px;
  font-size: 0.84rem;
  font-weight: 750;
}

.proof-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.form-error {
  min-height: 20px;
  margin: 8px 0;
  color: var(--danger);
  font-size: 0.86rem;
  font-weight: 700;
}

.submit {
  width: 100%;
  margin-top: 4px;
  padding-inline: 18px;
}

.submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.privacy-note {
  margin: 16px 0 0;
  text-align: center;
}

.privacy-note a,
.faq a,
.legal-warning a,
.cookie-banner a {
  color: var(--primary);
  font-weight: 700;
}

.result-message {
  padding: 32px 10px;
  text-align: center;
}

.result-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 800;
}

.success .result-icon {
  background: #e8f9f2;
  color: #0d8a5d;
}

.danger .result-icon {
  background: #fff1ef;
  color: var(--danger);
}

.text-button {
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 800;
  text-decoration: underline;
}

.benefits,
.testimonials,
.faq {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.info-section h2,
.cta-band h2 {
  color: var(--primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.section-heading p:last-child {
  color: var(--muted);
}

.benefit-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.benefit-grid article,
.testimonial-grid article,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.benefit-grid article,
.testimonial-grid article {
  padding: 26px;
}

.benefit-grid span {
  color: var(--accent);
  font-weight: 800;
}

.benefit-grid h3 {
  margin: 14px 0 10px;
  color: var(--primary);
}

.benefit-grid p,
.testimonial-grid p,
.info-section p,
.commitments p,
.faq-item div {
  color: var(--muted);
}

.info-section {
  background: var(--soft);
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-band {
  background: var(--primary);
  color: white;
  padding: 78px 0;
  text-align: center;
}

.cta-band h2 {
  color: white;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.stars {
  color: #e1a300;
  letter-spacing: 0.04em;
}

.testimonial-grid strong,
.testimonial-grid small {
  display: block;
}

.testimonial-grid strong {
  color: var(--primary);
}

.testimonial-grid small {
  margin-top: 2px;
  color: #8792a4;
  font-size: 0.7rem;
  font-weight: 800;
}

.commitments {
  padding: 54px 0;
  background: var(--soft);
  text-align: center;
}

.commitments > .container > p:not(.eyebrow) {
  max-width: 680px;
  margin-inline: auto;
}

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

.commitment-grid span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: white;
  color: var(--primary);
  cursor: pointer;
  padding: 18px 20px;
  text-align: left;
  font-weight: 800;
}

.faq-item button span {
  font-size: 1.45rem;
  line-height: 1;
}

.faq-item div {
  display: none;
  padding: 0 20px 20px;
}

.faq-item.open div {
  display: block;
}

.faq-item.open button span {
  transform: rotate(45deg);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f9fafc;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 42px;
}

.site-footer h3 {
  color: var(--primary);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

.legal-warning {
  margin-top: 32px;
  padding: 16px;
  border: 1px solid #f0d894;
  border-radius: var(--radius);
  background: var(--warning-bg);
}

.legal-warning p {
  margin: 0;
  color: var(--warning-text);
  font-size: 0.8rem;
}

.copyright {
  margin: 22px 0 0;
  color: #97a1b2;
  font-size: 0.78rem;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  width: min(420px, calc(100% - 32px));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.cookie-banner h4 {
  margin: 0 0 6px;
  color: var(--primary);
}

.cookie-banner p {
  color: var(--muted);
  font-size: 0.84rem;
}

.cookie-banner div {
  display: flex;
  gap: 10px;
}

.cookie-banner button {
  min-height: 44px;
  flex: 1;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.cookie-banner button:first-child {
  background: var(--primary);
  color: white;
}

.cookie-banner button:last-child {
  background: var(--soft);
  color: var(--ink);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 40;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow);
  padding: 0 18px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.menu-open .mobile-nav {
    display: block;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .form-panel {
    position: static;
  }

  .benefit-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 42px 0;
  }

  .hero-actions,
  .cookie-banner div {
    flex-direction: column;
  }

  .button,
  .hero-actions .button {
    width: 100%;
    padding-inline: 14px;
  }

  .form-panel {
    padding: 18px;
  }

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

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

  .sticky-cta {
    display: flex;
    left: 14px;
    right: 14px;
  }

  body {
    padding-bottom: 72px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
