:root {
  --navy: #102f3b;
  --navy-deep: #08232d;
  --navy-soft: #173f49;
  --teal-dark: #17686a;
  --teal: #5a9a91;
  --teal-soft: #e4f0ed;
  --ivory: #faf7f1;
  --warm-white: #fffdfb;
  --sand: #ebe0d2;
  --gold: #c7a364;
  --gold-light: #f0d99d;
  --gold-soft: #f5ead2;
  --ink: #15313b;
  --muted: #66777d;
  --line: #d8e4e0;
  --white: #ffffff;
  --danger: #a33b3b;
  --success: #1f6f59;
  --shadow-lg: 0 28px 72px rgba(8, 35, 45, 0.15);
  --shadow-md: 0 18px 46px rgba(8, 35, 45, 0.1);
  --shadow-sm: 0 10px 28px rgba(8, 35, 45, 0.07);
  --font-body: "Inter";
  --font-display: "Manrope";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--font-body), "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

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

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

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

[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-image,
.editorial-image,
.review-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

body.lightbox-open {
  overflow: hidden;
}

.no-js .animated-section,
.no-js .reveal-item {
  opacity: 1;
  transform: none;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--font-display), "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: 3.7rem;
}

h2 {
  margin-bottom: 0;
  font-size: 3rem;
}

h3 {
  font-size: 1rem;
}

:focus-visible {
  outline: 3px solid rgba(199, 163, 100, 0.72);
  outline-offset: 3px;
}

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

.section {
  padding: 82px 0;
}

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

.section-heading h2 {
  max-width: 860px;
  text-wrap: balance;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  padding: 13px 23px;
  cursor: pointer;
  font-family: var(--font-display), "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-primary {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 104, 106, 0.24);
}

.button-primary:hover {
  background: #105b5d;
  box-shadow: 0 16px 34px rgba(23, 104, 106, 0.3);
}

.button-light {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 14px 32px rgba(4, 24, 31, 0.22);
}

.button-light:hover {
  background: var(--gold-soft);
}

.icon-box {
  display: inline-flex;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(90, 154, 145, 0.22);
  border-radius: 13px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.icon-box-gold {
  border-color: rgba(199, 163, 100, 0.35);
  background: rgba(245, 234, 210, 0.13);
  color: var(--gold-light);
}

.editorial-image {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.nowrap {
  white-space: nowrap;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(216, 228, 224, 0.78);
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 146px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: #40575f;
  font-size: 0.88rem;
  font-weight: 680;
  transition: color 160ms ease;
}

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

.main-nav a:hover {
  color: var(--teal-dark);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-button {
  grid-column: 3;
  justify-self: end;
  min-height: 40px;
  border: 1px solid rgba(23, 104, 106, 0.22);
  background: rgba(228, 240, 237, 0.8);
  color: var(--teal-dark);
  padding: 9px 15px;
  font-size: 0.8rem;
  box-shadow: none;
}

.header-button:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 26px 0 64px;
  background:
    linear-gradient(132deg, rgba(228, 240, 237, 0.82), transparent 43%),
    linear-gradient(180deg, #fffdfb 0%, #f8f4ee 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -14%;
  width: 64%;
  height: 100%;
  background: linear-gradient(120deg, transparent 12%, rgba(199, 163, 100, 0.08) 100%);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(350px, 0.72fr);
  align-items: stretch;
  gap: 20px;
}

.hero-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 640px;
  grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.75fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(90, 154, 145, 0.18), transparent 45%),
    linear-gradient(135deg, var(--navy-deep), var(--navy) 62%, #164c54);
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.hero-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 72%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 54px 38px 54px 44px;
}

.hero-card h1 {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: 3.55rem;
  line-height: 1;
  text-wrap: balance;
}

.hero-subtitle {
  margin-bottom: 26px;
  color: #d4e6e2;
  font-size: 1.08rem;
  font-weight: 630;
}

.hero-offer {
  width: min(100%, 470px);
  border: 1px solid rgba(240, 217, 157, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  padding: 18px 20px 20px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 18px 40px rgba(4, 24, 31, 0.14);
  backdrop-filter: blur(10px);
}

.offer-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eef5f3;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
}

.offer-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(240, 217, 157, 0.3);
  border-radius: 11px;
  background: rgba(199, 163, 100, 0.12);
  color: var(--gold-light);
}

.hero-offer strong {
  display: block;
  margin-top: 7px;
  color: var(--gold-light);
  font-family: var(--font-display), "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.hero-button {
  min-width: 220px;
  margin-top: 24px;
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 14px 32px rgba(4, 24, 31, 0.28);
}

.hero-button:hover {
  background: #d7b776;
  box-shadow: 0 18px 38px rgba(4, 24, 31, 0.34);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  background: #dbe5df;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 35, 45, 0.48), transparent 34%),
    linear-gradient(0deg, rgba(8, 35, 45, 0.17), transparent 32%);
  content: "";
  pointer-events: none;
}

.hero-image {
  object-fit: cover;
  object-position: 52% center;
  animation: hero-image-in 900ms 180ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-visual-line {
  position: absolute;
  z-index: 2;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 20px;
  pointer-events: none;
  animation: frame-breathe 7s ease-in-out infinite;
}

.form-shell {
  position: relative;
  scroll-margin-top: 82px;
}

.form-shell::before {
  position: absolute;
  z-index: -1;
  inset: 9px -7px -9px 7px;
  border: 1px solid rgba(199, 163, 100, 0.22);
  border-radius: 30px;
  content: "";
}

.lead-form {
  position: relative;
  display: grid;
  height: 100%;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(216, 228, 224, 0.92);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(228, 240, 237, 0.36), transparent 36%),
    rgba(255, 255, 255, 0.97);
  padding: 25px;
  box-shadow: var(--shadow-lg);
}

.lead-form::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  content: "";
}

