
:root {
  --blue: #07548a;
  --blue-dark: #053653;
  --blue-deep: #03283d;
  --sky: #48a8d8;
  --sky-pale: #eaf7fc;
  --red: #e63838;
  --red-dark: #bd2328;
  --ink: #102b3b;
  --muted: #617583;
  --line: #d9e4e9;
  --white: #ffffff;
  --paper: #f7fbfd;
  --shadow: 0 24px 70px rgba(7, 60, 90, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding-block: 104px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(7, 84, 138, 0.1);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  min-height: 86px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-transform: uppercase;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand small {
  display: block;
  max-width: 185px;
  margin-top: 4px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding-block: 8px;
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

.phone {
  display: flex;
  flex-direction: column;
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 850;
  line-height: 1.15;
  text-align: right;
}

.phone span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button i {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 5px;
  background: var(--blue-dark);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 22px;
  color: #7a8b96;
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.hero {
  display: grid;
  min-height: 660px;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 44px;
  padding-block: 58px 72px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sky);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(38px, 5.2vw, 73px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(38px, 4.2vw, 62px);
}

.hero h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 14px 26px rgba(230, 56, 56, 0.22);
  color: var(--white);
}

.button-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 18px 32px rgba(230, 56, 56, 0.3);
}

.button-ghost {
  border-color: var(--line);
  background: var(--white);
  color: var(--blue-dark);
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 13px;
}

.hero-note strong {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sky-pale);
  color: var(--blue);
  font-size: 13px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 555px;
  border-radius: 80px 12px 80px 12px;
  background: var(--sky-pale);
  box-shadow: var(--shadow);
}

.hero-media::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(145deg, rgba(5, 54, 83, 0.06), transparent 50%);
  content: "";
}

.hero-media > img {
  width: 100%;
  height: 555px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  background: rgba(4, 50, 75, 0.85);
  backdrop-filter: blur(12px);
  color: white;
}

.hero-badge span {
  color: #6cc7ee;
  font-size: 24px;
  font-weight: 900;
}

.hero-badge p {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 96px;
  border-top: 1px solid var(--line);
}

.section h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.intro-text {
  padding-top: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.intro-text p {
  margin: 0 0 18px;
}

.intro-text strong {
  color: var(--ink);
}

.stats {
  position: relative;
  overflow: hidden;
  padding-block: 58px;
  background: var(--blue-dark);
  color: var(--white);
}

.stats::after {
  position: absolute;
  right: -120px;
  bottom: -260px;
  width: 480px;
  height: 480px;
  border: 80px solid rgba(74, 170, 217, 0.12);
  border-radius: 50%;
  content: "";
}

.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 0;
}

