﻿:root {
  --bg: #0f1418;
  --bg-soft: #19232c;
  --card: #1b2731;
  --text: #f4f5f6;
  --muted: #a8b3bd;
  --accent: #fada0b;
  --accent-dark: #c5a700;
  --line: #2b3b47;
  --nav-h: 73px;
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: 'Runner';
  src: url('../../fonts/Runner.otf') format('opentype');
  font-display: swap;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at top right, #24313c 0, var(--bg) 45%);
  color: var(--text);
}

.wrap {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: #050709;
  border-bottom: 2px solid rgba(250, 218, 11, 0.95);
  box-shadow: 0 1px 0 rgba(250, 218, 11, 0.85), 0 0 16px rgba(250, 218, 11, 0.42), 0 0 30px rgba(250, 218, 11, 0.24);
}

.header-row {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 18px 10px 12px;
}

.brand {
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 170px;
  height: auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-nav a {
  color: #d98c2e;
  text-decoration: none;
  font-family: 'Runner', 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.86rem;
  padding: 7px 10px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: #fada0b;
  background: rgba(250, 218, 11, 0.1);
  border-color: rgba(250, 218, 11, 0.35);
}

.main-nav a.nav-icon-link {
  color: #fada0b;
  font-size: 1rem;
  padding: 7px 9px;
}

.main-nav a.nav-icon-link:hover {
  color: #fada0b;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 190px;
}

.header-cta {
  text-decoration: none;
  background: #f0f0f0;
  color: #d98c2e;
  font-family: 'Runner', 'Segoe UI', sans-serif;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.97rem;
  padding: 12px 26px;
  border-radius: 16px;
  white-space: nowrap;
  border: 1px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.header-cta:hover {
  background: #fff;
}

.header-rating {
  margin: 0;
  color: #fada0b;
  font-family: 'Runner', 'Segoe UI', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid #425769;
  border-radius: 8px;
  background: #202d37;
  padding: 8px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: #e9edf0;
  border-radius: 2px;
}

main {
  padding: calc(var(--nav-h) + 12px) 0 56px;
}

.page-title {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
}

.lead {
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

.section-card {
  background: var(--card);
  border: 1px solid #2a3945;
  border-radius: 14px;
  padding: 22px;
  margin: 20px 0;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.link-grid a {
  color: #12161a;
  text-decoration: none;
  background: var(--accent);
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
}

.link-grid a:hover {
  background: var(--accent-dark);
}

.site-footer {
  background: transparent;
  padding: 16px 0 14px;
}

.site-footer a {
  color: #f4f5f6;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  color: #90a0ac;
  font-size: 0.76rem;
}

.footer-panel {
  background: linear-gradient(180deg, #080c10 0%, #0a1015 100%);
  border: 1px solid #1e2a34;
  border-radius: 24px;
  padding: 18px 26px 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.site-footer .footer-main {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.site-footer .footer-col {
  min-width: 0;
  flex: 1 1 0;
}

.site-footer .footer-brand-col {
  flex: 1.2 1 0;
}

.footer-col h4 {
  margin: 0 0 8px;
  color: #f4f7fa;
  font-size: 0.95rem;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-col p {
  margin: 0 0 5px;
  color: #acbac5;
  font-size: 0.9rem;
  line-height: 1.3;
}

.footer-brand-col__logo-link {
  display: inline-flex;
}

.footer-brand-col__logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer-brand-col__tag {
  margin: 8px 0 0;
  color: #9fb0bd;
  font-size: 0.8rem;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  line-height: 1.35;
}

.footer-divider {
  margin: 12px 0 8px;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
}

.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 901px) {
  .site-footer .footer-main {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 18px;
  }
}

.footer-powered {
  margin: 0;
  color: #90a0ac;
  font-size: 0.76rem;
}

.footer-powered a {
  color: #fada0b;
  font-weight: 700;
}

.oa-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1300;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #324758;
  background: rgba(10, 17, 24, 0.96);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.oa-cookie-banner.is-hidden {
  opacity: 0;
  transform: translateY(8px);
}

.oa-cookie-banner__text {
  min-width: 0;
}

.oa-cookie-banner__title {
  margin: 0 0 4px;
  color: #f7fbff;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.oa-cookie-banner__msg {
  margin: 0;
  color: #c3d1db;
  font-size: 0.9rem;
  line-height: 1.4;
}

.oa-cookie-banner__msg a {
  color: #fada0b;
  font-weight: 700;
  text-decoration: none;
}

.oa-cookie-banner__msg a:hover {
  text-decoration: underline;
}

.oa-cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.oa-cookie-banner__btn {
  appearance: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
}

.oa-cookie-banner__btn--ghost {
  border: 1px solid #3b5264;
  background: transparent;
  color: #d4e0e8;
}

.oa-cookie-banner__btn--ghost:hover {
  border-color: #4b6579;
  background: rgba(255, 255, 255, 0.04);
}

.oa-cookie-banner__btn--primary {
  border: 1px solid #f1ce00;
  background: linear-gradient(180deg, #fada0b 0%, #d5b000 100%);
  color: #11161a;
}

.oa-cookie-banner__btn--primary:hover {
  filter: brightness(1.05);
}

.oa-quick-actions {
  position: fixed;
  right: 14px;
  bottom: 86px;
  z-index: 1240;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.oa-has-cookie-banner .oa-quick-actions {
  bottom: 172px;
}

.oa-quick-actions__btn {
  appearance: none;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid #3a5163;
  display: grid;
  place-items: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.oa-quick-actions__btn svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.oa-quick-actions__btn--share {
  background: #f4f7fb;
  color: #29bdd8;
}

.oa-quick-actions__btn--top {
  background: #edf3f8;
  color: #1f7ed1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

.oa-quick-actions__btn--top.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.oa-quick-actions__btn--call {
  background: #fada0b;
  border-color: #f1ce00;
  color: #11161a;
}

.oa-quick-actions__btn:hover {
  transform: translateY(-2px);
}

.oa-quick-actions__btn--share:hover,
.oa-quick-actions__btn--top:hover {
  filter: brightness(1.04);
}

.oa-quick-actions__btn--call:hover {
  box-shadow: 0 12px 28px rgba(250, 218, 11, 0.24);
}

.oa-quick-actions__status {
  position: absolute;
  right: 68px;
  bottom: 5px;
  min-width: 110px;
  text-align: center;
  background: rgba(8, 15, 21, 0.96);
  color: #d4e1ea;
  border: 1px solid #324758;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.oa-quick-actions__status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.oa-offer-open {
  overflow: hidden;
}

.oa-offer-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.oa-offer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.oa-offer-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 21, 0.6);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.oa-offer-modal__panel {
  position: relative;
  width: min(700px, calc(100vw - 30px));
  border-radius: 22px;
  border: 1px solid #d4dde5;
  background:
    radial-gradient(circle at 88% 8%, rgba(44, 196, 227, 0.14) 0%, rgba(44, 196, 227, 0) 38%),
    radial-gradient(circle at 2% 88%, rgba(250, 218, 11, 0.16) 0%, rgba(250, 218, 11, 0) 34%),
    linear-gradient(180deg, #fefefe 0%, #f4f8fc 100%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
  padding: 22px 24px 20px;
}

.oa-offer-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid #cfd8e0;
  background: #fff;
  color: #344b5b;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.oa-offer-modal__close:hover {
  background: #f4f8fc;
}

.oa-offer-modal__kicker {
  margin: 0 0 8px;
  color: #0f79c7;
  font-size: 0.75rem;
  letter-spacing: 0.95px;
  font-weight: 800;
  text-transform: uppercase;
}

.oa-offer-modal__title {
  margin: 0 0 8px;
  color: #0f1d28;
  font-size: clamp(1.62rem, 3.3vw, 2.26rem);
  line-height: 1.02;
  font-family: 'Runner', 'Segoe UI', sans-serif;
}

.oa-offer-modal__lead {
  margin: 0 0 16px;
  color: #3a4f5f;
  font-size: 1rem;
  line-height: 1.48;
}

.oa-offer-modal__form {
  display: grid;
  gap: 9px;
}

.oa-offer-modal__label {
  color: #1f3342;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.oa-offer-modal__input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.oa-offer-modal__input-row input {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #c2ced9;
  background: #fff;
  color: #122230;
  font-size: 1rem;
  padding: 0 14px;
  outline: none;
}

.oa-offer-modal__input-row input:focus {
  border-color: #1e7ccb;
  box-shadow: 0 0 0 3px rgba(30, 124, 203, 0.16);
}

.oa-offer-modal__cta {
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid #e6c400;
  background: linear-gradient(180deg, #fada0b 0%, #ddb900 100%);
  color: #101820;
  padding: 0 18px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.25px;
  cursor: pointer;
  text-transform: uppercase;
}

.oa-offer-modal__cta:hover {
  filter: brightness(1.03);
}

.oa-offer-modal__hint {
  margin: 0;
  color: #4f6372;
  font-size: 0.84rem;
}

.oa-offer-modal__status {
  margin: 2px 0 0;
  min-height: 20px;
  color: #12723f;
  font-size: 0.84rem;
  font-weight: 700;
}

.oa-offer-modal__status.is-error {
  color: #b3261e;
}

.social-rating-section {
  background: transparent;
  padding: 8px 0 20px;
}

.social-rating-section .rating-boxes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.social-rating-section .rating-link {
  text-decoration: none;
}

.social-rating-section .rating-card {
  background: linear-gradient(160deg, #13202a 0%, #101821 100%);
  border: 1px solid #2f4352;
  border-radius: 14px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  padding: 14px 12px;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.social-rating-section .rating-card:hover {
  transform: translateY(-2px);
  border-color: rgba(250, 218, 11, 0.55);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.34);
}

.social-rating-section .rating-title {
  font-size: 0.82rem;
  color: #d6e0e7;
  margin-bottom: 4px;
  font-weight: 700;
}

.social-rating-section .rating-score {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fcb62a;
  margin-bottom: 4px;
  line-height: 1;
}

.social-rating-section .logo {
  width: 50px;
  height: auto;
  object-fit: contain;
}

.social-rating-section .google-logo {
  width: 96px;
}

.social-rating-section .thumbtack {
  width: 94px;
}

.social-rating-section .TikTok {
  width: 60px;
}

.next-steps {
  position: relative;
  width: 100%;
  padding: 34px 0 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 22%, rgba(250, 218, 11, 0.16) 0%, rgba(250, 218, 11, 0) 38%),
    radial-gradient(circle at 85% 78%, rgba(43, 196, 227, 0.13) 0%, rgba(43, 196, 227, 0) 40%),
    linear-gradient(145deg, #0b1117 0%, #111a23 55%, #172531 100%);
  border-top: 1px solid #263747;
  border-bottom: 1px solid #233341;
}

.next-steps::before,
.next-steps::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.3;
}

.next-steps::before {
  width: 240px;
  height: 240px;
  top: -70px;
  left: -40px;
  background: #fada0b;
}

.next-steps::after {
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -90px;
  background: #2bc4e3;
}

.next-steps__inner {
  width: min(1120px, 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.next-steps__kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.78rem;
  color: #fada0b;
  font-weight: 700;
}

.next-steps__title {
  margin: 0;
  font-family: 'Runner', 'Segoe UI', sans-serif;
  color: #f4f8fc;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.02;
}

.next-steps__lead {
  margin: 10px auto 18px;
  max-width: 66ch;
  color: #b7c6d0;
  font-size: 0.96rem;
}

.next-steps__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.next-cta {
  position: relative;
  display: grid;
  gap: 5px;
  text-decoration: none;
  text-align: left;
  color: #f6f8fb;
  min-height: 138px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid #314556;
  background: linear-gradient(165deg, rgba(28, 40, 51, 0.95) 0%, rgba(20, 30, 39, 0.96) 100%);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
  animation: nextCardFloat 4.8s ease-in-out infinite;
}

.next-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.next-cta--about::before {
  background: linear-gradient(140deg, rgba(250, 218, 11, 0.15), rgba(250, 218, 11, 0));
}

.next-cta--services::before {
  background: linear-gradient(140deg, rgba(43, 196, 227, 0.17), rgba(43, 196, 227, 0));
}

.next-cta:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.36);
}

.next-cta:hover::before {
  opacity: 1;
}

.next-cta--about:hover {
  border-color: rgba(250, 218, 11, 0.65);
}

.next-cta--services:hover {
  border-color: rgba(43, 196, 227, 0.7);
}

.next-cta__eyebrow {
  position: relative;
  z-index: 1;
  color: #d4e0e7;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.55px;
}

.next-cta__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.04;
  font-family: 'Runner', 'Segoe UI', sans-serif;
}

.next-cta__meta {
  position: relative;
  z-index: 1;
  color: #b4c1cb;
  font-size: 0.9rem;
  line-height: 1.4;
}

@keyframes nextCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 1100px) {
  :root {
    --nav-h: 73px;
  }

  .header-row {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 8px 12px;
  }

  .brand img {
    width: 152px;
  }

  .main-nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 6px;
  }

  .main-nav a {
    font-size: 0.78rem;
    padding: 5px 7px;
  }

  .header-right {
    display: none;
  }

  .social-rating-section .rating-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 65px;
  }

  .header-row {
    grid-template-columns: auto auto;
    padding: 10px 12px;
  }

  .nav-toggle {
    display: flex;
    justify-self: end;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0b0f12;
    border: 1px solid #3f3320;
    border-radius: 12px;
    padding: 10px;
    margin-top: 8px;
    grid-column: 1 / -1;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
    width: 100%;
    text-align: left;
  }

  .header-right {
    display: none;
  }

  .footer-panel {
    border-radius: 16px;
    padding: 14px 14px 10px;
  }

  .site-footer .footer-main {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
  }

  .site-footer .footer-col {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 130px;
  }

  .site-footer .footer-main {
    display: flex !important;
    flex-wrap: wrap;
    gap: 10px;
  }

  .site-footer .footer-col {
    flex: 1 1 calc(50% - 10px);
  }

  .footer-meta {
    justify-content: center;
    text-align: center;
  }

  .social-rating-section .rating-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .social-rating-section .rating-card {
    min-height: 138px;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .social-rating-section .rating-title {
    font-size: 0.76rem;
  }

  .social-rating-section .rating-score {
    font-size: 1.5rem;
  }

  .social-rating-section .logo {
    width: 42px;
  }

  .social-rating-section .google-logo {
    width: 80px;
  }

  .social-rating-section .thumbtack {
    width: 78px;
  }

  .social-rating-section .TikTok {
    width: 52px;
  }

  .next-steps {
    padding: 30px 0 34px;
  }

  .next-steps__actions {
    grid-template-columns: 1fr;
  }

  .next-cta {
    min-height: 126px;
    padding: 16px 16px;
  }

  .oa-cookie-banner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px 12px;
  }

  .oa-cookie-banner__actions {
    justify-content: stretch;
  }

  .oa-cookie-banner__btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .oa-quick-actions {
    right: 10px;
    bottom: 78px;
    gap: 8px;
  }

  body.oa-has-cookie-banner .oa-quick-actions {
    bottom: 228px;
  }

  .oa-quick-actions__btn {
    width: 52px;
    height: 52px;
  }

  .oa-quick-actions__btn svg {
    width: 21px;
    height: 21px;
  }

  .oa-quick-actions__status {
    right: 62px;
    min-width: 98px;
  }

  .oa-offer-modal {
    padding: 14px;
  }

  .oa-offer-modal__panel {
    width: min(700px, calc(100vw - 18px));
    padding: 18px 14px 14px;
    border-radius: 18px;
  }

  .oa-offer-modal__title {
    font-size: clamp(1.35rem, 7.6vw, 1.85rem);
  }

  .oa-offer-modal__lead {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .oa-offer-modal__input-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .oa-offer-modal__input-row input,
  .oa-offer-modal__cta {
    min-height: 50px;
  }
}

@media (max-width: 420px) {
  .site-footer .footer-main {
    display: flex !important;
    flex-wrap: wrap;
  }

  .site-footer .footer-col {
    flex-basis: 100%;
  }
}

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