.form-head {
  margin-bottom: 3px;
}

.form-head h2 {
  margin-bottom: 7px;
  font-size: 2rem;
}

.form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.field {
  display: grid;
  gap: 6px;
  color: #38525a;
  font-size: 0.8rem;
  font-weight: 730;
}

.field input,
.field select {
  width: 100%;
  height: 49px;
  min-width: 0;
  border: 1px solid #ccdcd7;
  border-radius: 13px;
  background: rgba(250, 247, 241, 0.62);
  color: var(--ink);
  padding: 0 13px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.field input::placeholder {
  color: #8d9a9e;
}

.field input:hover,
.field select:hover {
  border-color: rgba(90, 154, 145, 0.52);
}

.field input:focus,
.field select:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(90, 154, 145, 0.13);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.34fr) minmax(0, 0.66fr);
  gap: 10px;
}

.lead-form fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.lead-form legend {
  margin-bottom: 7px;
  color: #38525a;
  font-size: 0.8rem;
  font-weight: 730;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.radio-row {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 9px;
  border: 1px solid #ccdcd7;
  border-radius: 13px;
  background: rgba(250, 247, 241, 0.62);
  padding: 8px 12px;
  color: #38525a;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.radio-row:has(input:checked) {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.radio-row input,
.consent input {
  accent-color: var(--teal-dark);
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.45;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
}

.consent a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  margin-top: 1px;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-message {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 0.82rem;
  font-weight: 680;
}

.form-message.error {
  background: #fff0f0;
  color: var(--danger);
}

.form-message.success {
  background: #eaf6f0;
  color: var(--success);
}

.advantages-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(216, 228, 224, 0.72);
  background:
    linear-gradient(140deg, rgba(228, 240, 237, 0.66), transparent 45%),
    #f6f8f5;
}

.advantages-layout {
  display: grid;
  gap: 16px;
}

.advantages-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: 16px;
}

.advantage-feature {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(90, 154, 145, 0.22), transparent 56%),
    var(--navy);
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
}

.advantage-feature::after {
  position: absolute;
  z-index: -1;
  right: -28%;
  bottom: -34%;
  width: 80%;
  height: 78%;
  border: 1px solid rgba(240, 217, 157, 0.13);
  border-radius: 40% 0 0;
  content: "";
  transform: rotate(-12deg);
}

