/* ── CSS Custom Properties ── */
:root {
  --c-dark:    #001c21;
  --c-teal:    #1a7a7a;
  --c-teal-dk: #145f5f;
  --c-deep:    #124651;
  --c-green:   #2d6b5e;
  --c-green-dk:#124651;
  --font:      "Montserrat", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

.header {
  width: 100%;
  font-family: var(--font);
}

/* ═══════════════════════════════════
   ДЕСКТОП ХЕДЕР
═══════════════════════════════════ */
.desktop-header {
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 500;
  background: rgba(255,255,255,.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.desktop-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Логотип */
.desk-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  height: 90px;
}
.desk-logo img {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.15));
}

/* Навігація */
.desk-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  padding: 0 24px;
}

.desk-item {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.desk-item > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 0 13px;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  transition: color .2s;
}
.desk-item > a:hover { color: var(--c-teal); }

.desk-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 13px; right: 13px;
  height: 2px;
  background: var(--c-teal);
  transform: scaleX(0);
  transition: transform .2s;
}
.desk-item > a:hover::after { transform: scaleX(1); }

.desk-arrow {
  font-size: 10px;
  opacity: .6;
  margin-top: 1px;
}

/* Dropdown */
.has-dropdown { position: relative; }

.has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 4px;
  display: none;
}
.has-dropdown:hover::after { display: block; }

.desk-dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(255,255,255,.97);
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  min-width: 260px;
  z-index: 600;
  padding: 6px 0;
  border-top: 2px solid var(--c-teal);
}
.has-dropdown:hover .desk-dropdown { display: block; }

.desk-dropdown a {
  display: block;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--c-dark);
  text-decoration: none;
  transition: background .15s, color .15s;
}
.desk-dropdown a:hover {
  background: #f0f7f6;
  color: var(--c-teal);
}

/* 2-колонковий dropdown */
.desk-dropdown--2col {
  display: none;
  min-width: 560px;
  flex-direction: row;
  padding: 0;
}
.has-dropdown:hover .desk-dropdown--2col { display: flex; }

.desk-dropdown__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6px 0;
}
.desk-dropdown__col--right { border-left: 1px solid #f0f4f4; }
.desk-dropdown__spacer { flex: 1; }

/* JTI — без !important завдяки специфічності */
.desk-dropdown__jti {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-top: 1px solid #e8f0f0;
  background: rgba(42,100,88,.04);
  font-weight: 600;
  color: var(--c-green);
  transition: background .15s, color .15s;
}
.desk-dropdown__jti:hover {
  background: rgba(42,100,88,.1);
  color: var(--c-green-dk);
}
.desk-dropdown__jti img {
  height: 18px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.desk-dropdown__jti span { flex: 1; }

/* Перемикач мови */
.lang-switcher {
  position: relative;
  flex-shrink: 0;
  height: 80px;
  display: flex;
  align-items: center;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 1.5px solid var(--c-dark);
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-dark);
  padding: 5px 10px;
  letter-spacing: .5px;
  transition: border-color .2s, color .2s;
}
.lang-switcher:hover .lang-current {
  border-color: var(--c-teal);
  color: var(--c-teal);
}
.lang-switcher::after {
  content: '';
  position: absolute;
  top: 100%; right: 0;
  width: 100%; height: 12px;
  display: none;
}
.lang-switcher:hover::after { display: block; }

.lang-drop {
  display: none;
  position: absolute;
  top: 100%; right: 0;
  background: rgba(255,255,255,.97);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
  overflow: hidden;
  min-width: 80px;
  z-index: 700;
  border-top: 2px solid var(--c-teal);
}
.lang-switcher:hover .lang-drop { display: block; }

.lang-drop a {
  display: block;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  letter-spacing: .4px;
  transition: background .15s, color .15s;
}
.lang-drop a:hover {
  background: #f0f7f6;
  color: var(--c-teal);
}

/* ═══════════════════════════════════
   МОБІЛЬНИЙ ХЕДЕР
═══════════════════════════════════ */
.mobile-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 500;
  border-bottom: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}
.header-logo img { height: 80px; width: auto; }
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Бургер */
.burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--c-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}
.burger svg { width: 18px; height: 18px; stroke: #fff; }
.burger:hover { background: var(--c-teal); }

/* ═══════════════════════════════════
   POPUP МЕНЮ
═══════════════════════════════════ */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 998;
  backdrop-filter: blur(3px);
}
.mobile-nav-overlay.is-open { display: block; }

