:root {
  --aero-ink: #06131f;
  --aero-muted: #526172;
  --aero-line: rgba(6,19,31,.13);
  --aero-cream: #fff7e8;
  --aero-sand: #f6ead2;
  --aero-teal: #00b8a9;
  --aero-blue: #2563eb;
  --aero-coral: #ff6b4a;
  --aero-lime: #b7e66e;
  --aero-night: #0b2534;
  --aero-shadow: 0 30px 90px rgba(6,19,31,.18);
  --aero-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--aero-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  background:
    radial-gradient(circle at 12% 8%, rgba(0,184,169,.14), transparent 28rem),
    radial-gradient(circle at 86% 4%, rgba(255,107,74,.12), transparent 30rem),
    linear-gradient(180deg, #fffaf0 0%, #f7f3e9 46%, #eef9f6 100%);
  overflow-x: hidden;
}

body.aero-no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.aero-sky-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(6,19,31,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6,19,31,.025) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.6), transparent 88%);
}

.aero-dock {
  width: min(1280px, calc(100% - 28px));
  min-height: 80px;
  margin: 16px auto 0;
  padding: 12px 14px;
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background: rgba(255,247,232,.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 20px 70px rgba(6,19,31,.11);
}

.aero-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.aero-brand-orbit {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: var(--aero-cream);
  background:
    radial-gradient(circle at 72% 22%, #ffcf4a 0 13%, transparent 14%),
    linear-gradient(135deg, var(--aero-teal), var(--aero-blue) 54%, var(--aero-coral));
  box-shadow: 0 18px 42px rgba(0,184,169,.18);
}

.aero-brand-orbit svg {
  width: 33px;
  height: 33px;
}

.aero-brand strong {
  display: block;
  font-size: 22px;
  letter-spacing: -.045em;
}

.aero-brand small {
  display: block;
  margin-top: -3px;
  color: var(--aero-muted);
  font-size: 12px;
  font-weight: 850;
}

.aero-routes {
  display: flex;
  align-items: center;
  gap: 19px;
  color: var(--aero-muted);
  font-size: 14px;
  font-weight: 850;
}

.aero-routes a,
.aero-mobile-routes a,
.aero-footer-links a {
  text-decoration: none;
}

.aero-routes a:hover,
.aero-mobile-routes a:hover,
.aero-footer-links a:hover {
  color: var(--aero-coral);
}

.aero-dock-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.aero-major-action,
.aero-minor-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 950;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.aero-major-action {
  color: var(--aero-cream);
  background: linear-gradient(135deg, var(--aero-teal), var(--aero-blue));
  box-shadow: 0 18px 40px rgba(37,99,235,.20);
}

.aero-minor-action {
  color: var(--aero-ink);
  border-color: var(--aero-line);
  background: rgba(255,255,255,.65);
}

.aero-large-action {
  padding: 16px 21px;
}

.aero-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--aero-line);
  border-radius: 18px;
  background: white;
  font-size: 22px;
  cursor: pointer;
}

.aero-mobile-routes {
  display: none;
  width: min(1280px, calc(100% - 28px));
  margin: 8px auto 0;
  padding: 16px;
  border-radius: 26px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.95);
  box-shadow: 0 20px 70px rgba(6,19,31,.12);
}

.aero-mobile-routes.aero-mobile-open {
  display: grid;
  gap: 8px;
}

.aero-mobile-routes a {
  padding: 10px;
  color: var(--aero-muted);
  font-weight: 850;
}

.aero-hero,
.aero-runway,
.aero-slider-zone,
.aero-panels,
.aero-sports,
.aero-systems,
.aero-trust,
.aero-copy,
.aero-faq,
.aero-footer,
.aero-footnote {
  width: min(var(--aero-max), calc(100% - 40px));
  margin-inline: auto;
}

.aero-hero {
  padding: 92px 0 46px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 50px;
  align-items: center;
}

.aero-tagline {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #075985;
  background: rgba(0,184,169,.12);
  border: 1px solid rgba(0,184,169,.22);
  font-size: 14px;
  font-weight: 900;
}

.aero-tagline i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--aero-coral);
}

.aero-hero h1 {
  max-width: 850px;
  margin: 22px 0 18px;
  font-size: clamp(46px, 6.4vw, 86px);
  line-height: .97;
  letter-spacing: -.075em;
  background: linear-gradient(135deg, var(--aero-ink), #075985 34%, var(--aero-teal) 62%, var(--aero-coral));
  -webkit-background-clip: text;
  color: transparent;
}

.aero-hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: var(--aero-muted);
  font-size: clamp(18px, 2vw, 22px);
}