.advantage-feature .icon-box {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border-radius: 16px;
}

.advantage-feature p {
  min-width: 0;
  margin: 0;
  color: #e4efec;
  font-size: 1rem;
  line-height: 1.58;
}

.advantage-feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-family: var(--font-display), "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1.12;
}

.advantage-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(145deg, var(--teal-soft), var(--sand));
  box-shadow: var(--shadow-md);
}

.advantage-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.advantage-media:hover .editorial-image,
.faq-media:hover .editorial-image {
  transform: scale(1.035);
}

.advantage-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.advantage-tile {
  display: grid;
  min-width: 0;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 13px;
  border: 1px solid rgba(90, 154, 145, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  padding: 19px;
  box-shadow: 0 8px 26px rgba(8, 35, 45, 0.045);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.advantage-tile:hover {
  border-color: rgba(90, 154, 145, 0.38);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.advantage-tile p {
  min-width: 0;
  margin: 0;
  color: #50656c;
  font-size: 0.93rem;
  line-height: 1.55;
}

.advantage-tile strong {
  color: var(--navy);
}

.requirements-section {
  background: var(--warm-white);
}

.requirements-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(125deg, rgba(90, 154, 145, 0.2), transparent 48%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-soft));
  padding: 46px;
  box-shadow: var(--shadow-lg);
}

.requirements-panel::after {
  position: absolute;
  z-index: -1;
  top: -40%;
  right: -12%;
  width: 48%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(240, 217, 157, 0.06));
  content: "";
  transform: rotate(15deg);
}

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

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(255, 255, 255, 0.14);
}

.requirement-item {
  display: grid;
  min-height: 132px;
  grid-template-columns: 44px minmax(0, 1fr);
  align-content: center;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
}

.requirement-item + .requirement-item {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.requirement-icon {
  border-color: rgba(240, 217, 157, 0.24);
  background: rgba(255, 255, 255, 0.09);
  color: var(--gold-light);
}

.requirement-item p {
  margin: 0;
  color: #edf4f2;
  font-weight: 680;
  line-height: 1.45;
}

.requirements-button {
  margin-top: 26px;
  background: var(--gold);
  color: var(--navy-deep);
}

.requirements-button:hover {
  background: #d7b776;
}

.faq-section {
  border-block: 1px solid rgba(235, 224, 210, 0.8);
  background:
    linear-gradient(145deg, rgba(235, 224, 210, 0.42), transparent 46%),
    var(--ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 24px;
}

.faq-media {
  position: sticky;
  top: 92px;
  min-width: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 28px;
  background: var(--teal-soft);
  box-shadow: var(--shadow-md);
}

.faq-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 35, 45, 0.34), transparent 38%);
  content: "";
  pointer-events: none;
}

.faq-media figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 16px;
  background: rgba(8, 35, 45, 0.72);
  color: var(--white);
  padding: 13px 15px;
  font-family: var(--font-display), "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 730;
  backdrop-filter: blur(12px);
}

.faq-content {
  min-width: 0;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid #e1d9cd;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(90, 154, 145, 0.34);
}

.faq-item.is-open {
  border-color: rgba(90, 154, 145, 0.5);
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin: 0;
}

.faq-item h3 button {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 19px 20px;
  color: var(--navy);
  cursor: pointer;
  font-family: var(--font-display), "Manrope", ui-sans-serif, system-ui, sans-serif;
  font-weight: 740;
  text-align: left;
}

.faq-icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(90, 154, 145, 0.18);
  border-radius: 11px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.faq-icon svg {
  transition: transform 240ms ease;
}

.faq-item.is-open .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 260ms ease,
    opacity 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: #586b71;
  line-height: 1.65;
}

.faq-button {
  min-width: 180px;
  margin-top: 22px;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(228, 240, 237, 0.58), transparent 42%),
    #f7f9f7;
}

.reviews-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.reviews-heading h2 {
  margin: 0;
}

