:root {
  --ga-red: #e11f26;
  --ga-red-dark: #b31217;
  --ga-ink: #15191d;
  --ga-text: #25313b;
  --ga-muted: #62717d;
  --ga-border: #d9e0e6;
  --ga-surface: #ffffff;
  --ga-soft: #f4f6f8;
  --ga-max: 1120px;
  --ga-radius: 8px;
  --ga-shadow: 0 18px 40px rgba(16, 24, 32, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ga-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body {
  margin: 0;
  background: var(--ga-soft);
}

img,
video {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  background: var(--ga-surface);
  border-bottom: 1px solid var(--ga-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 40px, var(--ga-max));
  min-height: 76px;
  margin: 0 auto;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 88px;
}

.site-header__phone {
  color: var(--ga-ink);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  background: var(--ga-surface);
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
  width: min(100% - 40px, var(--ga-max));
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--ga-red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: var(--ga-ink);
  font-size: clamp(38px, 6vw, 68px);
  line-height: 0.95;
}

.hero__summary {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--ga-text);
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--ga-red);
  color: #ffffff;
}

.button--primary:hover {
  background: var(--ga-red-dark);
}

.button--secondary {
  border-color: var(--ga-border);
  background: #ffffff;
  color: var(--ga-ink);
}

.hero__panel {
  padding: 28px;
  background: var(--ga-ink);
  border-radius: var(--ga-radius);
  color: #ffffff;
  box-shadow: var(--ga-shadow);
}

.hero__panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.15;
}

.lead-form {
  display: grid;
  gap: 12px;
}

.lead-form label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font: inherit;
}

.lead-form textarea {
  min-height: 96px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.lead-form button {
  margin-top: 4px;
}

.section {
  padding: 72px 0;
}

.section--white {
  background: var(--ga-surface);
}

.section__inner {
  width: min(100% - 40px, var(--ga-max));
  margin: 0 auto;
}

.section__header {
  max-width: 760px;
  margin-bottom: 32px;
}

.section__header h2 {
  margin: 0;
  color: var(--ga-ink);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.section__header p {
  margin: 14px 0 0;
  color: var(--ga-muted);
  font-size: 18px;
}

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

.feature {
  min-height: 180px;
  padding: 24px;
  background: var(--ga-surface);
  border: 1px solid var(--ga-border);
  border-radius: var(--ga-radius);
}

.feature h3 {
  margin: 0 0 10px;
  color: var(--ga-ink);
  font-size: 20px;
  line-height: 1.2;
}

.feature p {
  margin: 0;
  color: var(--ga-muted);
}

.proof-band {
  background: var(--ga-ink);
  color: #ffffff;
}

.proof-band .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.quote {
  margin: 0;
  font-size: 22px;
  line-height: 1.35;
}

.quote cite {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: var(--ga-surface);
  border: 1px solid var(--ga-border);
  border-radius: var(--ga-radius);
}

.cta-strip h2 {
  margin: 0;
  color: var(--ga-ink);
  font-size: 28px;
  line-height: 1.1;
}

.cta-strip p {
  margin: 8px 0 0;
  color: var(--ga-muted);
}

.site-footer {
  padding: 28px 0;
  background: var(--ga-ink);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100% - 40px, var(--ga-max));
  margin: 0 auto;
}

.video-wrapper {
  width: min(100%, var(--video-wrapper-max-width, 900px));
  margin: 0 auto;
  color: var(--ga-text);
}

.video-wrapper__media {
  overflow: hidden;
  background: #101820;
  border: 1px solid rgba(16, 24, 32, 0.12);
  border-radius: var(--ga-radius);
  box-shadow: var(--ga-shadow);
}

.video-wrapper__media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #101820;
}

.video-wrapper__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.video-wrapper__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 4px;
  background: var(--ga-red);
  color: #ffffff;
  cursor: pointer;
  font: 800 15px/1.2 Arial, Helvetica, sans-serif;
  gap: 10px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 160ms ease, transform 160ms ease;
}

.video-wrapper__button:hover {
  background: var(--ga-red-dark);
}

.video-wrapper__button:focus-visible {
  outline: 3px solid rgba(225, 31, 38, 0.3);
  outline-offset: 3px;
}

.video-wrapper__button:active {
  transform: translateY(1px);
}

.video-wrapper__button-icon {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.video-wrapper__button-icon--document {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.video-wrapper__button-icon--document::before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 5px 0 currentColor, 0 10px 0 currentColor;
  content: "";
}

.video-wrapper__button-icon--subscribe {
  border: 2px dashed rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.video-wrapper__transcript {
  margin-top: 16px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 32, 0.1);
  border-radius: var(--ga-radius);
  box-shadow: 0 12px 28px rgba(16, 24, 32, 0.08);
  color: var(--ga-text);
  line-height: 1.6;
  white-space: pre-wrap;
}

.video-wrapper__transcript p {
  margin: 0;
}

@media (max-width: 860px) {
  .hero__inner,
  .proof-band .section__inner {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header__inner,
  .section__inner,
  .hero__inner,
  .site-footer__inner {
    width: min(100% - 32px, var(--ga-max));
  }

  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 16px 0;
  }

  .site-header__logo img {
    height: 76px;
  }

  .hero__inner,
  .section {
    padding: 48px 0;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__summary {
    font-size: 18px;
  }

  .hero__actions,
  .video-wrapper__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .video-wrapper__button {
    width: 100%;
  }
}
