.cta-trust {
  background: var(--white, #fff);
  border-top: 1px solid #ececec;
  padding: 26px 0;
}

.cta-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 32px;
  align-items: center;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.cta-trust-icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: #1a1a1a;
}

.cta-trust-icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.cta-trust-247 {
  width: 40px;
  height: 40px;
  border: 2px solid var(--red, #e10600);
  border-radius: 50%;
  color: var(--red, #e10600);
  font-family: var(--display, "Barlow Condensed", "Arial Narrow", sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
}

.cta-trust-item h3 {
  margin: 0;
  font-family: var(--display, "Barlow Condensed", "Arial Narrow", sans-serif);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text, #111);
  line-height: 1.15;
}

.cta-trust-item p {
  margin: 3px 0 0;
  color: var(--muted, #5b5b5b);
  font-size: 0.82rem;
  line-height: 1.3;
}

.cta-banner {
  background: #050607;
  color: var(--white, #fff);
  overflow: hidden;
  position: relative;
}

.cta-banner-env {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.cta-banner-env img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 12% center;
}

.cta-banner-env::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.28) 0%, rgba(5, 6, 7, 0.14) 36%, rgba(5, 6, 7, 0.06) 58%, transparent 78%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.1) 0%, transparent 34%, rgba(5, 6, 7, 0.16) 100%);
  pointer-events: none;
}

.cta-banner-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(240px, 0.9fr) minmax(280px, 1.15fr);
  align-items: center;
  background: transparent;
}

.cta-banner-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 40px 8px 40px max(20px, calc((100vw - var(--shell, 1180px)) / 2));
}

.cta-banner-brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cta-banner-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.72);
}

.cta-banner-brand strong {
  font-family: var(--display, "Barlow Condensed", "Arial Narrow", sans-serif);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--white, #fff);
}

.cta-banner-copy {
  min-width: 0;
  max-width: 24rem;
  padding: 40px 20px 40px 12px;
}

.cta-banner-copy h2 {
  margin: 0 0 22px;
  font-family: var(--display, "Barlow Condensed", "Arial Narrow", sans-serif);
  font-size: clamp(2.35rem, 4.6vw, 3.85rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--white, #fff);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.cta-banner-copy h2 em {
  color: var(--red, #e10600);
  font-style: normal;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  background: var(--red, #e10600);
  color: var(--white, #fff);
  font-family: var(--sans, "Outfit", Arial, sans-serif);
  font-size: 0.94rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta-btn svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.cta-btn:hover {
  background: var(--red-hover, #c10500);
  color: var(--white, #fff);
  transform: translateY(-1px);
}

.cta-banner-scene {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background: transparent;
  min-width: 0;
}

.cta-banner-scene img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: right center;
}

.cta-banner-scene::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(38%, 200px);
  background: linear-gradient(90deg, rgba(5, 6, 7, 0.55) 0%, rgba(5, 6, 7, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-contact {
  background: #f4f4f4;
  padding: 40px 0 48px;
}

.cta-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
  margin-inline: auto;
}

.cta-form-card {
  background: var(--card, #fff);
  border: 1px solid var(--card-border, #e6e6e6);
  border-radius: var(--radius, 10px);
  box-shadow: none;
  padding: 24px 26px 26px;
}

.cta-kicker {
  margin: 0 0 6px;
  color: var(--red, #e10600);
  font-family: var(--display, "Barlow Condensed", "Arial Narrow", sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-form-card h2,
.cta-contact h2 {
  margin: 0;
  font-family: var(--display, "Barlow Condensed", "Arial Narrow", sans-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.05;
}

.cta-lede {
  max-width: 62ch;
  margin: 8px 0 16px;
  color: var(--muted, #5b5b5b);
  font-size: 0.92rem;
}

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

.cta-fields .cta-full { grid-column: 1 / -1; }

.cta-form label {
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cta-form input,
.cta-form textarea {
  width: 100%;
  margin-top: 6px;
  background: #fff;
  border: 1px solid var(--card-border, #e6e6e6);
  border-radius: 8px;
  padding: 11px 12px;
  outline: none;
}

.cta-form input:focus,
.cta-form textarea:focus {
  border-color: var(--red, #e10600);
}

.cta-form textarea {
  min-height: 110px;
  resize: vertical;
}

.cta-btn-submit {
  margin-top: 16px;
}

.cta-hp {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}

.cta-form { position: relative; }

.cta-alert {
  padding: 12px 14px;
  margin-bottom: 14px;
  border-left: 4px solid var(--red, #e10600);
  background: rgba(225, 6, 0, 0.08);
  border-radius: 6px;
}

.cta-alert-ok {
  border-color: #1b4d3e;
  background: rgba(27, 77, 62, 0.1);
}

.cta-aside {
  margin-top: 14px;
  color: var(--muted, #5b5b5b);
  font-size: 0.86rem;
  line-height: 1.55;
}

.cta-aside p { margin: 0; }

.cta-aside a:hover { color: var(--text, #111); }

footer.site-footer,
.site-footer {
  background: #000;
  color: rgba(255, 255, 255, 0.72);
  padding: 14px 0;
  font-size: 0.8rem;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  flex-wrap: wrap;
}

.footer-brand-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.footer-brand-legal img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-brand-legal p {
  margin: 0;
  white-space: nowrap;
}

.footer-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 22px;
}

.footer-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.footer-meta-item svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--red, #e10600);
}

.footer-meta-item:hover { color: var(--white, #fff); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social a,
.footer-social span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white, #fff);
}

.footer-social a:hover {
  background: var(--red, #e10600);
  color: var(--white, #fff);
}

.footer-social svg {
  width: 12px;
  height: 12px;
  display: block;
}

@media (max-width: 1080px) {
  .cta-banner-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .cta-banner-brand {
    grid-column: 1;
    padding: 36px 20px 0 max(20px, calc((100vw - var(--shell, 1180px)) / 2));
  }

  .cta-banner-copy {
    grid-column: 1;
    padding: 16px 20px 36px max(20px, calc((100vw - var(--shell, 1180px)) / 2));
    max-width: 28rem;
  }

  .cta-banner-scene {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
}

@media (max-width: 900px) {
  .cta-trust-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner-layout { grid-template-columns: 1fr; }

  .cta-banner-brand,
  .cta-banner-copy {
    grid-column: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-banner-copy { padding-bottom: 28px; }

  .cta-banner-scene { grid-column: auto; grid-row: auto; }

  .cta-banner-scene::before {
    width: 100%;
    height: 72px;
    inset: 0 0 auto;
    background: linear-gradient(180deg, rgba(5, 6, 7, 0.55) 0%, rgba(5, 6, 7, 0) 100%);
  }

  .footer-bar { justify-content: center; text-align: left; }
  .footer-brand-legal p { white-space: normal; }
}

@media (max-width: 700px) {
  .cta-trust { padding: 20px 0; }
  .cta-trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .cta-banner-brand img { width: 56px; height: 56px; }
  .cta-contact { padding: 32px 0 40px; }
  .cta-form-card { padding: 20px 18px; }
  .cta-fields { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-btn { transition: none; }
}