.review-controls {
  display: flex;
  gap: 9px;
}

.review-controls button,
.lightbox-close {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(8, 35, 45, 0.05);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.review-controls button:hover {
  background: var(--teal-dark);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.reviews-gallery {
  display: grid;
  grid-auto-columns: calc((100% - 32px) / 3);
  grid-auto-flow: column;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 3px 2px 17px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: rgba(90, 154, 145, 0.45) transparent;
  scrollbar-width: thin;
}

.review-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(90, 154, 145, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  padding: 9px;
  cursor: zoom-in;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-shadow: var(--shadow-sm);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.review-card:hover {
  border-color: rgba(90, 154, 145, 0.4);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-media {
  position: relative;
  display: block;
  width: 100%;
  height: 560px;
  overflow: hidden;
  border-radius: 17px;
  background: var(--white);
}

.review-image {
  object-fit: contain;
}

.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(4, 18, 24, 0.92);
  padding: 28px;
  animation: lightbox-in 180ms ease both;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 20px;
  right: 20px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: var(--white);
  color: var(--navy);
}

.lightbox-image {
  position: relative;
  width: min(94vw, 1100px);
  height: min(92vh, 1000px);
  animation: lightbox-media-in 240ms 40ms ease both;
}

.final-cta-section {
  padding: 20px 0 76px;
  background: var(--warm-white);
}

.final-cta-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    linear-gradient(115deg, rgba(90, 154, 145, 0.26), transparent 48%),
    linear-gradient(135deg, var(--navy-deep), var(--teal-dark));
  padding: 46px 48px;
  box-shadow: var(--shadow-lg);
}

.final-cta-panel::after {
  position: absolute;
  z-index: -1;
  top: -50%;
  right: -10%;
  width: 46%;
  height: 200%;
  border-inline: 1px solid rgba(240, 217, 157, 0.12);
  content: "";
  transform: rotate(18deg);
}

.final-cta-panel h2 {
  max-width: 700px;
  color: var(--white);
  font-size: 2.8rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--navy-deep);
  color: #d1ddda;
  padding: 46px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 30px;
}

.footer-brand img {
  width: 148px;
  height: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-privacy p {
  margin: 0;
  color: #aebfbb;
  font-size: 0.88rem;
}

.footer-contacts {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 670;
}

.footer-contacts svg {
  color: #d6b97f;
}

.footer-privacy {
  display: grid;
  gap: 9px;
}

.footer-privacy strong {
  color: var(--white);
}

.footer-privacy a {
  width: fit-content;
  color: #e3c682;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-copyright {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  color: #839894;
  font-size: 0.8rem;
}

.utility-page {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(90, 154, 145, 0.16), transparent 46%),
    var(--ivory);
  padding: 24px;
}

.utility-card {
  width: min(100%, 620px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  padding: 42px;
  box-shadow: var(--shadow-lg);
}

.utility-brand {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-weight: 760;
}

.utility-card h1 {
  color: var(--navy);
  font-size: 2.65rem;
}

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

.utility-card .button {
  margin-top: 12px;
}

.fade-up {
  animation: fade-up 600ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.delay-one {
  animation-delay: 120ms;
}

.hero-copy > * {
  animation: hero-copy-in 560ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy > :nth-child(2) {
  animation-delay: 70ms;
}

.hero-copy > :nth-child(3) {
  animation-delay: 140ms;
}

.hero-copy > :nth-child(4) {
  animation-delay: 210ms;
}

.animated-section {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.animated-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
}

.animated-section.is-visible .reveal-item {
  animation: card-reveal 560ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.animated-section.is-visible .advantages-showcase .reveal-item:nth-child(2),
.animated-section.is-visible .advantage-tiles .reveal-item:nth-child(2),
.animated-section.is-visible .requirements-grid .reveal-item:nth-child(2) {
  animation-delay: 70ms;
}

.animated-section.is-visible .advantage-tiles .reveal-item:nth-child(3),
.animated-section.is-visible .requirements-grid .reveal-item:nth-child(3) {
  animation-delay: 120ms;
}

.animated-section.is-visible .advantage-tiles .reveal-item:nth-child(4),
.animated-section.is-visible .requirements-grid .reveal-item:nth-child(4) {
  animation-delay: 170ms;
}

.animated-section.is-visible .advantage-tiles .reveal-item:nth-child(5) {
  animation-delay: 220ms;
}

.animated-section.is-visible .advantage-tiles .reveal-item:nth-child(6) {
  animation-delay: 270ms;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes frame-breathe {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.72;
  }
}

@keyframes card-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lightbox-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes lightbox-media-in {
  from {
    opacity: 0;
    transform: scale(0.975);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.74fr);
  }

  .hero-card {
    grid-template-columns: minmax(0, 1fr) minmax(245px, 0.72fr);
  }

  .hero-copy {
    padding: 46px 30px 46px 34px;
  }

  .hero-card h1 {
    font-size: 3.15rem;
  }

  .hero-offer strong {
    font-size: 2.5rem;
  }

  .advantage-feature strong {
    font-size: 1.72rem;
  }
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 590px;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.8fr);
  }

  .lead-form {
    height: auto;
  }

  .form-shell::before {
    display: none;
  }

  .advantages-showcase {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  }

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

  .review-media {
    height: 540px;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 860px);
  }

  .main-nav {
    display: none;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-media {
    position: relative;
    top: auto;
    aspect-ratio: 16 / 9;
  }

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

  .requirement-item {
    min-height: 112px;
  }

  .requirement-item + .requirement-item {
    border-left: 0;
  }

  .requirement-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .requirement-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .reviews-gallery {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

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

  .footer-privacy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero-card {
    min-height: 560px;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 0.74fr);
  }

  .hero-copy {
    padding: 38px 24px 38px 28px;
  }

  .hero-card h1 {
    font-size: 2.75rem;
  }

  .hero-offer strong {
    font-size: 2.25rem;
  }

  .advantages-showcase {
    grid-template-columns: 1fr;
  }

  .advantage-media {
    aspect-ratio: 16 / 9;
  }

  .advantage-feature strong {
    font-size: 1.9rem;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 28px, 640px);
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .site-header {
    min-height: 60px;
  }

  .header-inner {
    min-height: 60px;
    gap: 12px;
  }

  .brand img {
    width: 122px;
  }

  .header-button {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.69rem;
  }

  .hero {
    padding: 14px 0 40px;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero-card {
    min-height: auto;
    grid-template-columns: 1fr;
    border-radius: 26px;
  }

  .hero-copy {
    padding: 30px 20px 24px;
  }

  .hero-card h1 {
    margin-bottom: 11px;
    font-size: 2.25rem;
    line-height: 1.02;
  }

  .hero-subtitle {
    margin-bottom: 19px;
    font-size: 0.98rem;
  }

  .hero-offer {
    border-radius: 18px;
    padding: 15px 16px 17px;
  }

  .offer-label {
    align-items: flex-start;
    font-size: 0.82rem;
  }

  .offer-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }

  .hero-offer strong {
    margin-top: 8px;
    font-size: 2.45rem;
  }

  .hero-button {
    width: 100%;
    margin-top: 18px;
  }

  .hero-visual {
    min-height: 260px;
    aspect-ratio: 4 / 3;
  }

  .hero-image {
    object-position: 50% 22%;
  }

  .hero-visual::after {
    background: linear-gradient(0deg, rgba(8, 35, 45, 0.18), transparent 40%);
  }

  .hero-visual-line {
    inset: 12px;
    border-radius: 16px;
  }

  .lead-form {
    gap: 12px;
    border-radius: 24px;
    padding: 21px 16px;
  }

  .form-head h2 {
    font-size: 1.78rem;
  }

  .form-head p {
    font-size: 0.78rem;
  }

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

  .field input,
  .field select {
    height: 47px;
  }

  .advantages-layout {
    gap: 12px;
  }

  .advantages-showcase {
    gap: 12px;
  }

  .advantage-feature {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    border-radius: 24px;
    padding: 22px 19px;
  }

  .advantage-feature .icon-box {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
  }

  .advantage-feature p {
    font-size: 0.98rem;
  }

  .advantage-feature strong {
    margin-bottom: 5px;
    font-size: 1.35rem;
  }

  .advantage-media {
    aspect-ratio: 16 / 10;
    border-radius: 24px;
  }

  .advantage-tiles {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .advantage-tile {
    gap: 12px;
    border-radius: 18px;
    padding: 15px;
  }

  .advantage-tile p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .requirements-panel {
    width: min(100% - 28px, 640px);
    border-radius: 26px;
    padding: 28px 18px;
  }

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

  .requirement-item {
    min-height: auto;
    padding: 16px 4px;
  }

  .requirement-item:nth-child(even) {
    border-left: 0;
  }

  .requirement-item + .requirement-item,
  .requirement-item:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .requirements-button,
  .faq-button {
    width: 100%;
  }

  .faq-layout {
    gap: 16px;
  }

  .faq-media {
    aspect-ratio: 16 / 10;
    border-radius: 24px;
  }

  .faq-media figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 13px;
    padding: 11px 12px;
    font-size: 0.82rem;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item h3 button {
    gap: 12px;
    padding: 16px;
    font-size: 0.92rem;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
  }

  .faq-answer p {
    padding: 0 16px 17px;
    font-size: 0.92rem;
  }

  .reviews-heading {
    align-items: center;
    margin-bottom: 22px;
  }

  .reviews-heading h2 {
    max-width: 250px;
  }

  .review-controls {
    gap: 6px;
  }

  .review-controls button {
    width: 40px;
    height: 40px;
  }

  .reviews-gallery {
    grid-auto-columns: 100%;
    gap: 12px;
  }

  .review-card {
    border-radius: 20px;
    padding: 7px;
  }

  .review-media {
    height: min(580px, 70vh);
    min-height: 450px;
    border-radius: 14px;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-image {
    width: 96vw;
    height: 90vh;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }

  .final-cta-section {
    padding: 12px 0 54px;
  }

  .final-cta-panel {
    align-items: stretch;
    flex-direction: column;
    border-radius: 26px;
    padding: 30px 20px;
  }

  .final-cta-panel h2 {
    font-size: 2.08rem;
  }

  .button-light {
    width: 100%;
  }

  .site-footer {
    padding: 38px 0 24px;
  }

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

  .footer-privacy {
    grid-column: auto;
  }

  .utility-card {
    border-radius: 22px;
    padding: 28px 20px;
  }

  .utility-card h1 {
    font-size: 2rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, 640px);
  }

  .brand img {
    width: 112px;
  }

  .header-button {
    padding-inline: 8px;
    font-size: 0.65rem;
  }

  .hero-card h1 {
    font-size: 2.1rem;
  }

  .hero-offer strong {
    font-size: 2.25rem;
  }

  .requirements-panel {
    width: min(100% - 24px, 640px);
  }

  .review-controls button {
    width: 38px;
    height: 38px;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .animated-section,
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

/* --- Мовні версії: довші рядки, ніж в українській --- */
.hero-offer strong {
    white-space: normal;
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    line-height: 1.08;
    text-wrap: balance;
}
@media (max-width: 760px) {
    .hero-offer strong { font-size: clamp(1.55rem, 6.4vw, 2.25rem); }
}

/* Заголовок: узбецькі й казахські слова довші за українські — не даємо вилізти за колонку */
.hero-copy > * {
    max-width: 100%;
}
.hero-card h1 {
    font-size: clamp(1.6rem, 2.7vw, 2.6rem);
    overflow-wrap: break-word;
}

/* Рамка поверх фото прибрана */
.hero-visual-line { display: none; }

/* Окремий фінальний рядок перед блоком консультації */
.closing-note-section {
    padding-block: clamp(26px, 4.5vw, 58px);
}
.closing-note {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-family: var(--font-display), "Manrope", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.4rem);
    font-weight: 600;
    line-height: 1.55;
    text-wrap: balance;
}