.aero-hero-actions {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.aero-signal-board {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.aero-signal-board span {
  padding: 13px 14px;
  border: 1px solid var(--aero-line);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  font-weight: 900;
}

.aero-cockpit {
  position: relative;
}

.aero-cockpit-shell {
  overflow: hidden;
  border-radius: 40px;
  border: 12px solid var(--aero-night);
  background: white;
  box-shadow: var(--aero-shadow);
  transform: rotate(1.8deg);
}

.aero-cockpit-bar {
  height: 56px;
  padding: 0 18px;
  background: var(--aero-night);
  color: var(--aero-cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
}

.aero-map-window {
  overflow: hidden;
}

.aero-instruments {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.aero-instruments article {
  padding: 14px 10px;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(6,19,31,.08);
  background: #fffaf0;
}

.aero-instruments b {
  display: block;
  font-size: 20px;
  letter-spacing: -.04em;
}

.aero-instruments span {
  color: var(--aero-muted);
  font-size: 12px;
  font-weight: 850;
}

.aero-note-card {
  position: absolute;
  left: -26px;
  bottom: 34px;
  width: 315px;
  padding: 20px;
  border-radius: 26px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.96);
  box-shadow: var(--aero-shadow);
}

.aero-note-card strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.15;
}

.aero-note-card p {
  margin: 0;
  color: var(--aero-muted);
  font-size: 14px;
}

.aero-runway {
  padding: 16px 0 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.aero-runway article {
  min-height: 180px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.72);
  box-shadow: 0 16px 44px rgba(6,19,31,.07);
}

.aero-runway span {
  color: var(--aero-coral);
  font-weight: 950;
  letter-spacing: .12em;
}

.aero-runway strong {
  display: block;
  margin: 18px 0 8px;
  font-size: 23px;
  letter-spacing: -.045em;
}

.aero-runway p,
.aero-section-title p,
.aero-slide-copy p,
.aero-panel p,
.aero-sport-grid p,
.aero-system-grid p,
.aero-trust-copy p,
.aero-trust-list p,
.aero-copy-columns p,
.aero-faq-list p {
  color: var(--aero-muted);
}

.aero-slider-zone,
.aero-panels,
.aero-sports,
.aero-systems,
.aero-trust,
.aero-copy,
.aero-faq {
  padding: 76px 0;
}

.aero-section-title {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.aero-title-left {
  margin-left: 0;
  text-align: left;
}

.aero-section-title small,
.aero-trust-copy small,
.aero-copy small {
  color: var(--aero-coral);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .13em;
}

.aero-section-title h2,
.aero-trust-copy h2,
.aero-copy h2 {
  margin: 10px 0 12px;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.03;
  letter-spacing: -.06em;
}

.aero-slider {
  border-radius: 42px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.86);
  box-shadow: var(--aero-shadow);
  overflow: hidden;
}

.aero-slide {
  display: none;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 38px;
}

.aero-slide-active {
  display: grid;
  animation: aero-lift .34s ease both;
}

@keyframes aero-lift {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aero-slide-copy span {
  color: var(--aero-coral);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.aero-slide-copy h3 {
  margin: 12px 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -.06em;
}

.aero-slide-copy ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.aero-slide-copy li {
  position: relative;
  padding-left: 28px;
  color: var(--aero-muted);
  font-weight: 850;
}

.aero-slide-copy li::before {
  content: "↗";
  position: absolute;
  left: 0;
  color: var(--aero-teal);
}

.aero-slide-art {
  padding: 10px;
}

.aero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px 28px;
}

.aero-slider-controls button {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--aero-line);
  background: white;
  cursor: pointer;
  font-size: 20px;
  font-weight: 950;
}

.aero-dots {
  display: flex;
  gap: 8px;
}

.aero-dot {
  width: 34px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: #d8c7aa;
  cursor: pointer;
}

.aero-dot.aero-dot-active {
  background: linear-gradient(135deg, var(--aero-coral), var(--aero-teal));
}

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

.aero-panel {
  padding: 18px;
  border-radius: 34px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.86);
  box-shadow: 0 18px 50px rgba(6,19,31,.08);
}

.aero-panel-art {
  overflow: hidden;
  border-radius: 25px;
}

.aero-panel h3 {
  margin: 18px 0 8px;
  font-size: 24px;
  letter-spacing: -.05em;
}

.aero-sports {
  border-radius: 46px;
  background:
    linear-gradient(135deg, rgba(255,247,232,.88), rgba(232,251,255,.78)),
    radial-gradient(circle at 70% 20%, rgba(255,107,74,.12), transparent 28rem);
}

.aero-sport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.aero-sport-grid article {
  min-height: 260px;
  padding: 22px;
  border-radius: 32px;
  border: 1px solid var(--aero-line);
  background: rgba(255,255,255,.72);
  box-shadow: 0 16px 44px rgba(6,19,31,.07);
}

.aero-sport-grid svg {
  height: 150px;
}

.aero-sport-grid h3 {
  margin: 14px 0 8px;
  font-size: 24px;
  letter-spacing: -.05em;
}

.aero-system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.88);
  box-shadow: var(--aero-shadow);
}