.stats article {
  min-height: 130px;
  padding: 12px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.stats article:first-child {
  padding-left: 0;
}

.stats article strong {
  color: #ff4c50;
  font-size: clamp(42px, 4vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.stats article p {
  max-width: 230px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.stats-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 42px;
}

.stats-message span {
  color: #65bde7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stats-message b {
  max-width: 320px;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.35;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.video-showcase {
  position: relative;
  overflow: hidden;
  margin-bottom: 56px;
  border-radius: 14px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.video-showcase video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 720px;
  background: var(--blue-dark);
  object-fit: cover;
}

.video-showcase-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: calc(100% - 48px);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(2, 37, 56, 0.78);
  color: var(--white);
  pointer-events: none;
  backdrop-filter: blur(10px);
}

.video-showcase-caption span {
  flex: 0 0 auto;
  color: #8bd5f5;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-showcase-caption p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

.gallery-subheading {
  margin-bottom: 18px;
}

.gallery-subheading .eyebrow {
  margin: 0;
}

.gallery-stage {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  border-radius: 14px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.gallery-item {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.gallery-item.active {
  opacity: 1;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(2, 37, 56, 0.92));
  content: "";
}

.gallery-item img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.gallery-item figcaption {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}

.gallery-item figcaption > span {
  color: #73c5e8;
  font-size: 26px;
  font-weight: 900;
}

.gallery-item figcaption strong {
  font-size: 24px;
}

.gallery-item figcaption p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.gallery-controls {
  position: absolute;
  z-index: 4;
  right: 40px;
  top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 220px;
}

.gallery-controls button {
  width: 18px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.gallery-controls button.active {
  background: var(--red);
}

.skills {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.skills::before {
  position: absolute;
  top: -200px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.section-heading.light h2 {
  color: var(--white);
}

.section-heading.light > p {
  color: rgba(255, 255, 255, 0.66);
}

.section-heading.light .eyebrow {
  color: #8bd5f5;
}

.skill-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.skill-card {
  min-height: 340px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill-top small {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 800;
}

.skill-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.13);
  font-size: 28px;
}

.skill-card h3 {
  margin: 34px 0 14px;
  font-size: 23px;
  line-height: 1.2;
}

.skill-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
}

.included {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.included-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.included-title > p:not(.eyebrow) {
  max-width: 440px;
  margin: 26px 0;
  color: var(--muted);
  line-height: 1.7;
}

.included-list {
  border-top: 1px solid var(--line);
}

.included-list article {
  display: grid;
  min-height: 106px;
  grid-template-columns: 54px 100px 1fr;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--line);
}

.included-list article > span {
  color: var(--sky);
  font-size: 12px;
  font-weight: 850;
}

.included-list article strong {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}

.included-list article p {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
}

.groups {
  background: var(--paper);
}

.groups-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(20, 75, 100, 0.08);
}

.groups-row {
  position: relative;
  display: grid;
  min-height: 90px;
  grid-template-columns: 0.6fr 0.8fr 2fr 44px;
  align-items: center;
  gap: 24px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
}

.groups-row:last-child {
  border-bottom: 0;
}

.groups-head {
  min-height: 54px;
  grid-template-columns: 0.6fr 0.8fr 2fr 44px;
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.groups-row strong {
  color: var(--blue);
  font-size: 19px;
}

.groups-row > span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 750;
}

.groups-row > span i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

.groups-row > span i.advanced {
  background: var(--red);
}

.groups-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.groups-row button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--blue);
  font-size: 20px;
  transition: 160ms ease;
}

.groups-row button:hover {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.team {
  display: grid;
  grid-template-columns: 1fr 0.88fr;
  align-items: center;
  gap: 90px;
}

.team-visual {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  border-radius: 12px 70px 12px 70px;
  background: var(--sky-pale);
}

.team-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 44, 65, 0.56));
  content: "";
}

.team-visual img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 25%;
}

.team-visual > span {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 750;
}

.team-copy > p:not(.eyebrow) {
  margin: 28px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.team-points {
  display: grid;
  gap: 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--line);
}

.team-points span {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 750;
}

.team-points span::before {
  position: absolute;
  top: 23px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.team-points span b {
  font-weight: 850;
}

.reviews {
  background: var(--sky-pale);
}

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

.review-grid article {
  position: relative;
  min-height: 360px;
  padding: 34px;
  border: 1px solid rgba(7, 84, 138, 0.1);
  border-radius: 12px;
  background: var(--white);
}

.review-grid article > b {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: #d7e9f1;
  font-size: 36px;
  font-weight: 900;
}

.stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: 0.15em;
}

.review-grid blockquote {
  margin: 28px 0 42px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.65;
}

.review-grid footer {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-grid footer > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--blue);
  font-size: 7px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

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

.review-grid footer strong {
  font-size: 13px;
}

.review-grid footer small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 90px;
}

.faq-title {
  align-self: start;
}

.faq-title > p:not(.eyebrow) {
  max-width: 420px;
  margin: 24px 0;
  color: var(--muted);
  line-height: 1.7;
}

.phone-card {
  display: inline-flex;
  flex-direction: column;
  margin-top: 12px;
  padding-left: 16px;
  border-left: 3px solid var(--red);
}

.phone-card small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.phone-card strong {
  color: var(--blue);
  font-size: 21px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--sky-pale);
  color: var(--blue);
  font-size: 22px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  background: var(--red);
  color: white;
  transform: rotate(45deg);
}

.faq-list details > p {
  max-width: 680px;
  margin: -4px 54px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.addresses {
  background: var(--blue-dark);
  color: white;
}

.map-wrap {
  position: relative;
  overflow: hidden;
  height: 440px;
  margin-bottom: 26px;
  border-radius: 14px;
  background: #e7f0f3;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-label {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 25px rgba(4, 43, 64, 0.16);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
}

.map-label img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.venue-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  gap: 18px;
}