.mob-close-btn {
  position: fixed;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.mob-close-btn.is-open { display: flex; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-48%) scale(.96);
  z-index: 999;
  width: 290px;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition: opacity .28s, transform .28s;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.mobile-nav.is-open {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}

.mob-inner {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #f4fafa 0%, #edf5f5 100%);
}

.mob-logo-top {
  display: flex;
  justify-content: center;
  padding: 22px 0 18px;
  border-bottom: 1px solid #eee;
}
.mob-logo-top img { height: 64px; width: auto; }

.mob-link {
  display: block;
  padding: 13px 24px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
  border-bottom: 1px solid #f0f0f0;
  transition: background .15s, color .15s;
}
.mob-link:hover { background: #f0f7f6; color: var(--c-teal); }

.mob-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  font-family: var(--font);
  transition: background .15s;
}
.mob-item:hover { background: #f0f7f6; }

.mob-item-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--c-dark);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.mob-arrow {
  font-size: 9px;
  opacity: .5;
  transition: transform .25s;
  flex-shrink: 0;
}
.mob-item.is-open .mob-arrow { transform: rotate(180deg); }

.mob-sub-list {
  display: none;
  flex-direction: column;
  background: #f8fbfb;
  border-bottom: 1px solid #eee;
}
.mob-sub-list.is-open { display: flex; }

.mob-sub-item {
  display: block;
  padding: 10px 36px;
  font-size: 12.5px;
  font-weight: 500;
  color: #334;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.05);
  transition: background .15s, color .15s;
}
.mob-sub-item:hover { background: #e8f4f2; color: var(--c-teal); }

.mob-sub-item--jti {
  border-top: 1px solid rgba(42,100,88,.15);
  background: rgba(42,100,88,.04);
  color: var(--c-green);
  font-weight: 600;
  margin-top: 2px;
}
.mob-sub-item--jti:hover {
  background: rgba(42,100,88,.1);
  color: var(--c-green-dk);
}

.mob-lang-block {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 16px;
  border-top: 1px solid #eee;
  margin-top: auto;
}
.mob-lang-item {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-dark);
  text-decoration: none;
  border: 1.5px solid #ddd;
  border-radius: 5px;
  letter-spacing: .4px;
  transition: border-color .15s, color .15s, background .15s;
}
.mob-lang-item:hover { border-color: var(--c-teal); color: var(--c-teal); }
.mob-lang-active {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
}

/* ═══════════════════════════════════
   BREAKPOINTS
═══════════════════════════════════ */
@media (max-width: 1100px) {
  .desktop-header { display: none; }
  .mobile-header { display: flex; }
  .header { position: absolute; top: 0; left: 0; z-index: 500; }
}
@media (max-width: 400px) {
  .mobile-nav { width: calc(100vw - 24px); }
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.footer {
  font-family: var(--font);
  width: 100%;
  color: #fff;
  background: linear-gradient(135deg, #0d3d35 0%, #124651 35%, #0e3a4a 65%, #0a2d38 100%);
}

.footer__top {
  padding: 36px 0 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer__logo { flex-shrink: 0; }
.footer__logo img {
  height: 68px; width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
  transition: opacity .2s;
}
.footer__logo:hover img { opacity: .8; }

.footer__top-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 0;
  flex: 1;
}
.footer__nav a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  padding: 4px 16px 4px 0;
  white-space: nowrap;
  transition: color .2s;
  position: relative;
}
.footer__nav a:hover { color: #fff; }
.footer__nav a:not(.footer__nav-policy):not(:last-of-type)::after {
  content: "·";
  position: absolute;
  right: 6px;
  color: rgba(255,255,255,.2);
}
.footer__nav-sep {
  width: 1px; height: 16px;
  background: rgba(255,255,255,.15);
  margin: 0 12px 0 4px;
  flex-shrink: 0;
  align-self: center;
}
.footer__nav-policy {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.38);
  padding: 4px 14px 4px 0;
}
.footer__nav-policy:hover { color: rgba(255,255,255,.7); }
.footer__nav-policy:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: 4px;
  color: rgba(255,255,255,.15);
}

.footer__middle {
  padding: 28px 0 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__middle-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__contacts { display: flex; gap: 10px; }
.footer__contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  text-decoration: none;
  color: inherit;
  transition: background .2s, border-color .2s;
}
.footer__contact-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.22);
}
.footer__contact-icon {
  width: 30px; height: 30px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer__contact-icon svg { width: 13px; height: 13px; opacity: .65; }
.footer__contact-info { display: flex; flex-direction: column; }
.footer__contact-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  line-height: 1;
  margin-bottom: 3px;
}
.footer__contact-value {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
}

.footer__social { display: flex; gap: 8px; }
.footer__social a {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px 7px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.13);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.footer__social a:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  color: #fff;
  transform: translateY(-2px);
}
.footer__social svg { width: 15px; height: 15px; flex-shrink: 0; }

.footer__bar { padding: 13px 48px; text-align: center; }
.footer__bar p {
  font-size: 11px;
  color: rgba(255,255,255,.28);
  margin: 0;
  letter-spacing: .3px;
}