.aero-system-grid article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid var(--aero-line);
  border-bottom: 1px solid var(--aero-line);
}

.aero-system-grid article:nth-child(3n) {
  border-right: 0;
}

.aero-system-grid article:nth-child(n+4) {
  border-bottom: 0;
}

.aero-system-grid b {
  color: var(--aero-coral);
  font-size: 13px;
  letter-spacing: .12em;
}

.aero-system-grid h3 {
  margin: 20px 0 8px;
  font-size: 25px;
  letter-spacing: -.05em;
}

.aero-trust {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.aero-trust-list {
  display: grid;
  gap: 14px;
}

.aero-trust-list article {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.88);
  box-shadow: 0 16px 44px rgba(6,19,31,.06);
}

.aero-trust-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  letter-spacing: -.04em;
}

.aero-copy {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 44px;
}

.aero-copy-columns {
  column-count: 2;
  column-gap: 30px;
}

.aero-copy-columns p {
  margin-top: 0;
}

.aero-faq {
  max-width: 980px;
}

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

.aero-faq-list details {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.9);
}

.aero-faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

.aero-footer {
  padding: 42px 0;
  border-top: 1px solid var(--aero-line);
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 32px;
}

.aero-footer-brand p,
.aero-footer-links a,
.aero-footnote {
  color: var(--aero-muted);
}

.aero-footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.aero-footer-links a:hover {
  color: var(--aero-coral);
}

.aero-footnote {
  padding: 18px 0 32px;
  border-top: 1px solid var(--aero-line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.aero-footnote a {
  color: var(--aero-blue);
}

.aero-cookie {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1000;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px;
  display: none;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-radius: 28px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.97);
  backdrop-filter: blur(18px);
  box-shadow: var(--aero-shadow);
}

.aero-cookie p {
  margin: 4px 0 0;
  color: var(--aero-muted);
  font-size: 14px;
}

.aero-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aero-cookie-actions button,
.aero-modal-actions button {
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--aero-line);
  background: white;
  font-weight: 950;
  cursor: pointer;
}

#aeroCookieAccept,
#aeroCookieSave {
  border: 0;
  color: var(--aero-cream);
  background: linear-gradient(135deg, var(--aero-coral), var(--aero-teal));
}

.aero-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  place-items: center;
  padding: 20px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,107,74,.22), transparent 24rem),
    rgba(6,19,31,.58);
}

.aero-cookie-modal.aero-cookie-open {
  display: grid;
}

.aero-cookie-window {
  width: min(630px, 100%);
  overflow: hidden;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.7);
  background: linear-gradient(180deg, #fff7e8, #ffffff);
  box-shadow: 0 34px 110px rgba(6,19,31,.34);
}

.aero-window-head {
  min-height: 64px;
  padding: 0 20px;
  color: var(--aero-cream);
  background:
    radial-gradient(circle at 84% 20%, rgba(183,230,110,.45), transparent 7rem),
    linear-gradient(135deg, var(--aero-coral), var(--aero-night));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aero-window-head span {
  font-weight: 950;
  letter-spacing: -.03em;
}

.aero-window-head button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 14px;
  color: var(--aero-cream);
  background: rgba(255,255,255,.16);
  font-size: 24px;
  cursor: pointer;
}

.aero-cookie-window h2,
.aero-cookie-window p,
.aero-toggle-row,
.aero-modal-actions,
.aero-cookie-small {
  margin-left: 26px;
  margin-right: 26px;
}

.aero-cookie-window h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 34px;
  letter-spacing: -.05em;
}

.aero-cookie-window p,
.aero-cookie-small {
  color: var(--aero-muted);
}

.aero-toggle-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--aero-line);
}

.aero-toggle-row small {
  display: block;
  margin-top: 4px;
  color: var(--aero-muted);
}

.aero-toggle-row input {
  width: 22px;
  height: 22px;
}

.aero-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
  margin-bottom: 12px;
}