.venue-grid article {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.venue-grid header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.venue-grid header span {
  color: #67bde4;
  font-size: 11px;
  font-weight: 850;
}

.venue-grid h3 {
  margin: 0;
  font-size: 18px;
}

.venue-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.venue-grid li {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.venue-grid a:hover {
  color: white;
}

.venue-grid a span {
  color: #6bc4e9;
}

.trial {
  overflow: hidden;
  background: linear-gradient(125deg, #eef9fd, #dff1f8);
}

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

.trial-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.trial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trial-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.trial form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid rgba(7, 84, 138, 0.12);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trial label {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.trial input,
.trial select {
  display: block;
  width: 100%;
  height: 50px;
  margin-top: 7px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.trial input:focus,
.trial select:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(72, 168, 216, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 14px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 0;
}

.trial form .button {
  width: 100%;
}

.form-notice {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.5;
}

.form-notice.error {
  color: var(--red-dark);
}

.cf-turnstile {
  min-height: 65px;
}

.footer {
  padding-top: 58px;
  background: var(--blue-deep);
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr auto;
  gap: 50px;
  padding-bottom: 48px;
}

.brand-light {
  color: white;
}

.brand-light small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-main > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
}

.footer-main > div small {
  margin-bottom: 6px;
  color: #72c0e4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main > div a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-main > div a:hover {
  color: white;
}

.vk-link {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 18px;
  background: #2787f5;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.vk-link span {
  margin-top: -17px;
  font-size: 7px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 16px;
  }

  .menu-button {
    display: block;
  }

  .nav {
    position: absolute;
    top: 86px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 22px;
    border-bottom: 1px solid var(--line);
    background: white;
  }

  .nav.open {
    display: flex;
  }

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

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-media > img {
    height: 500px;
  }

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

  .stats-message {
    grid-column: 1 / -1;
    padding: 30px 0 0;
  }

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

  .included,
  .faq {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .included-title {
    position: static;
  }

  .team {
    grid-template-columns: 0.85fr 1fr;
    gap: 48px;
  }

  .team-visual,
  .team-visual img {
    min-height: 520px;
    height: 520px;
  }

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

  .review-grid article {
    min-height: 0;
  }

  .trial-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .section {
    padding-block: 76px;
  }

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

  .brand {
    min-width: 0;
    font-size: 14px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .brand small {
    max-width: 145px;
    font-size: 7px;
  }

  .phone {
    display: none;
  }

  .nav {
    top: 74px;
  }

  .breadcrumb {
    padding-top: 16px;
  }

  .hero {
    gap: 34px;
    padding-block: 36px 56px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions .button {
    flex: 1 1 auto;
  }

  .hero-media,
  .hero-media > img {
    min-height: 430px;
    height: 430px;
  }

  .hero-media {
    border-radius: 44px 10px;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .intro-text {
    padding-top: 0;
  }

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

  .stats article {
    min-height: 0;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stats article p {
    max-width: 330px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 38px;
  }

  .video-showcase {
    margin-bottom: 40px;
    border-radius: 10px;
  }

  .video-showcase-caption {
    top: 12px;
    right: 12px;
    left: 12px;
    display: block;
    max-width: calc(100% - 24px);
    padding: 9px 11px;
  }

  .video-showcase-caption p {
    display: none;
  }

  .gallery-stage,
  .gallery-item img {
    min-height: 460px;
    height: 460px;
  }

  .gallery-item figcaption {
    right: 22px;
    bottom: 24px;
    left: 22px;
  }

  .gallery-item figcaption strong {
    font-size: 19px;
  }

  .gallery-controls {
    top: 20px;
    right: 20px;
  }

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

  .skill-card {
    min-height: 0;
    padding: 30px;
  }

  .included-list article {
    min-height: 92px;
    grid-template-columns: 38px 76px 1fr;
  }

  .included-list article strong {
    font-size: 20px;
  }

  .included-list article p {
    font-size: 14px;
  }

  .groups-head {
    display: none;
  }

  .groups-row {
    min-height: 0;
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    padding: 22px;
  }

  .groups-row strong {
    grid-column: 1;
  }

  .groups-row > span {
    grid-column: 1;
  }

  .groups-row p {
    grid-column: 1 / -1;
  }

  .groups-row button {
    grid-row: 1 / 3;
    grid-column: 2;
  }

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

  .team-visual,
  .team-visual img {
    min-height: 440px;
    height: 440px;
  }

  .faq-list summary {
    min-height: 74px;
    font-size: 15px;
  }

  .map-wrap {
    height: 380px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .trial form {
    padding: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .footer-main .brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
}

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