/* ============================================================
   Adaptive TEM V3 — Page Template Stylesheet
   Prefix: atv3- (Adaptive TEM V3)
   Loaded only on page-adaptive-tem-v3.php
   ============================================================ */

/* ── Box model reset (scoped) ──────────────────────────────── */
.atv3-page,
.atv3-page * {
  box-sizing: border-box;
}

/* ── Container ─────────────────────────────────────────────── */
.atv3-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

/* ── Section eyebrow (".sub" equivalent) ───────────────────── */
.atv3-sub {
  display: inline-block;
  position: relative;
  font-family: 'Century Gothic', var(--font-sans);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ab-orange);
  margin-bottom: 16px;
}

.atv3-sub::before {
  position: relative;
  top: -2px;
  content: '';
  display: inline-block;
  margin-right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #d0d1d2;
}

.atv3-sub::after {
  position: relative;
  top: -2px;
  content: '';
  display: inline-block;
  margin-left: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 8px 4px 0;
  border-color: transparent #d0d1d2 transparent transparent;
}

.atv3-sub--light {
  color: rgba(255, 255, 255, 0.6);
}

.atv3-sub--light::before {
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.33);
}

.atv3-sub--light::after {
  border-color: transparent rgba(255, 255, 255, 0.33) transparent transparent;
}

/* ── Typography ─────────────────────────────────────────────── */
.atv3-h2 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: normal;
  line-height: 1.1;
  margin: 0 0 24px;
  color: var(--fg-1);
}

.atv3-h2--light { color: #fff; }

.atv3-accent { color: var(--ab-orange); }

.atv3-lead {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg-2);
  margin: 0;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.atv3-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  transition: filter 150ms ease-out, background 150ms ease-out, border-color 150ms ease-out;
}

.atv3-btn--primary {
  background: var(--ab-orange);
  color: #fff;
  border: 2px solid var(--ab-orange);
  box-shadow: 0 6px 20px rgba(255, 64, 1, 0.30);
}

.atv3-btn--primary:hover {
  filter: brightness(1.10);
  color: #fff;
  text-decoration: none;
}

.atv3-btn--secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.40);
}

.atv3-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.80);
  color: #fff;
  text-decoration: none;
}

.atv3-btn--large {
  padding: 16px 40px;
  font-size: 14px;
}

/* ── Section intro block ─────────────────────────────────────── */
.atv3-section-intro {
  max-width: 760px;
  margin-bottom: 56px;
}

.atv3-section-intro--center {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}


/* ============================================================
   1. HERO
   ============================================================ */
.atv3-hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  background: #021520;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.atv3-hero__video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.atv3-hero__img-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atv3-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.75;
  pointer-events: none;
}

.atv3-hero__grad {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(2, 21, 32, 0.80) 0%, rgba(2, 21, 32, 0) 60%),
    linear-gradient(to bottom, rgba(2, 21, 32, 0.20) 0%, rgba(2, 21, 32, 0.10) 40%, rgba(2, 21, 32, 0.85) 75%, rgba(2, 21, 32, 0.97) 100%);
  pointer-events: none;
}

/* Radar */
.atv3-hero__radar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  mix-blend-mode: screen;
  opacity: 0.15;
  pointer-events: none;
}

.atv3-hero__grid-layer {
  position: absolute;
  inset: -128px;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 0%, transparent 100%);
  animation: atv3-grid-drift 24s linear infinite;
}

@keyframes atv3-grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 64px 64px; }
}

.atv3-hero__svg {
  width: 120vh;
  height: 120vh;
  max-width: 120vw;
  max-height: 120vw;
  flex-shrink: 0;
}

.atv3-radar-sweep {
  transform-origin: 200px 200px;
  animation: atv3-radar-rotate 8s linear infinite;
}

@keyframes atv3-radar-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.atv3-radar-blip {
  animation: atv3-blip-ping 4s ease-out infinite;
}
.atv3-radar-blip--2 { animation-delay: 1.4s; }
.atv3-radar-blip--3 { animation-delay: 2.6s; }

@keyframes atv3-blip-ping {
  0%   { transform: scale(0.6); opacity: 0; }
  20%  { transform: scale(1);   opacity: 1; }
  60%  { transform: scale(1.8); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* Hero content — bottom-left (Amadeus layout) */
.atv3-hero__content {
  position: absolute;
  z-index: 10;
  bottom: 0;
  left: 0;
  padding: 0 48px 80px;
  max-width: 760px;
  text-align: left;
}

/* Label: same style as .atv3-sub with before/after triangles */
.atv3-hero__label {
  display: inline-block;
  position: relative;
  font-family: 'Century Gothic', var(--font-sans);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ab-orange);
  margin-bottom: 20px;
}

.atv3-hero__label::before {
  position: relative;
  top: -2px;
  content: '';
  display: inline-block;
  margin-right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.33);
}

