/*
Theme Name: AssistCoach
Theme URI: https://assistcoach.ru/
Author: AssistCoach
Author URI: https://assistcoach.ru/
Description: Адаптивная тема для футбольного сервиса и тренерской платформы. Работает на стандартных возможностях WordPress без обязательных плагинов.
Version: 1.3.0
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: assistcoach
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, blog, one-column, two-columns
*/

:root {
  --ac-lime: #6ee500;
  --ac-lime-deep: #4fbd00;
  --ac-lime-soft: #b9ff7a;
  --ac-ink: #070a09;
  --ac-ink-2: #0d1110;
  --ac-ink-3: #151a18;
  --ac-text: #111411;
  --ac-muted: #68706b;
  --ac-line: #dfe5df;
  --ac-white: #fff;
  --ac-shadow: 0 18px 50px rgba(9, 18, 12, .10);
  --ac-radius: 18px;
  --ac-container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: #fff;
  color: var(--ac-text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .site-header { top: 32px; }

img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid var(--ac-lime);
  outline: 3px solid color-mix(in srgb, var(--ac-lime) 72%, white);
  outline-offset: 4px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: #111;
}

.ac-container {
  width: min(100% - 40px, var(--ac-container));
  margin-inline: auto;
}

.ac-section { padding: 88px 0; }
.ac-section--compact { padding: 64px 0; }

.ac-kicker {
  margin: 0 0 8px;
  color: var(--ac-lime-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ac-title {
  margin: 0;
  color: var(--ac-text);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.ac-title--light { color: #fff; }
.ac-accent { color: var(--ac-lime); }

.ac-lead {
  max-width: 720px;
  margin: 16px auto 0;
  color: var(--ac-muted);
  font-size: 18px;
}

.ac-heading { margin-bottom: 42px; text-align: center; }

.ac-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--ac-lime);
  color: #071100;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(110, 229, 0, .20);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.ac-button:hover,
.ac-button:focus-visible {
  background: #80f218;
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(110, 229, 0, .28);
}

.ac-button .ac-arrow { transition: transform .2s ease; }
.ac-button:hover .ac-arrow,
.ac-button:focus-visible .ac-arrow { transform: translateX(4px); }

.ac-button--outline {
  border-color: rgba(255, 255, 255, .25);
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.ac-button--outline:hover,
.ac-button--outline:focus-visible { border-color: var(--ac-lime); background: rgba(110,229,0,.08); }

.ac-button--white {
  background: #fff;
  color: #101510;
  box-shadow: 0 10px 28px rgba(0,0,0,.15);
}

.ac-button--white:hover,
.ac-button--white:focus-visible { background: #f6fff0; }

.ac-arrow { font-size: 20px; line-height: 0; }

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(4, 7, 6, .75);
  color: #fff;
  backdrop-filter: blur(16px);
}

.site-header.is-stuck { position: fixed; box-shadow: 0 12px 30px rgba(0,0,0,.18); }

.ac-scroll-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  appearance: none;
  background: transparent;
  color: var(--ac-lime);
}

.ac-scroll-progress::-webkit-progress-bar { background: transparent; }
.ac-scroll-progress::-webkit-progress-value { background: linear-gradient(90deg, var(--ac-lime-deep), var(--ac-lime-soft)); }
.ac-scroll-progress::-moz-progress-bar { background: linear-gradient(90deg, var(--ac-lime-deep), var(--ac-lime-soft)); }

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  gap: 28px;
}

.site-branding { flex: 0 0 auto; }
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { width: auto; max-height: 44px; }

.ac-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.ac-wordmark__mark { color: var(--ac-lime); font-size: 28px; }
.ac-wordmark__accent { color: var(--ac-lime); }

.primary-navigation { margin-left: auto; }
.primary-navigation .menu { display: flex; align-items: center; gap: 29px; margin: 0; padding: 0; list-style: none; }
.primary-navigation a { color: rgba(255,255,255,.84); font-size: 14px; font-weight: 650; }
.primary-navigation a:hover,
.primary-navigation a:focus-visible,
.primary-navigation .current-menu-item > a,
.primary-navigation a.is-section-active { color: var(--ac-lime); }

.site-header__actions { display: flex; align-items: center; gap: 12px; }
.site-header__actions .ac-button { min-height: 42px; padding: 10px 17px; font-size: 13px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 7px;
  background: transparent;
  color: #fff;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.ac-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #030504;
  color: #fff;
}

.ac-hero::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,4,3,.98) 0%, rgba(2,4,3,.88) 33%, rgba(2,4,3,.25) 63%, rgba(2,4,3,.15) 100%), linear-gradient(0deg, rgba(4,9,6,.7), transparent 48%);
  content: "";
}

.ac-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--ac-parallax-y, 0px), 0) scale(1.065);
  will-change: transform;
}

.ac-hero__canvas {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .62;
  pointer-events: none;
  mix-blend-mode: screen;
}

.ac-hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  min-height: 720px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 105px;
}

.ac-hero__content { width: min(610px, 52%); }

.assistcoach-front-page .ac-hero__content { animation: ac-hero-enter .8s cubic-bezier(.2,.75,.25,1) both .08s; }

@keyframes ac-hero-enter {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

.ac-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--ac-lime-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ac-hero__eyebrow::before { width: 28px; height: 2px; background: var(--ac-lime); content: ""; }

.ac-hero h1 {
  max-width: 600px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.2vw, 60px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .98;
  text-transform: uppercase;
}

.ac-hero h1 .ac-accent { display: block; margin-top: 8px; }
.ac-hero__description { max-width: 530px; margin: 24px 0 0; color: rgba(255,255,255,.78); font-size: 18px; }
.ac-hero__actions { display: flex; align-items: center; gap: 22px; margin-top: 30px; }

.ac-video-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 0;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.ac-video-link__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ac-lime);
  border-radius: 50%;
  color: var(--ac-lime);
  font-size: 17px;
}

.ac-video-link strong { display: block; font-size: 14px; }
.ac-video-link small { display: block; color: rgba(255,255,255,.62); font-size: 11px; }