/* ═══════════════════════════════════
   COOKIE БАНЕР
═══════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: -140px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  width: calc(100% - 48px);
  max-width: 760px;
  background: #0d2535;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.08);
  transition: bottom .4s cubic-bezier(.34,1.56,.64,1);
}
.cookie-banner.is-visible { bottom: 24px; }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}
.cookie-banner__text svg { width: 18px; height: 18px; stroke: #4db8b8; flex-shrink: 0; margin-top: 1px; }
.cookie-banner__text p { font-size: 12px; color: rgba(255,255,255,.75); margin: 0; line-height: 1.6; }
.cookie-banner__text a { color: #4db8b8; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn--accept { background: var(--c-teal); color: #fff; }
.cookie-btn--accept:hover { background: var(--c-teal-dk); }
.cookie-btn--decline { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); }
.cookie-btn--decline:hover { background: rgba(255,255,255,.14); }

/* Footer адаптив */
@media (max-width: 1024px) {
  .footer__top-inner,
  .footer__middle-inner,
  .footer__bar { padding-left: 32px; padding-right: 32px; }
}
@media (max-width: 860px) {
  .footer__contacts { flex-wrap: wrap; justify-content: center; }
  .footer__top-inner { gap: 28px; }
  .footer__nav-sep { flex-basis: 100%; height: 1px; width: auto; margin: 6px 0; }
}
@media (max-width: 720px) {
  .footer__top { padding: 28px 0 22px; }
  .footer__top-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 24px;
    gap: 18px;
  }
  .footer__top-divider { display: none; }
  .footer__nav { justify-content: center; }
  .footer__nav-sep { flex-basis: 100%; height: 1px; width: auto; margin: 4px 0; }
  .footer__middle { padding: 24px 0 20px; }
  .footer__middle-inner { padding: 0 24px; gap: 18px; }
  .footer__contacts { flex-direction: column; align-items: center; width: 100%; }
  .footer__contact-card { width: 100%; max-width: 300px; }
  .footer__bar { padding: 12px 24px; }
  .cookie-banner { width: calc(100% - 24px); }
  .cookie-banner__inner { flex-direction: column; gap: 12px; padding: 14px 16px; }
  .cookie-banner__actions { width: 100%; justify-content: center; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════
   FORMS / CTA
═══════════════════════════════════ */
.cta-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 1500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.cta-overlay.is-open { display: flex; }

.cta-modal {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: ctaFadeIn .28s ease;
}
@keyframes ctaFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.cta-modal__head { padding: 32px 36px 0; }

.cta-modal__label {
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-teal);
  margin: 0 0 8px;
}
.cta-modal__title {
  font-family: var(--font);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  color: var(--c-deep);
  margin: 0 0 6px;
  line-height: 1.25;
}
.cta-modal__sub {
  font-family: var(--font);
  font-size: 13px;
  color: #6a8a8d;
  margin: 0;
  line-height: 1.5;
}

.cta-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #f4f4f4;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: background .2s;
  line-height: 1;
}
.cta-modal__close:hover { background: #e0e0e0; }

.cta-modal__body { padding: 24px 36px 36px; }

.cta-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.cta-field:last-of-type { margin-bottom: 0; }

.cta-field label {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: #334;
  letter-spacing: .2px;
}
.cta-field label .req { color: #e05555; margin-left: 2px; }

.cta-field input,
.cta-field select,
.cta-field textarea {
  font-family: var(--font);
  font-size: 13.5px;
  color: #1a1a2e;
  background: #f8fbfb;
  border: 1.5px solid #d8e8e8;
  border-radius: 7px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.cta-field input:focus,
.cta-field select:focus,
.cta-field textarea:focus {
  border-color: var(--c-teal);
  box-shadow: 0 0 0 3px rgba(26,122,122,.12);
  background: #fff;
}
.cta-field input::placeholder,
.cta-field textarea::placeholder { color: #aabcbe; }

.cta-field.has-error input,
.cta-field.has-error select {
  border-color: #e05555;
  box-shadow: 0 0 0 3px rgba(224,85,85,.1);
}
.cta-field__error {
  font-family: var(--font);
  font-size: 11.5px;
  color: #e05555;
  display: none;
}
.cta-field.has-error .cta-field__error { display: block; }

.cta-submit {
  display: block;
  width: 100%;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--c-teal);
  color: #fff;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .5px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  transition: background .22s, transform .18s;
}
.cta-submit:hover { background: var(--c-teal-dk); transform: translateY(-1px); }
.cta-submit:disabled { background: #7aadad; cursor: not-allowed; transform: none; }

.cta-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 36px;
  gap: 14px;
}
.cta-success.is-visible { display: flex; }
.cta-success__icon { font-size: 52px; line-height: 1; }
.cta-success__title {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 800;
  color: var(--c-deep);
  margin: 0;
}
.cta-success__text {
  font-family: var(--font);
  font-size: 13.5px;
  color: #5a7a7d;
  margin: 0;
  line-height: 1.6;
}

.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

@media (max-width: 560px) {
  .cta-modal__head { padding: 28px 22px 0; }
  .cta-modal__body { padding: 20px 22px 28px; }
  .cta-row { grid-template-columns: 1fr; }
}