.atv3-hero__label::after {
  position: relative;
  top: -2px;
  content: '';
  display: inline-block;
  margin-left: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 8px 4px 0;
  border-color: transparent rgba(255, 255, 255, 0.33) transparent transparent;
}

.atv3-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
}

.atv3-hero__lead {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: normal;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
}

.atv3-hero__sub {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 32px;
  max-width: 580px;
}

/* Primary CTA */
.atv3-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 11px 22px;
  transition: background 160ms ease-out, border-color 160ms ease-out;
}

.atv3-hero__cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.90);
  color: #fff;
  text-decoration: none;
}

/* Corner CTA — bottom-right */
.atv3-hero__corner-cta {
  position: absolute;
  z-index: 10;
  bottom: 80px;
  right: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 11px 22px;
  transition: background 160ms ease-out, border-color 160ms ease-out;
}

.atv3-hero__corner-cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.90);
  color: #fff;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .atv3-hero__grid-layer { animation: none; }
  .atv3-radar-sweep      { animation: none; }
  .atv3-radar-blip       { animation: none; opacity: 0.6; }
}


/* ============================================================
   2. SUB-NAVIGATION
   ============================================================ */
.atv3-subnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f0f2f5;
  border-bottom: 1px solid rgba(4, 32, 48, 0.10);
}

.atv3-subnav__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 4px;
  row-gap: 0;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.atv3-subnav__link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--fg-2);
  text-decoration: none;
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color 150ms ease-out, border-color 150ms ease-out;
}

.atv3-subnav__link:hover {
  color: var(--fg-1);
  text-decoration: none;
}

.atv3-subnav__link--active {
  color: var(--ab-orange);
  border-bottom-color: var(--ab-orange);
}

@media (max-width: 991px) {
  .page-template-page-adaptive-tem-v3 .header .nav-menu {
    z-index: 999 !important;
  }
}


/* ============================================================
   3. WHAT IS ADAPTIVE TEM
   ============================================================ */
.atv3-what {
  background: #fff;
  padding: 96px 0;
}

/* Two-column layout */
.atv3-what__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}

.atv3-what__label {
  display: inline-block;
  position: relative;
  font-family: 'Century Gothic', var(--font-sans);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ab-orange);
  margin-bottom: 24px;
}

.atv3-what__label::before {
  position: relative;
  top: -2px;
  content: '';
  display: inline-block;
  margin-right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent #d0d1d2;
}

.atv3-what__label::after {
  position: relative;
  top: -2px;
  content: '';
  display: inline-block;
  margin-left: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 8px 4px 0;
  border-color: transparent #d0d1d2 transparent transparent;
}

/* Feature list — feat-details pattern */
.atv3-featlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.atv3-featitem {
  position: relative;
  height: 60px;
  display: table;
  width: 100%;
  padding: 0 15px 0 76px;
  background: radial-gradient(ellipse at center, #fff 0%, #f0f1f2 100%);
  border-radius: 10px;
  transition: box-shadow 160ms ease-out, background 160ms ease-out;
  box-sizing: border-box;
}

.atv3-featitem:hover {
  box-shadow: 0 0 10px #d0d1d2;
  background: #fff;
}

.atv3-featitem i {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 20px;
  color: var(--ab-orange);
  border-radius: 10px 0 0 10px;
  transition: background 160ms ease-out, color 160ms ease-out;
}

.atv3-featitem:hover i {
  background: var(--ab-orange);
  color: #fff;
}

.atv3-featitem h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  color: var(--fg-1);
  display: table-cell;
  vertical-align: middle;
  margin: 0;
}

.atv3-featitem:hover h3 {
  color: var(--ab-orange);
}


/* ============================================================
   4. WHY ADAPTIVE TEM
   ============================================================ */
.atv3-why {
  background: var(--ab-navy-900);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern — same as How It Works in page-adaptive-tem.php */
.atv3-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.atv3-why .atv3-sub,
.atv3-why .atv3-h2 {
  position: relative;
}

.atv3-why .atv3-h2 {
  margin-bottom: 56px;
}

/* Three dark cards */
.atv3-why__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.atv3-why__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 180ms ease-out;
}

.atv3-why__card:hover {
  background: rgba(255, 255, 255, 0.07);
}

.atv3-why__num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  color: var(--ab-orange);
  margin-bottom: 16px;
  line-height: 1;
}

.atv3-why__text {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* Blockquote callout — full width, orange left border on dark */
.atv3-why__callout {
  position: relative;
  background: rgba(255, 64, 1, 0.08);
  border: 1px solid rgba(255, 64, 1, 0.25);
  border-left: 4px solid var(--ab-orange);
  border-radius: 0 16px 16px 0;
  padding: 32px 40px;
  margin: 0;
}

.atv3-why__callout p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.80);
  font-style: italic;
  margin: 0;
}


/* ============================================================
   5. WHO IT'S FOR (AUDIENCE)
   ============================================================ */
.atv3-audience {
  background: #fff;
  padding: 96px 0;
}

.atv3-audience__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