.ac-hero__benefits {
  display: grid;
  max-width: 630px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.ac-mini-benefit { display: flex; align-items: center; gap: 11px; }
.ac-mini-benefit .dashicons { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--ac-lime); border-radius: 50%; color: var(--ac-lime); }
.ac-mini-benefit span:last-child { color: rgba(255,255,255,.8); font-size: 12px; line-height: 1.35; }
.ac-mini-benefit strong { display: block; color: #fff; }

.ac-data-card {
  position: absolute;
  z-index: 5;
  min-width: 138px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 12px;
  background: rgba(10, 15, 13, .72);
  color: #fff;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
  transform: translate3d(0, var(--ac-parallax-y, 0px), 0);
  will-change: transform;
}

.ac-data-card small { display: block; margin-bottom: 5px; color: rgba(255,255,255,.65); font-size: 11px; }
.ac-data-card strong { display: flex; align-items: center; gap: 6px; font-size: 22px; line-height: 1; }
.ac-data-card strong .dashicons { color: var(--ac-lime); }
.ac-data-card--load { top: 26%; right: 38%; }
.ac-data-card--form { top: 23%; right: 8%; text-align: center; }
.ac-data-card--team { top: 47%; right: 4%; text-align: center; }
.ac-data-card--chart { right: 13%; bottom: 13%; width: 180px; }

.ac-ring {
  display: grid;
  width: 67px;
  height: 67px;
  margin: 5px auto 0;
  place-items: center;
  border: 8px solid rgba(110,229,0,.2);
  border-top-color: var(--ac-lime);
  border-right-color: var(--ac-lime);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  transform: rotate(-34deg);
}

.ac-ring span { transform: rotate(34deg); }
.ac-sparkline { display: flex; height: 54px; align-items: end; gap: 5px; padding-top: 6px; border-bottom: 1px solid rgba(110,229,0,.35); }
.ac-sparkline i { display: block; flex: 1; border-radius: 2px 2px 0 0; background: linear-gradient(var(--ac-lime), rgba(110,229,0,.18)); }

/* Trust */
.ac-trust { position: relative; z-index: 6; background: linear-gradient(90deg, #111614, #1b211f 50%, #0b0f0e); color: #fff; }
.ac-trust__inner { display: flex; min-height: 96px; align-items: center; justify-content: space-between; gap: 28px; }
.ac-trust__label { flex: 0 0 auto; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.ac-trust__logos { display: grid; flex: 1; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ac-trust__logo { display: flex; align-items: center; justify-content: center; gap: 9px; color: rgba(255,255,255,.58); font-size: 14px; font-weight: 800; line-height: 1; text-transform: uppercase; }
.ac-trust__logo span:first-child { display: grid; width: 32px; height: 36px; place-items: center; border: 2px solid rgba(255,255,255,.35); border-radius: 45% 45% 55% 55%; font-size: 10px; }

/* Features */
.ac-features { background: radial-gradient(circle at 50% 0, #fff 0, #f8faf8 65%, #f4f7f4 100%); }
.ac-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ac-feature-card {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--ac-line);
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 5px 16px rgba(13,25,17,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

[data-spotlight] { --ac-spot-x: 50%; --ac-spot-y: 50%; }
[data-spotlight]::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(circle 220px at var(--ac-spot-x) var(--ac-spot-y), rgba(110,229,0,.12), transparent 72%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  content: "";
}
[data-spotlight]:hover::after { opacity: 1; }
.ac-feature-card > * { position: relative; z-index: 1; }

.ac-feature-card:hover { border-color: rgba(110,229,0,.55); transform: translateY(-4px); box-shadow: var(--ac-shadow); }
.ac-feature-card__icon { display: grid; width: 52px; height: 52px; margin-bottom: 17px; place-items: center; border-radius: 50%; background: #c8ff9d; color: #143804; }
.ac-feature-card__icon .dashicons { width: auto; height: auto; font-size: 28px; }
.ac-feature-card h3 { margin: 0 0 7px; font-size: 18px; line-height: 1.25; }
.ac-feature-card p { margin: 0; color: #555e58; font-size: 14px; line-height: 1.55; }

/* Steps */
.ac-steps { position: relative; overflow: hidden; background: #0b0f0e; color: #fff; }
.ac-steps::before,
.ac-steps::after { position: absolute; width: 250px; height: 250px; border: 1px solid rgba(255,255,255,.05); border-radius: 50%; content: ""; }
.ac-steps::before { top: -90px; left: -120px; }
.ac-steps::after { right: -110px; bottom: -160px; }
.ac-steps-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; }
.ac-steps-grid::before { position: absolute; top: 31px; right: 12%; left: 12%; border-top: 1px dashed rgba(110,229,0,.45); content: ""; }
.ac-step { position: relative; z-index: 2; text-align: center; }
.ac-step__icon { display: grid; width: 64px; height: 64px; margin: 0 auto 18px; place-items: center; border: 1px solid var(--ac-lime); border-radius: 50%; background: #101714; color: var(--ac-lime); box-shadow: 0 0 0 9px #0b0f0e; }
.ac-step__icon .dashicons { width: auto; height: auto; font-size: 30px; }
.ac-step__number { display: block; color: rgba(255,255,255,.45); font-size: 13px; }
.ac-step h3 { margin: 2px 0 8px; font-size: 15px; }
.ac-step p { margin: 0; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.5; }

/* Audience */
.ac-audience { background: #fff; }
.ac-audience__grid { display: grid; grid-template-columns: .72fr 1.5fr; align-items: center; gap: 46px; }
.ac-check-list { margin: 25px 0 0; padding: 0; list-style: none; }
.ac-check-list li { position: relative; margin: 0 0 13px; padding-left: 29px; color: #404740; font-size: 14px; }
.ac-check-list li::before { position: absolute; top: 1px; left: 0; color: var(--ac-lime-deep); font-family: dashicons; font-size: 19px; content: "\f147"; }
.ac-audience__visual { position: relative; min-width: 0; padding-right: 30px; }
.ac-audience__image { display: block; width: 100%; min-height: 410px; border-radius: 18px; object-fit: cover; box-shadow: 0 24px 60px rgba(10,30,15,.14); }
.ac-quote {
  position: absolute;
  right: 0;
  bottom: -16px;
  width: min(340px, 60%);
  padding: 26px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(10,14,12,.95);
  color: #fff;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
}

.ac-quote__mark { display: block; height: 26px; color: var(--ac-lime); font-size: 44px; font-weight: 900; line-height: .9; }
.ac-quote blockquote { margin: 9px 0 18px; font-size: 14px; line-height: 1.65; }
.ac-quote__author { display: flex; align-items: center; gap: 11px; }
.ac-avatar { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: linear-gradient(145deg, #3e4b43, #18201b); color: var(--ac-lime); font-weight: 800; }
.ac-quote__author strong { display: block; font-size: 12px; }
.ac-quote__author small { display: block; color: var(--ac-lime); font-size: 10px; }

/* Pricing */
.ac-pricing { position: relative; overflow: hidden; background: #080b0a; color: #fff; }
.ac-pricing__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .74; transform: translate3d(0, var(--ac-parallax-y, 0px), 0) scale(1.07); will-change: transform; }
.ac-pricing::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,8,7,.98) 0%, rgba(6,8,7,.95) 56%, rgba(6,8,7,.32) 100%), linear-gradient(0deg, rgba(6,8,7,.88), transparent 50%); content: ""; }
.ac-pricing .ac-container { position: relative; z-index: 2; }
.ac-pricing__intro { margin-bottom: 28px; }
.ac-pricing__intro p { margin: 8px 0 0; color: rgba(255,255,255,.55); }
.ac-pricing__layout { display: grid; grid-template-columns: minmax(0, 3fr) minmax(230px, .9fr); align-items: end; gap: 38px; }
.ac-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ac-price-card { position: relative; min-height: 380px; overflow: hidden; padding: 23px; border: 1px solid rgba(255,255,255,.22); border-radius: 12px; background: rgba(6,10,8,.82); backdrop-filter: blur(8px); }
.ac-price-card > *:not(.ac-price-card__badge) { position: relative; z-index: 1; }
.ac-price-card--popular { border-color: var(--ac-lime); box-shadow: 0 0 35px rgba(110,229,0,.14); }
.ac-price-card__badge { position: absolute; z-index: 2; top: 8px; right: 12px; padding: 5px 9px; border-radius: 4px; background: var(--ac-lime); color: #0c1a04; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.ac-price-card__name { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 500; }
.ac-price-card__price { margin: 10px 0 0; font-size: 32px; font-weight: 500; line-height: 1; }
.ac-price-card__price small { color: rgba(255,255,255,.6); font-size: 13px; }
.ac-price-card__caption { min-height: 42px; margin: 12px 0 16px; color: rgba(255,255,255,.62); font-size: 12px; }
.ac-price-card ul { margin: 0 0 22px; padding: 0; list-style: none; }
.ac-price-card li { position: relative; margin: 0 0 8px; padding-left: 22px; color: rgba(255,255,255,.76); font-size: 12px; }
.ac-price-card li::before { position: absolute; left: 0; color: var(--ac-lime); font-family: dashicons; content: "\f147"; }
.ac-price-card .ac-button { position: absolute; right: 18px; bottom: 18px; left: 18px; min-height: 46px; font-size: 13px; }
.ac-price-card:not(.ac-price-card--popular) .ac-button { border-color: rgba(255,255,255,.3); background: transparent; color: #fff; box-shadow: none; }
.ac-price-card:not(.ac-price-card--popular) .ac-button:hover { border-color: var(--ac-lime); background: rgba(110,229,0,.08); }
.ac-pricing__assurances { margin: 0 0 56px; padding: 0; list-style: none; }
.ac-pricing__assurances li { display: flex; align-items: center; gap: 12px; margin: 0 0 18px; font-size: 14px; }
.ac-pricing__assurances .dashicons { color: var(--ac-lime); }

/* FAQ */
.ac-faq { background: #f5f8f5; }
.ac-faq__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
.ac-faq__intro { position: sticky; top: 120px; }
.ac-faq__intro > p:not(.ac-kicker) { margin: 18px 0 24px; color: var(--ac-muted); }
.ac-faq__items { border-top: 1px solid #dce4dd; }
.ac-faq__item { border-bottom: 1px solid #dce4dd; }
.ac-faq__item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; font-size: 17px; font-weight: 750; cursor: pointer; list-style: none; }
.ac-faq__item summary::-webkit-details-marker { display: none; }
.ac-faq__item summary span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border: 1px solid #bfccbf; border-radius: 50%; color: var(--ac-lime-deep); font-size: 20px; transition: transform .2s ease; }
.ac-faq__item[open] summary span { transform: rotate(45deg); }
.ac-faq__item div { padding: 0 45px 20px 0; }
.ac-faq__item p { margin: 0; color: var(--ac-muted); font-size: 14px; }

/* CTA */
.ac-final-cta { position: relative; overflow: hidden; background: linear-gradient(110deg, #238e10, #55ce1e 62%, #73df29); color: #fff; }
.ac-final-cta::before { position: absolute; z-index: 0; inset: 0; background: radial-gradient(circle at 20% 130%, rgba(0,0,0,.28), transparent 33%), linear-gradient(90deg, transparent, rgba(255,255,255,.08)); content: ""; }
.ac-final-cta__aurora { position: absolute; z-index: 1; top: -330px; right: 7%; width: 580px; height: 580px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,.04) 43%, transparent 70%); filter: blur(2px); transform: translate3d(0, var(--ac-parallax-y, 0px), 0); pointer-events: none; will-change: transform; }
.ac-final-cta__inner { position: relative; z-index: 2; display: grid; min-height: 250px; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 55px; }
.ac-final-cta__copy { padding-left: 160px; }
.ac-final-cta h2 { margin: 0; font-size: clamp(31px, 4vw, 48px); line-height: 1.05; }
.ac-final-cta p { max-width: 520px; margin: 13px 0 0; color: rgba(255,255,255,.86); }
.ac-final-cta__action { text-align: center; }
.ac-final-cta__action small { display: block; margin-top: 10px; color: rgba(255,255,255,.82); }
.ac-phone {
  position: absolute;
  z-index: 3;
  bottom: -82px;
  left: max(28px, calc((100% - var(--ac-container))/2));
  width: 116px;
  height: 235px;
  padding: 8px;
  border: 3px solid #111;
  border-radius: 22px;
  background: #222;
  box-shadow: 0 20px 35px rgba(0,0,0,.35);
  transform: translate3d(0, var(--ac-parallax-y, 0px), 0) rotate(-8deg);
  will-change: transform;
}
.ac-phone__screen { display: flex; height: 100%; flex-direction: column; align-items: center; padding-top: 28px; border-radius: 14px; background: radial-gradient(circle at 50% 35%, #1c3320, #09100c 55%); color: #fff; }
.ac-phone__screen small { color: rgba(255,255,255,.58); font-size: 8px; }
.ac-phone__score { display: grid; width: 61px; height: 61px; margin: 12px 0; place-items: center; border: 6px solid rgba(110,229,0,.25); border-top-color: var(--ac-lime); border-radius: 50%; font-size: 16px; font-weight: 800; }
.ac-phone__line { width: 66px; height: 5px; margin-top: 9px; border-radius: 9px; background: rgba(255,255,255,.1); }
.ac-phone__line:nth-child(5) { width: 48px; background: rgba(110,229,0,.35); }

/* Footer */
.site-footer { background: #080b0a; color: rgba(255,255,255,.72); }
.site-footer__top { display: grid; grid-template-columns: 1.15fr 2fr; gap: 80px; padding: 65px 0 45px; }
.site-footer__about p { max-width: 380px; margin: 18px 0 0; color: rgba(255,255,255,.52); font-size: 14px; }
.site-footer__widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.site-footer .widget-title { margin: 0 0 17px; color: #fff; font-size: 14px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin: 0 0 8px; }
.site-footer a { font-size: 13px; }
.site-footer a:hover { color: var(--ac-lime); }
.site-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); font-size: 12px; }
.footer-navigation .menu { display: flex; gap: 22px; margin: 0; padding: 0; list-style: none; }

/* Blog and inner pages */
.ac-page-hero { padding: 150px 0 75px; background: radial-gradient(circle at 80% 0, #172c1b, #070a08 52%); color: #fff; }
.ac-page-hero h1 { max-width: 850px; margin: 0; color: #fff; font-size: clamp(40px, 6vw, 68px); line-height: 1.05; }
.ac-page-hero p { max-width: 650px; margin: 14px 0 0; color: rgba(255,255,255,.62); }
.ac-content-area { padding: 70px 0 90px; }
.ac-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.ac-post-card { overflow: hidden; border: 1px solid var(--ac-line); border-radius: 16px; background: #fff; box-shadow: 0 8px 25px rgba(12,25,16,.06); }
.ac-post-card__thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: #e9eee9; }
.ac-post-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.ac-post-card:hover .ac-post-card__thumb img { transform: scale(1.04); }
.ac-post-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: linear-gradient(145deg, #142019, #0b0f0d); color: var(--ac-lime); font-size: 40px; }
.ac-post-card__body { padding: 22px; }
.ac-post-card__meta { margin-bottom: 8px; color: var(--ac-lime-deep); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.ac-post-card h2 { margin: 0 0 9px; font-size: 21px; line-height: 1.25; }
.ac-post-card p { margin: 0; color: var(--ac-muted); font-size: 14px; }
.ac-article { width: min(100% - 40px, 820px); margin-inline: auto; }
.ac-article__meta { margin-top: 18px; color: rgba(255,255,255,.6); }
.ac-entry-content { font-size: 17px; }
.ac-entry-content > * { max-width: 100%; }
.ac-entry-content h2, .ac-entry-content h3 { margin-top: 1.6em; line-height: 1.2; }
.ac-entry-content a { color: var(--ac-lime-deep); text-decoration: underline; }
.ac-entry-content blockquote { margin: 28px 0; padding: 18px 24px; border-left: 4px solid var(--ac-lime); background: #f4f8f2; }
.ac-entry-content img { border-radius: 12px; }
.alignwide { width: min(1120px, calc(100vw - 40px)); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.navigation.pagination { margin-top: 42px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; min-width: 42px; height: 42px; place-items: center; border: 1px solid var(--ac-line); border-radius: 7px; }
.page-numbers.current, .page-numbers:hover { border-color: var(--ac-lime); background: var(--ac-lime); color: #0b1405; }
.ac-not-found { padding: 170px 0 100px; text-align: center; }
.ac-not-found strong { display: block; color: var(--ac-lime-deep); font-size: clamp(90px, 18vw, 180px); line-height: .9; }

/* Forms and comments */
.comment-list { padding: 0; list-style: none; }
.comment-body { margin: 0 0 20px; padding: 20px; border: 1px solid var(--ac-line); border-radius: 12px; }
.comment-meta { font-size: 13px; }
.comment-content { margin-top: 12px; }
.comment-reply-link { color: var(--ac-lime-deep); font-size: 13px; font-weight: 700; }
.comment-form label { display: block; margin-bottom: 5px; font-weight: 700; }
.comment-form input:not([type="checkbox"]), .comment-form textarea, .search-form input[type="search"] { width: 100%; padding: 12px 14px; border: 1px solid #ccd5ce; border-radius: 8px; background: #fff; }
.comment-form input:focus, .comment-form textarea:focus, .search-form input:focus { border-color: var(--ac-lime-deep); outline: 3px solid rgba(110,229,0,.15); }
.form-submit .submit, .search-submit { min-height: 46px; padding: 11px 22px; border: 0; border-radius: 8px; background: var(--ac-lime); color: #0b1505; font-weight: 800; cursor: pointer; }

/* Modal */
.ac-modal { position: fixed; z-index: 9999; inset: 0; display: none; width: 100vw; max-width: none; height: 100vh; height: 100dvh; max-height: none; margin: 0; align-items: center; justify-content: center; padding: 24px; border: 0; background: rgba(0,0,0,.82); color: #fff; }
.ac-modal[open] { display: flex; }
.ac-modal::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(7px); }
.ac-modal__dialog { position: relative; width: min(100%, 960px); border: 1px solid rgba(255,255,255,.18); border-radius: 14px; background: #060806; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.ac-modal__frame { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 14px; }
.ac-modal__close { position: absolute; z-index: 2; top: -16px; right: -16px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: #101510; color: #fff; cursor: pointer; }

/* Reveal */
.js .ac-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .ac-reveal { transition-delay: var(--ac-reveal-delay, 0ms); }
.js .ac-reveal.is-visible { opacity: 1; transform: translateY(0); }
.js .ac-feature-card.ac-reveal.is-visible:hover { transform: translateY(-4px); }

@media (max-width: 1120px) {
  .primary-navigation .menu { gap: 18px; }
  .site-header__actions .ac-button--outline { display: none; }
  .ac-data-card--load { right: 34%; }
  .ac-price-card { padding: 18px; }
  .ac-final-cta__copy { padding-left: 135px; }
}

@media (max-width: 960px) {
  body.admin-bar .site-header { top: 46px; }
  .site-header__inner { min-height: 68px; }
  .menu-toggle { display: block; }
  .primary-navigation { position: absolute; top: 100%; right: 0; left: 0; display: none; margin: 0; padding: 12px 20px 22px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(4,7,6,.98); }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .menu { display: block; }
  .primary-navigation li { border-bottom: 1px solid rgba(255,255,255,.07); }
  .primary-navigation a { display: block; padding: 12px 0; font-size: 15px; }
  .site-header__actions .ac-button { display: none; }
  .ac-hero { min-height: 760px; }
  .ac-hero::before { background: linear-gradient(90deg, rgba(2,4,3,.97) 0%, rgba(2,4,3,.82) 55%, rgba(2,4,3,.38) 100%), linear-gradient(0deg, rgba(4,9,6,.75), transparent 55%); }
  .ac-hero__inner { min-height: 760px; }
  .ac-hero__content { width: 65%; }
  .ac-data-card--form, .ac-data-card--team { right: 3%; }
  .ac-data-card--load, .ac-data-card--chart { display: none; }
  .ac-trust__inner { flex-direction: column; padding: 24px 0; }
  .ac-trust__logos { width: 100%; }
  .ac-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .ac-audience__grid { grid-template-columns: 1fr; }
  .ac-audience__copy { max-width: 650px; }
  .ac-pricing__layout { grid-template-columns: 1fr; }
  .ac-pricing__assurances { display: flex; flex-wrap: wrap; margin: 0; gap: 16px 28px; }
  .ac-pricing__assurances li { margin: 0; }
  .ac-faq__grid { grid-template-columns: 1fr; gap: 44px; }
  .ac-faq__intro { position: static; }
  .ac-final-cta__inner { grid-template-columns: 1fr 300px; }
  .ac-final-cta__copy { padding-left: 125px; }
  .site-footer__top { grid-template-columns: 1fr; gap: 45px; }
  .ac-post-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .ac-container { width: min(100% - 28px, var(--ac-container)); }
  .ac-section { padding: 68px 0; }
  .ac-section--compact { padding: 54px 0; }
  .ac-heading { margin-bottom: 30px; }
  .ac-title { font-size: 34px; }
  .ac-lead { font-size: 16px; }
  .ac-wordmark { font-size: 16px; }
  .ac-wordmark__mark { font-size: 24px; }
  .ac-hero, .ac-hero__inner { min-height: 780px; }
  .ac-hero__image { object-position: 67% center; opacity: .62; transform: scale(1.04); }
  .ac-hero__canvas { opacity: .34; }
  .ac-hero::before { background: linear-gradient(90deg, rgba(2,4,3,.95), rgba(2,4,3,.55)), linear-gradient(0deg, rgba(2,4,3,.98) 5%, transparent 65%); }
  .ac-hero__inner { align-items: flex-end; padding-top: 105px; padding-bottom: 45px; }
  .ac-hero__content { width: 100%; }
  .ac-hero__eyebrow { gap: 7px; font-size: 11px; letter-spacing: .06em; }
  .ac-hero__eyebrow::before { width: 20px; flex: 0 0 20px; }
  .ac-hero h1 { font-size: clamp(38px, 11.8vw, 52px); }
  .ac-hero__description { font-size: 16px; }
  .ac-hero__actions { align-items: flex-start; flex-direction: column; gap: 10px; }
  .ac-hero__benefits { grid-template-columns: 1fr 1fr; margin-top: 28px; }
  .ac-mini-benefit:last-child { display: none; }
  .ac-data-card { display: none; }
  .ac-trust__logos { grid-template-columns: repeat(2, 1fr); }
  .ac-trust__logo { justify-content: flex-start; font-size: 12px; }
  .ac-feature-grid { grid-template-columns: 1fr; }
  .ac-feature-card { padding: 22px; }
  .ac-steps-grid { grid-template-columns: 1fr 1fr; row-gap: 38px; }
  .ac-steps-grid::before { display: none; }
  .ac-audience__visual { padding-right: 0; padding-bottom: 100px; }
  .ac-audience__image { min-height: 340px; }
  .ac-quote { right: 12px; bottom: 0; width: calc(100% - 24px); }
  .ac-price-grid { grid-template-columns: 1fr; }
  .ac-price-card { min-height: 360px; }
  .ac-pricing::after { background: linear-gradient(90deg, rgba(6,8,7,.98), rgba(6,8,7,.72)); }
  .ac-pricing__assurances { display: grid; }
  .ac-faq__item summary { font-size: 15px; }
  .ac-final-cta { padding: 55px 0; }
  .ac-final-cta__inner { min-height: 0; grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .ac-final-cta__copy { padding-left: 0; }
  .ac-final-cta__copy p { margin-inline: auto; }
  .ac-phone { display: none; }
  .site-footer__widgets { grid-template-columns: 1fr; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer-navigation .menu { flex-wrap: wrap; }
  .ac-post-grid { grid-template-columns: 1fr; }
  .ac-modal__close { top: -12px; right: -6px; }
}

@media (max-width: 480px) {
  .ac-hero__benefits { grid-template-columns: 1fr; }
  .ac-mini-benefit:nth-child(2) { display: none; }
  .ac-steps-grid { grid-template-columns: 1fr; }
  .ac-audience__image { min-height: 300px; }
  .ac-quote { padding: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js .ac-reveal { opacity: 1; transform: none; }
  .assistcoach-front-page .ac-hero__content { animation: none; }
  .ac-hero__image, .ac-pricing__bg { transform: scale(1.04); }
  .ac-data-card { transform: none; }
  .ac-phone { transform: rotate(-8deg); }
  .ac-final-cta__aurora { transform: none; }
}

/* ========================================================================== 
   AssistCoach 1.2 — wide, editorial sports-tech layout
   ========================================================================== */

:root {
  --ac-container: 1840px;
  --ac-radius: 22px;
  --ac-shadow: 0 24px 70px rgba(8, 19, 12, .12);
  --ac-hairline: rgba(11, 25, 16, .10);
}

body {
  background: #f7f9f7;
  color: #101410;
  font-size: 16px;
}

.assistcoach-front-page .site-main { overflow: clip; }

.ac-container {
  width: min(92%, var(--ac-container));
}

.ac-section { padding: clamp(78px, 6.5vw, 124px) 0; }
.ac-section--compact { padding: clamp(68px, 5vw, 98px) 0; }

.ac-heading { margin-bottom: clamp(38px, 3.8vw, 64px); }

.ac-title {
  font-size: clamp(38px, 3.25vw, 68px);
  font-weight: 900;
  letter-spacing: -.052em;
  line-height: .98;
  text-wrap: balance;
}

.ac-lead {
  max-width: 850px;
  margin-top: 20px;
  color: #69726c;
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.55;
}

.ac-kicker {
  margin-bottom: 12px;
  font-size: 12px;
  letter-spacing: .16em;
}

.ac-button {
  min-height: 56px;
  gap: 14px;
  padding: 15px 27px;
  border-radius: 10px;
  font-size: 14px;
  letter-spacing: -.01em;
  box-shadow: 0 14px 34px rgba(110, 229, 0, .20);
}

/* Header */
.site-header {
  border-bottom-color: rgba(255, 255, 255, .09);
  background: linear-gradient(180deg, rgba(4, 7, 6, .94), rgba(4, 7, 6, .78));
  backdrop-filter: blur(20px) saturate(125%);
}

.site-header.is-stuck {
  background: rgba(4, 7, 6, .94);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .24);
}

.site-header__inner {
  min-height: 86px;
  gap: clamp(20px, 2vw, 40px);
}

.site-branding { min-width: max-content; }

.ac-wordmark {
  gap: 7px;
  font-size: 18px;
  letter-spacing: -.045em;
}

.ac-wordmark__mark {
  font-size: 32px;
  line-height: 1;
  letter-spacing: -.08em;
}

.ac-wordmark__name { white-space: nowrap; }

.custom-logo {
  width: auto;
  max-width: 250px;
  max-height: 48px;
}

.primary-navigation .menu {
  gap: clamp(16px, 1.55vw, 32px);
}

.primary-navigation a {
  position: relative;
  padding: 12px 0;
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.primary-navigation a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--ac-lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after,
.primary-navigation a.is-section-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header__actions { gap: 10px; }

.site-header__actions .ac-button {
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 12px;
}

/* Hero */
.ac-hero {
  min-height: clamp(710px, 47vw, 900px);
  background:
    radial-gradient(circle at 72% 38%, rgba(77, 189, 0, .16), transparent 27%),
    #020403;
}

.ac-hero::before {
  background:
    linear-gradient(90deg, rgba(2, 4, 3, 1) 0%, rgba(2, 4, 3, .97) 25%, rgba(2, 4, 3, .72) 46%, rgba(2, 4, 3, .14) 72%, rgba(2, 4, 3, .22) 100%),
    linear-gradient(0deg, rgba(3, 8, 5, .84) 0%, transparent 42%);
}

.ac-hero::after {
  position: absolute;
  z-index: 4;
  right: -9%;
  bottom: -25%;
  width: 62%;
  height: 52%;
  border-radius: 50%;
  background: rgba(88, 217, 0, .10);
  filter: blur(110px);
  pointer-events: none;
  content: "";
}

.ac-hero__image {
  object-position: 56% center;
  filter: contrast(1.05) saturate(.9);
  transform: translate3d(0, var(--ac-parallax-y, 0px), 0) scale(1.045);
}

.ac-hero__canvas {
  opacity: .54;
  mask-image: linear-gradient(90deg, transparent 10%, #000 43%, #000 100%);
}

.ac-hero__inner {
  min-height: clamp(710px, 47vw, 900px);
  align-items: center;
  padding-top: 118px;
  padding-bottom: 72px;
}

.ac-hero__content {
  width: min(720px, 47%);
}

.ac-hero__eyebrow {
  margin-bottom: 22px;
  padding: 7px 11px 7px 0;
  color: #baff7d;
  font-size: 12px;
  letter-spacing: .14em;
}

.ac-hero__eyebrow::before {
  width: 34px;
  box-shadow: 0 0 16px rgba(110, 229, 0, .8);
}

.ac-hero h1 {
  max-width: 720px;
  font-size: clamp(56px, 4.55vw, 94px);
  letter-spacing: -.065em;
  line-height: .9;
  text-wrap: balance;
}

.ac-hero h1 .ac-accent { margin-top: 13px; }

.ac-hero__description {
  max-width: 610px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .74);
  font-size: clamp(16px, 1.18vw, 20px);
  line-height: 1.65;
}

.ac-hero__actions {
  gap: 27px;
  margin-top: 34px;
}

.ac-video-link__icon {
  width: 46px;
  height: 46px;
  box-shadow: inset 0 0 0 5px rgba(110, 229, 0, .06), 0 0 28px rgba(110, 229, 0, .12);
}

.ac-video-link strong { font-size: 13px; }

.ac-hero__benefits {
  max-width: 720px;
  gap: clamp(16px, 2vw, 34px);
  margin-top: 46px;
  padding-top: 25px;
}

.ac-mini-benefit { gap: 12px; }

.ac-mini-benefit .dashicons {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-color: rgba(110, 229, 0, .78);
  background: rgba(110, 229, 0, .04);
}

.ac-mini-benefit span:last-child { font-size: 11px; }

.ac-data-card {
  min-width: 146px;
  padding: 15px 17px;
  border-color: rgba(166, 255, 101, .20);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(13, 20, 17, .86), rgba(5, 9, 7, .64));
  box-shadow: 0 22px 60px rgba(0, 0, 0, .33), inset 0 1px rgba(255, 255, 255, .04);
}

.ac-data-card small {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 700;
}

.ac-data-card--load { top: 25%; right: 39%; }
.ac-data-card--form { top: 22%; right: 7%; }
.ac-data-card--team { top: 51%; right: 3.8%; }
.ac-data-card--chart { right: 12%; bottom: 12%; width: 194px; }

.ac-ring {
  width: 72px;
  height: 72px;
  border-width: 7px;
  box-shadow: 0 0 24px rgba(110, 229, 0, .08);
}

/* Trust */
.ac-trust {
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: linear-gradient(90deg, #0c110f, #171d1a 50%, #0a0e0d);
}

.ac-trust__inner { min-height: 110px; }

.ac-trust__label {
  font-size: 10px;
  letter-spacing: .13em;
}

.ac-trust__logos { max-width: 1260px; gap: 38px; }

.ac-trust__logo {
  gap: 12px;
  color: rgba(255, 255, 255, .56);
  font-size: 13px;
  letter-spacing: .02em;
}

.ac-trust__logo span:first-child {
  width: 38px;
  height: 42px;
  border-color: rgba(255, 255, 255, .26);
}

/* Features */
.ac-features {
  position: relative;
  background:
    radial-gradient(circle at 50% 0, rgba(110, 229, 0, .055), transparent 28%),
    linear-gradient(180deg, #fff, #f4f7f4);
}

.ac-features::before {
  position: absolute;
  inset: 0;
  opacity: .34;
  background-image: linear-gradient(rgba(23, 53, 31, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(23, 53, 31, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(#000, transparent 72%);
  pointer-events: none;
  content: "";
}

.ac-features .ac-container { position: relative; }

.ac-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.5vw, 28px);
  counter-reset: ac-feature;
}

.ac-feature-card {
  min-height: 236px;
  isolation: isolate;
  padding: clamp(26px, 2vw, 38px);
  border-color: rgba(17, 44, 25, .10);
  border-radius: 20px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 38px rgba(10, 27, 15, .055), inset 0 1px #fff;
  counter-increment: ac-feature;
}

.ac-feature-card::before {
  position: absolute;
  z-index: 0;
  top: 20px;
  right: 24px;
  color: rgba(16, 38, 21, .055);
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: 1;
  content: "0" counter(ac-feature);
}

.ac-feature-card:hover {
  border-color: rgba(96, 210, 0, .55);
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(11, 31, 17, .13);
}

.ac-feature-card__icon {
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  border: 1px solid rgba(70, 164, 0, .18);
  border-radius: 16px;
  background: linear-gradient(145deg, #d6ffb5, #aaff68);
  box-shadow: 0 10px 24px rgba(97, 205, 0, .17);
}

.ac-feature-card__icon .dashicons { font-size: 29px; }

.ac-feature-card h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.35vw, 23px);
  letter-spacing: -.025em;
}

.ac-feature-card p {
  max-width: 450px;
  color: #5f6962;
  font-size: 14px;
  line-height: 1.65;
}

.js .ac-feature-card.ac-reveal.is-visible:hover { transform: translateY(-7px); }

/* Steps */
.ac-steps {
  background:
    radial-gradient(circle at 50% 115%, rgba(110, 229, 0, .13), transparent 35%),
    linear-gradient(120deg, #090d0b, #111714 55%, #080b0a);
}

.ac-steps::before,
.ac-steps::after {
  width: 440px;
  height: 440px;
  border-color: rgba(110, 229, 0, .07);
}

.ac-steps-grid { gap: clamp(28px, 4vw, 72px); }

.ac-steps-grid::before {
  top: 38px;
  right: 9%;
  left: 9%;
  border-top-color: rgba(110, 229, 0, .40);
}

.ac-step__icon {
  width: 78px;
  height: 78px;
  margin-bottom: 20px;
  border-color: rgba(110, 229, 0, .72);
  background: linear-gradient(145deg, #142019, #0b100d);
  box-shadow: 0 0 0 11px #0d120f, 0 0 38px rgba(110, 229, 0, .08);
}

.ac-step__icon .dashicons { font-size: 32px; }
.ac-step__number { margin-bottom: 4px; font-size: 12px; letter-spacing: .16em; }
.ac-step h3 { margin-bottom: 10px; font-size: clamp(15px, 1.12vw, 19px); }
.ac-step p { max-width: 260px; margin-inline: auto; font-size: 12px; line-height: 1.65; }

/* Audience */
.ac-audience {
  background:
    linear-gradient(90deg, rgba(235, 243, 236, .68) 1px, transparent 1px),
    #fff;
  background-size: 25% 100%;
}

.ac-audience__grid {
  grid-template-columns: minmax(300px, .64fr) minmax(0, 1.55fr);
  gap: clamp(52px, 7vw, 130px);
}

.ac-audience__copy .ac-title { max-width: 480px; }

.ac-check-list { margin-top: 32px; }

.ac-check-list li {
  margin-bottom: 16px;
  padding-left: 34px;
  color: #38423a;
  font-size: 15px;
}

.ac-check-list li::before {
  top: -1px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(110, 229, 0, .13);
  font-size: 18px;
}

.ac-audience__visual { padding-right: 54px; }

.ac-audience__image {
  min-height: clamp(430px, 31vw, 590px);
  border-radius: 24px;
  box-shadow: 0 34px 90px rgba(8, 28, 14, .17);
}

.ac-quote {
  bottom: -28px;
  width: min(410px, 58%);
  padding: 32px;
  border-color: rgba(145, 255, 69, .15);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(14, 20, 17, .98), rgba(5, 8, 7, .95));
  box-shadow: 0 30px 70px rgba(0, 0, 0, .30);
}

.ac-quote::before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 229, 0, .65), transparent);
  content: "";
}

.ac-quote blockquote { margin: 10px 0 23px; font-size: 15px; line-height: 1.7; }
.ac-avatar { width: 44px; height: 44px; }

/* Pricing */
.ac-pricing {
  background: #060907;
}

.ac-pricing__bg {
  object-position: 70% center;
  opacity: .86;
}

.ac-pricing::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 6, 1) 0%, rgba(5, 8, 6, .98) 55%, rgba(5, 8, 6, .36) 82%, rgba(5, 8, 6, .22) 100%),
    linear-gradient(0deg, rgba(5, 8, 6, .92), transparent 56%);
}

.ac-pricing__intro { margin-bottom: 38px; }
.ac-pricing__intro p { font-size: 15px; }

.ac-pricing__layout {
  grid-template-columns: minmax(0, 3.6fr) minmax(260px, .82fr);
  gap: clamp(34px, 4vw, 74px);
}

.ac-price-grid { gap: clamp(16px, 1.35vw, 26px); }

.ac-price-card {
  min-height: 445px;
  padding: 30px;
  border-color: rgba(255, 255, 255, .17);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(18, 24, 21, .92), rgba(6, 10, 8, .78));
  box-shadow: inset 0 1px rgba(255, 255, 255, .035), 0 20px 55px rgba(0, 0, 0, .16);
}

.ac-price-card--popular {
  border-color: rgba(110, 229, 0, .88);
  background: linear-gradient(145deg, rgba(24, 35, 28, .96), rgba(7, 12, 9, .86));
  box-shadow: 0 0 0 1px rgba(110, 229, 0, .12), 0 24px 70px rgba(67, 154, 0, .14);
}

.ac-price-card__badge {
  top: 13px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 6px;
}

.ac-price-card__name { font-size: 14px; }
.ac-price-card__price { margin-top: 14px; font-size: clamp(32px, 2.25vw, 46px); font-weight: 700; letter-spacing: -.04em; }
.ac-price-card__caption { margin-top: 14px; font-size: 13px; }
.ac-price-card li { margin-bottom: 11px; font-size: 13px; }
.ac-price-card .ac-button { right: 26px; bottom: 26px; left: 26px; }

.ac-pricing__assurances li {
  gap: 14px;
  margin-bottom: 23px;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
}

.ac-pricing__assurances .dashicons {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  place-items: center;
  border: 1px solid rgba(110, 229, 0, .34);
  border-radius: 11px;
  background: rgba(110, 229, 0, .05);
}

/* FAQ */
.ac-faq { background: #f4f7f4; }

.ac-faq__grid {
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  gap: clamp(60px, 9vw, 170px);
}

.ac-faq__intro { top: 120px; }
.ac-faq__intro > p:not(.ac-kicker) { max-width: 470px; color: #647068; font-size: 16px; }
.ac-faq__intro .ac-button { margin-top: 22px; }

.ac-faq__items {
  border-top: 1px solid rgba(17, 43, 24, .15);
}

.ac-faq__item {
  border: 0;
  border-bottom: 1px solid rgba(17, 43, 24, .15);
  border-radius: 0;
  background: transparent;
}

.ac-faq__item[open] {
  border-color: rgba(74, 170, 0, .35);
  background: rgba(255, 255, 255, .54);
}

.ac-faq__item summary {
  min-height: 82px;
  padding: 22px 22px 22px 0;
  font-size: clamp(16px, 1.28vw, 21px);
  letter-spacing: -.018em;
}

.ac-faq__item summary span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(58, 136, 0, .25);
  border-radius: 50%;
  color: #4aa900;
  font-size: 23px;
  line-height: 31px;
  text-align: center;
}

.ac-faq__item[open] summary { padding-left: 22px; }
.ac-faq__item > div { padding: 0 70px 24px 22px; }
.ac-faq__item p { color: #5e6961; font-size: 15px; line-height: 1.7; }

/* Final call to action */
.ac-final-cta {
  min-height: 300px;
  background: linear-gradient(110deg, #43aa0a 0%, #61d41a 42%, #8bea3b 100%);
}

.ac-final-cta::before {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(255, 255, 255, .16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .16) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000, transparent 68%);
  content: "";
}

.ac-final-cta__inner {
  min-height: 300px;
  grid-template-columns: 1.1fr .72fr;
  gap: 60px;
}

.ac-final-cta__copy { padding-left: 190px; }

.ac-final-cta h2 {
  max-width: 720px;
  font-size: clamp(36px, 3.2vw, 66px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .98;
  text-wrap: balance;
}

.ac-final-cta p { font-size: 16px; }

.ac-phone {
  bottom: -74px;
  left: max(4%, calc((100% - var(--ac-container)) / 2));
  width: 142px;
  height: 286px;
  border-width: 5px;
  border-radius: 29px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .35);
}

.ac-phone__screen { border-radius: 19px; }
.ac-phone__score { width: 72px; height: 72px; }

/* Footer and editorial pages */
.site-footer__top { padding-top: 78px; }
.site-footer__about p { font-size: 14px; line-height: 1.7; }
.site-footer .widget-title { font-size: 15px; }

@media (max-width: 1500px) {
  .ac-container { width: min(94%, var(--ac-container)); }
  .site-header__inner { gap: 22px; }
  .primary-navigation .menu { gap: 19px; }
  .site-header__actions .ac-button--outline { display: none; }
  .ac-hero__content { width: min(680px, 49%); }
  .ac-data-card--load { right: 37%; }
  .ac-final-cta__copy { padding-left: 170px; }
}

@media (max-width: 1280px) {
  .site-header__inner { min-height: 72px; }
  .menu-toggle { display: block; }
  .primary-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    margin: 0;
    padding: 10px 3% 22px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(4, 7, 6, .98);
    box-shadow: 0 22px 45px rgba(0, 0, 0, .25);
  }
  .primary-navigation.is-open { display: block; }
  .primary-navigation .menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 24px; }
  .primary-navigation li { border-bottom: 1px solid rgba(255, 255, 255, .07); }
  .primary-navigation a { display: block; padding: 14px 0; font-size: 14px; }
  .primary-navigation a::after { display: none; }
  .site-header__actions { margin-left: auto; }
  .ac-hero__content { width: 55%; }
  .ac-hero h1 { font-size: clamp(54px, 5.4vw, 70px); }
  .ac-data-card--load { display: none; }
  .ac-data-card--form { right: 4%; }
  .ac-data-card--team { right: 2%; }
  .ac-data-card--chart { right: 6%; }
  .ac-audience__grid { gap: 60px; }
  .ac-price-card { padding: 24px; }
  .ac-price-card .ac-button { right: 20px; bottom: 20px; left: 20px; }
}

@media (max-width: 1050px) {
  .ac-hero,
  .ac-hero__inner { min-height: 760px; }
  .ac-hero::before {
    background: linear-gradient(90deg, rgba(2, 4, 3, .99) 0%, rgba(2, 4, 3, .88) 48%, rgba(2, 4, 3, .32) 78%), linear-gradient(0deg, rgba(3, 8, 5, .82), transparent 52%);
  }
  .ac-hero__content { width: 62%; }
  .ac-hero h1 { font-size: clamp(50px, 6.1vw, 66px); }
  .ac-data-card--team,
  .ac-data-card--chart { display: none; }
  .ac-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ac-audience__grid { grid-template-columns: 1fr; }
  .ac-audience__copy { max-width: 680px; }
  .ac-audience__visual { padding-right: 45px; }
  .ac-pricing__layout { grid-template-columns: 1fr; }
  .ac-pricing__assurances { display: flex; flex-wrap: wrap; gap: 20px 32px; }
  .ac-pricing__assurances li { margin: 0; }
  .ac-faq__grid { grid-template-columns: 1fr; gap: 48px; }
  .ac-faq__intro { position: static; }
  .ac-faq__intro > p:not(.ac-kicker) { max-width: 650px; }
  .ac-final-cta__inner { grid-template-columns: 1fr 290px; }
  .ac-final-cta__copy { padding-left: 150px; }
}

@media (max-width: 760px) {
  .ac-container { width: min(100% - 30px, var(--ac-container)); }
  .ac-section { padding: 70px 0; }
  .ac-section--compact { padding: 62px 0; }
  .ac-title { font-size: clamp(34px, 10.2vw, 45px); }
  .ac-lead { font-size: 15px; }
  .site-header__inner { min-height: 66px; }
  .custom-logo { max-width: 190px; max-height: 40px; }
  .ac-wordmark { font-size: 16px; }
  .ac-wordmark__mark { font-size: 26px; }
  .site-header__actions { display: none; }
  .primary-navigation { padding-inline: 15px; }
  .primary-navigation .menu { grid-template-columns: 1fr; }
  .ac-hero,
  .ac-hero__inner { min-height: 790px; }
  .ac-hero__image {
    object-position: 69% center;
    opacity: .72;
    transform: scale(1.05);
  }
  .ac-hero::before {
    background: linear-gradient(90deg, rgba(2, 4, 3, .96), rgba(2, 4, 3, .44)), linear-gradient(0deg, rgba(2, 4, 3, .99) 5%, rgba(2, 4, 3, .72) 48%, transparent 83%);
  }
  .ac-hero__canvas { opacity: .28; mask-image: none; }
  .ac-hero__inner { align-items: flex-end; padding-top: 100px; padding-bottom: 42px; }
  .ac-hero__content { width: 100%; }
  .ac-hero__eyebrow { margin-bottom: 16px; font-size: 10px; letter-spacing: .09em; }
  .ac-hero h1 { max-width: 600px; font-size: clamp(40px, 12.5vw, 56px); line-height: .91; }
  .ac-hero h1 .ac-accent { margin-top: 9px; }
  .ac-hero__description { max-width: 520px; margin-top: 20px; font-size: 15px; line-height: 1.55; }
  .ac-hero__actions { align-items: flex-start; flex-direction: column; gap: 11px; margin-top: 24px; }
  .ac-hero__benefits { grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 25px; padding-top: 20px; }
  .ac-mini-benefit:last-child { display: none; }
  .ac-data-card { display: none; }
  .ac-trust__inner { gap: 20px; padding: 25px 0; }
  .ac-trust__logos { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
  .ac-trust__logo { justify-content: flex-start; font-size: 11px; }
  .ac-trust__logo span:first-child { width: 32px; height: 35px; }
  .ac-feature-grid { grid-template-columns: 1fr; }
  .ac-feature-card { min-height: 0; padding: 25px; }
  .ac-feature-card h3 { font-size: 19px; }
  .ac-steps-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 20px; }
  .ac-steps-grid::before { display: none; }
  .ac-step__icon { width: 68px; height: 68px; box-shadow: 0 0 0 8px #0d120f; }
  .ac-audience { background-size: 50% 100%; }
  .ac-audience__visual { padding-right: 0; padding-bottom: 112px; }
  .ac-audience__image { min-height: 360px; border-radius: 18px; }
  .ac-quote { right: 10px; bottom: 0; width: calc(100% - 20px); padding: 25px; }
  .ac-price-grid { grid-template-columns: 1fr; }
  .ac-price-card { min-height: 410px; }
  .ac-pricing__bg { object-position: 73% center; }
  .ac-pricing::after { background: linear-gradient(90deg, rgba(5, 8, 6, .99), rgba(5, 8, 6, .78)); }
  .ac-pricing__assurances { display: grid; gap: 18px; }
  .ac-faq__item summary { min-height: 72px; padding-right: 8px; }
  .ac-faq__item[open] summary { padding-left: 15px; }
  .ac-faq__item > div { padding: 0 48px 22px 15px; }
  .ac-final-cta { padding: 58px 0; }
  .ac-final-cta__inner { min-height: 0; grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .ac-final-cta__copy { padding-left: 0; }
  .ac-final-cta__copy p { margin-inline: auto; }
  .ac-final-cta h2 { font-size: clamp(36px, 10vw, 48px); }
  .ac-phone { display: none; }
}

@media (max-width: 440px) {
  .ac-hero,
  .ac-hero__inner { min-height: 760px; }
  .ac-hero h1 { font-size: clamp(38px, 12vw, 48px); }
  .ac-hero__benefits { grid-template-columns: 1fr; }
  .ac-mini-benefit:nth-child(2) { display: none; }
  .ac-hero__actions .ac-button { width: 100%; }
  .ac-steps-grid { grid-template-columns: 1fr; }
  .ac-step p { max-width: 310px; }
}

@media (prefers-reduced-motion: reduce) {
  .ac-hero__image,
  .ac-pricing__bg { transform: scale(1.045); }
}

/* ========================================================================== 
   AssistCoach 1.3 — live hero, testimonials and finishing details
   ========================================================================== */

#features,
#how-it-works,
#audience,
#testimonials,
#pricing,
#faq { scroll-margin-top: 92px; }

.ac-hero__title {
  transition: opacity .26s ease, transform .26s ease, filter .26s ease;
}

.ac-hero__title > span {
  display: block;
  white-space: nowrap;
}

.ac-hero__title.is-changing {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(10px);
}

.ac-data-card__meter {
  display: block;
  width: 100%;
  height: 4px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, .10);
}

.ac-data-card__meter i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4fbd00, var(--ac-lime-soft));
  box-shadow: 0 0 13px rgba(110, 229, 0, .45);
  transition: width .75s cubic-bezier(.2, .7, .2, 1);
}

.ac-ring {
  --ac-zone: var(--ac-lime);
  position: relative;
  isolation: isolate;
  border: 0;
  background: conic-gradient(var(--ac-zone) var(--ac-score-fill, 86%), rgba(255, 255, 255, .10) 0);
  box-shadow: 0 0 25px color-mix(in srgb, var(--ac-zone) 14%, transparent);
  transform: none;
  transition: filter .5s ease, box-shadow .5s ease;
}

.ac-ring::before {
  position: absolute;
  z-index: -1;
  inset: 7px;
  border-radius: inherit;
  background: #0c120f;
  content: "";
}

.ac-ring span { transform: none; }
.ac-ring[data-zone="watch"] { --ac-zone: #ffb800; }
.ac-ring[data-zone="danger"] { --ac-zone: #ff4c4c; }

.ac-sparkline i {
  transition: height .8s cubic-bezier(.2, .72, .25, 1), background .35s ease;
}

.ac-audience__visual {
  padding-right: 0;
}

.ac-audience__image {
  height: clamp(480px, 37vw, 680px);
  min-height: 0;
  object-position: center 57%;
}

/* Testimonials */
.ac-testimonials {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(19, 46, 25, .08);
  background:
    radial-gradient(circle at 82% 10%, rgba(110, 229, 0, .10), transparent 27%),
    linear-gradient(180deg, #f1f5f1, #e9efea);
}

.ac-testimonials::before {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image: linear-gradient(rgba(26, 60, 34, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 60, 34, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
  pointer-events: none;
  content: "";
}

.ac-testimonials .ac-container { position: relative; }

.ac-testimonials__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 48px;
}

.ac-testimonials__heading > p {
  max-width: 520px;
  margin: 0 0 4px;
  color: #627066;
  font-size: 16px;
  line-height: 1.65;
}

.ac-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 30px);
}

.ac-testimonial-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(28px, 2.2vw, 40px);
  border: 1px solid rgba(18, 52, 26, .10);
  border-radius: 22px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 18px 50px rgba(12, 35, 18, .07), inset 0 1px #fff;
}

.ac-testimonial-card > * { position: relative; z-index: 1; }

.ac-testimonial-card__quote {
  display: block;
  height: 48px;
  color: var(--ac-lime-deep);
  font-size: 66px;
  font-weight: 900;
  line-height: .9;
}

.ac-testimonial-card blockquote {
  margin: 16px 0 28px;
  color: #303b33;
  font-size: 16px;
  line-height: 1.72;
}

.ac-testimonial-card__author {
  position: absolute;
  right: clamp(28px, 2.2vw, 40px);
  bottom: clamp(28px, 2.2vw, 40px);
  left: clamp(28px, 2.2vw, 40px);
  display: flex;
  align-items: center;
  gap: 13px;
}

.ac-testimonial-card__author .ac-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  background: linear-gradient(145deg, #18321f, #0d1710);
}

.ac-testimonial-card__author strong { display: block; font-size: 14px; }
.ac-testimonial-card__author small { display: block; color: #6b776e; font-size: 11px; }

/* Back to top */
.ac-back-to-top {
  position: fixed;
  z-index: 220;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(8, 20, 11, .16);
  border-radius: 50%;
  background: var(--ac-lime);
  color: #071100;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  box-shadow: 0 14px 35px rgba(40, 100, 0, .24);
  pointer-events: none;
  transform: translateY(16px) scale(.86);
  transition: opacity .24s ease, transform .24s ease, background .2s ease;
}

.ac-back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ac-back-to-top:hover,
.ac-back-to-top:focus-visible {
  background: #87f323;
  transform: translateY(-3px) scale(1.03);
}

a[aria-disabled="true"] { cursor: default; }

/* Keep full navigation on compact laptops; switch to menu only below 1120px. */
@media (min-width: 1121px) and (max-width: 1280px) {
  .site-header__inner { min-height: 76px; gap: 18px; }
  .menu-toggle { display: none; }
  .primary-navigation {
    position: static;
    display: block;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .primary-navigation .menu { display: flex; grid-template-columns: none; gap: 15px; }
  .primary-navigation li { border: 0; }
  .primary-navigation a { display: block; padding: 12px 0; font-size: 11px; }
  .primary-navigation a::after { display: block; }
  .site-header__actions { margin-left: 0; }
  .site-header__actions .ac-button { padding-inline: 14px; font-size: 11px; }
}

@media (max-width: 1050px) {
  .ac-testimonials__heading { grid-template-columns: 1fr; gap: 20px; }
  .ac-testimonial-grid { grid-template-columns: 1fr 1fr; }
  .ac-testimonial-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .ac-hero__title > span { white-space: normal; }
  .ac-audience__visual { padding-bottom: 0; }
  .ac-audience__image { height: 390px; object-position: center 58%; }
  .ac-testimonials__heading { margin-bottom: 32px; }
  .ac-testimonial-grid { grid-template-columns: 1fr; }
  .ac-testimonial-card,
  .ac-testimonial-card:last-child { min-height: 310px; grid-column: auto; }
  .ac-back-to-top { right: 15px; bottom: 15px; width: 48px; height: 48px; }
}

@media (max-width: 440px) {
  .ac-audience__image { height: 340px; }
  .ac-testimonial-card { min-height: 340px; padding: 25px; }
  .ac-testimonial-card__author { right: 25px; bottom: 25px; left: 25px; }
}

@media (prefers-reduced-motion: reduce) {
  .ac-hero__title,
  .ac-data-card__meter i,
  .ac-sparkline i,
  .ac-back-to-top { transition: none; }
}