.aero-cookie-small {
  padding-bottom: 24px;
  font-size: 13px;
}

.aero-cookie-small a {
  color: var(--aero-blue);
}

.aero-law-shell {
  width: min(1100px, calc(100% - 36px));
  margin: 24px auto 74px;
}

.aero-law-top {
  padding: 30px;
  border-radius: 36px;
  color: var(--aero-cream);
  background:
    radial-gradient(circle at 82% 10%, rgba(183,230,110,.44), transparent 10rem),
    linear-gradient(135deg, var(--aero-night), var(--aero-blue) 54%, var(--aero-coral));
  box-shadow: var(--aero-shadow);
}

.aero-law-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: rgba(255,247,232,.92);
  text-decoration: none;
  font-weight: 950;
}

.aero-law-top h1 {
  max-width: 760px;
  margin: 0 0 10px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -.07em;
}

.aero-law-top p {
  max-width: 780px;
  margin: 0;
  color: rgba(255,247,232,.84);
}

.aero-law-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 18px;
  align-items: start;
}

.aero-law-side,
.aero-law-main,
.aero-contact-card {
  border-radius: 32px;
  border: 1px solid var(--aero-line);
  background: rgba(255,247,232,.94);
  box-shadow: 0 16px 50px rgba(6,19,31,.08);
}

.aero-law-side {
  padding: 22px;
  position: sticky;
  top: 110px;
}

.aero-law-side strong {
  display: block;
  margin-bottom: 12px;
}

.aero-law-side p {
  margin: 0 0 14px;
  color: var(--aero-muted);
}

.aero-law-main {
  padding: 28px;
}

.aero-law-main h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 28px;
  letter-spacing: -.04em;
}

.aero-law-main h2:first-child {
  margin-top: 0;
}

.aero-law-main p,
.aero-law-main li {
  color: var(--aero-muted);
}

.aero-law-main a,
.aero-law-side a {
  color: var(--aero-blue);
}

.aero-contact-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
}

.aero-contact-card {
  padding: 26px;
}

.aero-contact-card h2 {
  margin-top: 0;
  font-size: 30px;
  letter-spacing: -.05em;
}

.aero-field {
  margin-bottom: 16px;
}

.aero-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 950;
}

.aero-field input,
.aero-field textarea {
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--aero-line);
  background: white;
  color: var(--aero-ink);
  font: inherit;
}

.aero-field textarea {
  min-height: 150px;
  resize: vertical;
}

@media (max-width: 1040px) {
  .aero-routes,
  .aero-desktop-only {
    display: none;
  }

  .aero-burger {
    display: block;
  }

  .aero-hero,
  .aero-slide-active,
  .aero-trust,
  .aero-copy,
  .aero-footer,
  .aero-law-grid,
  .aero-contact-layout {
    grid-template-columns: 1fr;
  }

  .aero-runway,
  .aero-panel-grid,
  .aero-sport-grid,
  .aero-system-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aero-system-grid article,
  .aero-system-grid article:nth-child(3n),
  .aero-system-grid article:nth-child(n+4) {
    border: 1px solid var(--aero-line);
  }

  .aero-copy-columns {
    column-count: 1;
  }

  .aero-law-side {
    position: static;
  }
}

@media (max-width: 680px) {
  .aero-dock {
    width: calc(100% - 18px);
    top: 8px;
    border-radius: 24px;
  }

  .aero-hero,
  .aero-runway,
  .aero-slider-zone,
  .aero-panels,
  .aero-sports,
  .aero-systems,
  .aero-trust,
  .aero-copy,
  .aero-faq,
  .aero-footer,
  .aero-footnote {
    width: min(var(--aero-max), calc(100% - 28px));
  }

  .aero-hero {
    padding-top: 54px;
  }

  .aero-hero h1 {
    font-size: 45px;
  }

  .aero-signal-board,
  .aero-runway,
  .aero-panel-grid,
  .aero-sport-grid,
  .aero-system-grid {
    grid-template-columns: 1fr;
  }

  .aero-cockpit-shell {
    transform: none;
  }

  .aero-note-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .aero-slide {
    padding: 22px;
  }

  .aero-slider {
    border-radius: 28px;
  }

  .aero-cookie {
    align-items: flex-start;
    flex-direction: column;
  }

  .aero-cookie-actions,
  .aero-cookie-actions button {
    width: 100%;
  }

  .aero-law-shell {
    width: calc(100% - 24px);
  }

  .aero-law-top,
  .aero-law-main,
  .aero-contact-card {
    padding: 22px;
  }
}