/* Audience card */
.atv3-card {
  background: #fff;
  border: 1px solid var(--border-default);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 180ms ease-out, box-shadow 180ms ease-out;
}

.atv3-card:hover {
  border-color: rgba(255, 64, 1, 0.35);
  box-shadow: 0 8px 28px rgba(255, 64, 1, 0.08);
}

.atv3-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ab-orange);
  background: rgba(255, 64, 1, 0.08);
  border: 1px solid rgba(255, 64, 1, 0.20);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 16px;
}

.atv3-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg-1);
  margin: 0 0 12px;
}

.atv3-card__body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fg-2);
  margin: 0;
}


/* ============================================================
   6. PRODUCT
   ============================================================ */
.atv3-product {
  background: #fff;
  padding: 96px 0;
}

.atv3-product .atv3-section-intro { margin-bottom: 56px; }

.atv3-product__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(4, 32, 48, 0.10);
  box-shadow: 0 16px 48px rgba(4, 32, 48, 0.10);
  background: #021520;
  margin-bottom: 24px;
}

.atv3-product__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.atv3-product__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.atv3-product__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(4, 32, 48, 0.10);
  box-shadow: 0 8px 24px rgba(4, 32, 48, 0.08);
  background: #f0f1f2;
}

.atv3-product__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   7. DEMO / APPLY
   ============================================================ */
.atv3-demo {
  background: var(--ab-navy-900);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.atv3-demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}

.atv3-demo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: flex-start;
  position: relative;
}

.atv3-demo__left .atv3-h2 {
  margin-top: 12px;
}

.atv3-demo__lead {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.70;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 36px;
}

.atv3-demo__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.atv3-demo__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  gap: 16px;
}

.atv3-demo__row:last-child { border-bottom: none; }

.atv3-demo__key {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ab-orange);
  flex-shrink: 0;
}

.atv3-demo__val {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.80);
  font-weight: 400;
  text-align: right;
}

/* Form card */
.atv3-demo__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.atv3-demo__card .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.atv3-demo__card .wpcf7-form p { margin: 0; }

.atv3-demo__card input:not([type="submit"]),
.atv3-demo__card select,
.atv3-demo__card textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 11px 14px;
  border: 1px solid rgba(4, 32, 48, 0.15);
  border-radius: 10px;
  background: #fff;
  color: var(--fg-1);
  transition: border-color 150ms ease-out, box-shadow 150ms ease-out;
  appearance: none;
  -webkit-appearance: none;
}

.atv3-demo__card input:focus:not([type="submit"]),
.atv3-demo__card select:focus,
.atv3-demo__card textarea:focus {
  outline: none;
  border-color: var(--ab-orange);
  box-shadow: 0 0 0 3px rgba(255, 64, 1, 0.12);
}

.atv3-demo__card input[type="submit"] {
  width: 100%;
  background: var(--ab-orange);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 64, 1, 0.30);
  transition: filter 150ms ease-out;
  appearance: none;
  -webkit-appearance: none;
}

.atv3-demo__card input[type="submit"]:hover {
  filter: brightness(1.10);
}


/* ============================================================
   7. FAQ — uses .atem-faq__* from styles-tem.css
   ============================================================ */
.atv3-faq-wrap {
  /* background and padding come from .atem-faq in styles-tem.css */
}


/* ============================================================
   8. FINAL CTA
   ============================================================ */
.atv3-finalcta {
  position: relative;
  background: var(--ab-navy-900);
  padding: 96px 0;
  overflow: hidden;
}

.atv3-finalcta__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center / cover no-repeat;
  opacity: 0.25;
  pointer-events: none;
}

.atv3-finalcta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 36px;
}

.atv3-finalcta__h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: normal;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 767px) {
  .atv3-h2                { font-size: 32px; }
  .atv3-container         { padding-left: 20px; padding-right: 20px; }
  .atv3-why__callout      { padding: 24px 28px; }
  .atv3-hero__content    { padding: 0 24px 100px; }
  .atv3-hero__label      { display: block; text-align: center; }
  .atv3-hero__corner-cta { bottom: 48px; left: 24px; right: auto; }
  .atv3-subnav__inner    { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .atv3-subnav__inner::-webkit-scrollbar { display: none; }
}

@media (min-width: 640px) {
  .atv3-audience__grid  { grid-template-columns: repeat(2, 1fr); }
  .atv3-product__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .atv3-why__grid      { grid-template-columns: repeat(3, 1fr); }
  .atv3-what__grid     { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 991px) {
  .atv3-h2            { font-size: 44px; }

  .atv3-demo__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
  }
}

@media (min-width: 1024px) {
  .atv3-what,
  .atv3-why,
  .atv3-audience,
  .atv3-product,
  .atv3-demo,
  .atv3-faq-wrap,
  .atv3-finalcta {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .atv3-h2             { font-size: 50px; }
  .atv3-audience__grid { grid-template-columns: repeat(4, 1fr); }

  .atv3-finalcta__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}
