/* ═══════════════════════════════════════════
   COMMON.CSS — Mobile-First Base Styles
   ═══════════════════════════════════════════ */

/* ── Pay Trust Badge ── */
.pay-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pay-trust img {
  height: 20px;
  width: auto;
  opacity: 0.85;
}

/* ── Site Footer ── */
.site-footer {
  background: #090707;
  padding: 40px 16px 32px;
  text-align: center;
}
.site-footer .footer-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.site-footer .footer-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer .footer-pay img {
  height: 26px;
  width: auto;
  opacity: 0.85;
}
.site-footer .footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}
.site-footer .footer-insta,
.site-footer .footer-tg {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}
.site-footer .footer-insta:hover,
.site-footer .footer-tg:hover { color: #fff; }
.site-footer .footer-sep {
  color: rgba(255,255,255,0.3);
}
.site-footer .footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
}
.site-footer .footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}
.site-footer .footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

@font-face {
  font-family: "AGREV";
  src:
    url("../fonts/AGReverance.woff2") format("woff2"),
    url("../fonts/AGReverance.woff")  format("woff"),
    url("../fonts/AGReverance.ttf")   format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ── */
:root {
  --color-red: #dc2626;
  --color-red-dark: #761414;
  --color-red-bg: rgba(220, 38, 38, 0.05);
  --color-red-bg-10: rgba(220, 38, 38, 0.1);
  --color-red-border: rgba(220, 38, 38, 0.3);
  --color-red-border-20: rgba(220, 38, 38, 0.2);
  --color-red-40: rgba(220, 38, 38, 0.4);
  --color-white: #fff;
  --color-gray: rgba(161, 161, 161, 1);
  --color-light: rgba(245, 245, 245, 1);
  --color-light-80: rgba(245, 245, 245, 0.8);
  --color-white-70: rgba(255, 255, 255, 0.7);
  --color-white-05: rgba(255, 255, 255, 0.05);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-dark-border: #2a2a2a;
  --font-primary: "Montserrat", sans-serif;
  --font-accent: "Inter", sans-serif;
  --side-pad: 16px;
  --section-gap: 80px;
  --transition-fast: 0.2s ease;
  --transition-med: 0.3s ease;
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.main-content-container {
  background: linear-gradient(185.89deg, #460606 0%, #090707 15.03%);
  overflow-x: hidden;
}

.wrap {
  max-width: 1220px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */

ul.navbar-nav {
  align-items: flex-end;
  padding-right: var(--side-pad);
}

.main-content-container .nav-link,
.main-content-container .nav-link.active {
  color: var(--color-white);
  transition: color var(--transition-fast);
}

.main-content-container .nav-link:hover,
.main-content-container .nav-link:focus-visible {
  color: var(--color-red);
}

.main-content-container .nav-link.active {
  color: var(--color-red);
}

.main-content-container button.navbar-toggler,
.main-content-container button.navbar-toggler.collapsed {
  border: none;
  box-shadow: none;
  padding: 14px var(--side-pad);
  margin-left: auto;
  position: relative;
  z-index: 1050;
}

/* ── Mobile menu panel ── */
@media screen and (max-width: 991px) {
  .navbar {
    padding: 0;
    background: transparent;
  }

  .wrap.d-flex {
    flex-direction: column;
    align-items: stretch;
  }

  #navbarNav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: #0d0505;
    padding: 0 var(--side-pad);
    display: flex !important;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 0.28s ease,
      transform 0.28s ease;
    z-index: 1040;
    padding-top: 80px;
  }

  #navbarNav.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  ul.navbar-nav {
    align-items: flex-start;
    padding: 0;
    gap: 0;
  }

  .main-content-container .nav-link {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    width: 100%;
    display: block;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition:
      color var(--transition-fast),
      padding-left var(--transition-fast);
  }

  li.nav-item:last-child .nav-link {
    border-bottom: none;
  }

  .main-content-container .nav-link:hover {
    color: #fff;
    padding-left: 6px;
  }

  .main-content-container .nav-link.active {
    color: var(--color-red);
  }
}

/* ═══════════════════════════════════════════
   FRAME 1 — Hero
   ═══════════════════════════════════════════ */
.frame-1-container {
  position: relative;
  overflow: hidden;
}

.frame-1-decor {
  display: none;
  position: absolute;
  left: 0;
  top: 0%;
  width: 340px;
  pointer-events: none;
  user-select: none;
  width: 552.84px;
  height: 552.84px;
}

.frame-1-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.frame-1-title-row {
  display: block;
  line-height: 1;
}

.frame-1-title-row--left {
  text-align: left;
}

.frame-1-title-row--right {
  text-align: left;
}

.frame-1-title-accent-1 {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
}

.frame-1-title-main {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.frame-1-title-accent-2 {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.main-content-container .frame-1-img-2 {
  padding: var(--side-pad) 18px 0 var(--side-pad);
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.frame-1-btn-wrapper {
  padding-top: 18px;
}

.frame-1-btn {
  background: linear-gradient(
    90deg,
    var(--color-red) 0%,
    var(--color-red-dark) 100%
  );
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 5px;
  color: var(--color-white);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    opacity var(--transition-fast);
}

.frame-1-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

.frame-1-btn:active {
  transform: translateY(0);
  opacity: 0.9;
}

.frame-1-txt-wrapper {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-white);
}

/* ═══════════════════════════════════════════
   FRAME 2 — What's Inside
   ═══════════════════════════════════════════ */
.frame-2-container {
  margin-top: var(--section-gap);
  display: flex;
  flex-direction: column;
  position: relative;
}

.frame-2-decor-left {
  display: none;
  position: absolute;
  left: -22%;
  top: 50%;
  transform: translateY(-50%);
  width: 978.737px;
  height: 978.737px;
  pointer-events: none;
  user-select: none;
}

.frame-2-decor-right {
  display: none;
  position: absolute;
  right: -300px;
  top: 100%;
  transform: translateY(-50%);
  width: 799.997px;
  height: 799.997px;
  border-radius: 23761500px;
  opacity: 0.9987;
  background: rgba(220, 38, 38, 0.2);
  filter: blur(150px);
  pointer-events: none;
}

.frame-2-block {
  border: 0.71px solid var(--color-gray);
  border-radius: 5px;
  padding: 0 8px 0 var(--side-pad);
  margin: 0 var(--side-pad);
  padding: 40px 16px;
}

h2.frame-2-heading {
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 3.6px;
  text-transform: uppercase;
  color: var(--color-gray);
  position: relative;
  padding-left: 60px;
}

h2.frame-2-heading::before {
  content: "";
  left: 0;
  top: 50%;
  bottom: 0;
  height: 1px;
  width: 48px;
  background: linear-gradient(180deg, #dc2626 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  transform: translateY(-50%);
}

.frame-2-heading-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.frame-2-list {
  margin-top: 32px;
  list-style: none;
  padding: 0;
  counter-reset: none;
}

.frame-2-list-text {
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-gray);
}

.frame-2-list-label {
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  color: var(--color-red);
  border: 0.71px solid var(--color-red-border);
  background: var(--color-red-bg);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

li.frame-2-list-elem {
  display: flex;
  column-gap: 8px;
  padding-bottom: 24px;
  align-items: center;
}

.frame-2-info-elem-label,
.frame-5-info-elem-label {
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.07px;
  color: var(--color-red);
}

.frame-2-info-elem-text,
.frame-5-info-elem-text {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-gray);
}

.frame-2-info-elem,
.frame-5-info-elem {
  display: flex;
  flex-direction: column;
}

.frame-2-info-container,
.frame-5-info-container {
  display: flex;
  column-gap: 28px;
}

.frame-2-cta-card {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background: #cc0000 url(../img/section/bg-card.jpg) center / cover no-repeat;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 24px var(--side-pad) var(--side-pad);
  min-height: 100%;
  min-height: 500px;
}

.frame-2-cta-percent {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  margin-top: 8px;
}

.frame-2-cta-title {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 8px 0 12px;
}

/* ═══════════════════════════════════════════
   FRAME 3 — Checklist Steps
   ═══════════════════════════════════════════ */
.frame-3-container {
  margin-top: var(--section-gap);
}

.frame-3-heading {
  padding: 0 var(--side-pad);
}

.frame-3-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  max-width: 745px;
  width: 100%;
}

.frame-3-title-row {
  display: block;
  line-height: 1;
}

.frame-3-title-row--left {
  text-align: left;
}

.frame-3-title-row--right {
  text-align: left;
}

.frame-3-title-accent-1 {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
}

.frame-3-title-main {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.frame-3-title-accent-2 {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.frame-3-txt {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  padding: 8px var(--side-pad) 0;
}

.frame-3-steps {
  margin-top: 24px;
  padding: 0 var(--side-pad);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.frame-3-step {
  display: flex;
  flex-direction: column;
  width: 175px;
  height: 293px;
  justify-content: space-between;
  transition: transform var(--transition-fast);
}

.frame-3-step:hover {
  transform: translateY(-4px);
}

.frame-3-step-number {
  width: 56px;
  height: 56px;
  background: var(--color-red);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-accent);
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: -0.45px;
  color: black;
}

/* First step: border outline */
.frame-3-step.step-01 {
  border: 1px solid var(--color-red);
}

.frame-3-upper-txt {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-light);
  height: 50%;
  margin: 0;
}

.frame-3-bottom-txt {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-white-70);
  margin: 0;
}

.frame-3-step-bottom {
  padding: 0 8px 16px;
  height: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.frame-3-red-bg {
  background: var(--color-red-40);
}

.frame-3-step-3-bg {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/frame-3-step-3-bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.frame-3-step-4-bg {
  position: relative;
  z-index: 1;
}

.frame-3-step-4-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/frame-3-step-4-bg.webp);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  z-index: -1;
}

.frame-3-step-6-bg {
  position: relative;
  z-index: 1;
  background: rgba(94, 20, 20, 1);
}

.frame-3-step-6-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../img/frame-3-step-6-bg.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* ═══════════════════════════════════════════
   FRAME 4 — CTA Image
   ═══════════════════════════════════════════ */
.frame-4-container {
  margin-top: 40px;
  background: url(../img/section/four-bg.png) center / cover no-repeat;
  overflow: hidden;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.navbar-collapse {
  align-items: baseline;
}

.frame-4-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px var(--side-pad);
  position: relative;
}

.frame-4-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 428px;
  width: 100%;
  align-items: center;
  text-align: center;
}

.frame-4-percent {
  color: #c00;
  font-size: 130px;
  font-style: normal;
  font-weight: 800;
  line-height: 73.846%;
  margin-bottom: 20px;
}

.frame-4-title {
  color: #000;
  text-align: center;
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%;
  text-transform: uppercase;
}

.frame-4-label {
  display: flex;
  padding: 2px 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 133.333%;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.1);
  max-width: 338px;
  width: 100%;
  margin: 0 auto 86px;
}

.frame-4-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}

.frame-4-old-price {
  color: rgba(0, 0, 0, 0.4);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
  text-decoration: line-through;
}

.frame-4-new-price {
  color: #c00;
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0.352px;
}

.frame-4-btn {
  display: flex;
  height: 50px;
  padding: 10px 54px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: var(--color-red);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--transition-fast);
  width: 100%;
}

.frame-4-btn:hover {
  opacity: 0.85;
}

.frame-4-elements {
  display: none;
  flex-shrink: 0;
  position: absolute;
  right: -20%;
  width: 872.582px;
  transform: scale(1.4);
}
.frame-4-elements img {
  width: 100%;
}

/* ═══════════════════════════════════════════
   FRAME 5 — About Author
   ═══════════════════════════════════════════ */
.frame-5-title,
.frame-5-heading-txt,
.frame-5-img-2,
.frame-5-txt-block,
.frame-5-info-container {
  padding: 0 var(--side-pad);
}

.frame-5-title {
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin: 0;
  flex-direction: column;
  align-items: end;
  width: fit-content;
}

.frame-5-title-accent {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: normal;
}

.frame-5-title-main {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 50px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

.frame-5-img-1 {
  padding-top: 24px;
}
.frame-5-container .wrap {
  position: relative;
}
.frame-5-container {
  position: relative;
}
.five-decor-block {
  position: absolute;
  right: 18%;
  top: -22%;
  transform: translateY(-50%);
  width: 799.997px;
  height: 799.997px;
  border-radius: 23761500px;
  opacity: 0.9987;
  background: rgba(220, 38, 38, 0.2);
  filter: blur(150px);
  pointer-events: none;
}
.frame-5-title {
  padding-top: 24px;
}
.frame-5-name {
  padding: 0 16px;
}

.five-decor {
  position: absolute;
  z-index: 0;
  bottom: -29%;
  left: -29%;
}

@media (max-width: 768px) {
  .five-decor {
    display: none;
  }
  .five-decor-block {
    display: none;
  }
}

.frame-5-heading-txt {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 23px;
  padding-top: 16px;
}

.frame-5-img-2 {
  padding: 32px var(--side-pad);
}

.frame-5-name {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 23px;
}

.frame-5-txt-1 {
  border-left: 2px solid rgba(204, 0, 0, 1);
  padding-left: 10px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  margin: 0;
}

.frame-5-txt-2 {
  border-left: 2px solid rgba(204, 0, 0, 0.5);
  padding-left: 10px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
}

.frame-5-info-container {
  margin-top: 74px;
  justify-content: space-between;
}

.frame-5-info-elem-label {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: 0.35px;
}

/* ═══════════════════════════════════════════
   FRAME 6 — FAQ
   ═══════════════════════════════════════════ */
.frame-6-heading-container {
  margin-top: var(--section-gap);
  padding: 0 var(--side-pad);
}

.frame-6-heading-1 {
  background: var(--color-red-bg-10);
  color: var(--color-red);
  border: 0.71px solid var(--color-red-border-20);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  width: fit-content;
  padding: 10px 13px 8px 17px;
}

.frame-6-title {
  margin: 0;
}

.frame-6-title-accent {
  display: block;
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: normal;
}

.frame-6-title-main {
  display: block;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
}

.faq-accordion {
  padding: 0 var(--side-pad);
}

#faqAccordion {
  --bs-accordion-bg: none;
  --bs-accordion-border-color: none;
  --bs-accordion-border-width: none;
  --bs-accordion-border-radius: none;
}

.accordion-body {
  color: var(--color-white);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 16px 24px 64px;
}

.accordion-item {
  background: linear-gradient(
    90deg,
    var(--color-white-05) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  border-left: 3.54px solid var(--color-white-20);
  margin-top: 10px;
  transition: border-color var(--transition-fast);
}

.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-left-color: var(--color-red);
}

.accordion-button {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.accordion-button::after {
  display: none;
}

span.acc-number {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background: var(--color-red-bg-10);
  border: 0.71px solid var(--color-red-border);
  color: var(--color-red);
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.15px;
  flex-shrink: 0;
  margin-left: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  span.acc-number {
    margin-left: 8px;
  }
  .faq-accordion {
    margin-top: 40px;
  }
}

.acc-icon {
  color: var(--color-red);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--transition-med);
  flex-shrink: 0;
  margin-right: 16px;
}

.accordion-button:not(.collapsed) .acc-icon {
  transform: rotate(45deg);
}

span.acc-title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-light);
  flex: 1;
  text-align: left;
}

.accordion-button:not(.collapsed) {
  color: initial;
  background-color: initial;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

/* ═══════════════════════════════════════════
   FRAME 7 — Reviews / Testimonials
   ═══════════════════════════════════════════ */
.frame-7-heading {
  display: flex;
  flex-direction: column;
  padding: 0 var(--side-pad);
  margin-top: var(--section-gap);
  align-items: center;
}

.frame-7-heading-txt {
  background: var(--color-red-bg-10);
  color: var(--color-red);
  border: 0.71px solid var(--color-red-border-20);
  font-family: var(--font-accent);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  width: fit-content;
  padding: 10px 13px 8px 17px;
}

.frame-7-title {
  margin: 0;
}

.frame-7-title-accent {
  display: block;
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 64px;
  font-weight: 400;
  line-height: normal;
}

.frame-7-title-main {
  display: block;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  text-align: right;
}

.testimonial-wrap {
  padding: 0 var(--side-pad);
  margin-top: 40px;
}

.testimonial-card {
  border: 1px solid var(--color-dark-border);
  padding: 15px 16px;
  position: relative;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.2);
  height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--color-red-border);
}

.testimonial-card .card-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonial-card .client-name {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.44px;
  text-transform: uppercase;
  color: var(--color-light);
}

.testimonial-card .client-meta {
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--color-gray);
  padding-top: 5px;
}

.btn-chevron {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  flex-shrink: 0;
  background: var(--color-red-bg);
  border: 0.71px solid var(--color-red-border);
  cursor: pointer;
}

.btn-chevron:hover {
  background: rgba(139, 26, 26, 0.2);
}

.btn-chevron svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-red);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonial-quote {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.31px;
  color: var(--color-light-80);
  margin: 0;
}

.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12.7px;
  border: 0.71px solid var(--color-red-border-20);
  background: var(--color-red-bg-10);
  color: var(--color-red);
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  width: fit-content;
}

.result-badge .dot {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  flex-shrink: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.carousel-dots .dot.active {
  background: #e74c3c;
}

/* ═══════════════════════════════════════════
   FRAME 8 — Final CTA
   ═══════════════════════════════════════════ */
.frame-8-heading,
.frame-8-cta {
  padding: 0 var(--side-pad);
}

.frame-8-heading {
  margin-top: 100px;
}

.frame-8-heading-1 {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 100px;
  font-weight: 400;
  line-height: normal;
}

.frame-8-heading-2 {
  font-weight: 500;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
}

.frame-8-heading-3 {
  color: #c00;
  font-family: "AGREV", serif;
  font-size: 68px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}

.frame-8-cta {
  margin-top: 10px;
  padding: 0 var(--side-pad) 25px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.frame-8-cta-img-1,
.frame-8-cta-img-2 {
  display: none;
}

.frame-8-card {
  display: flex;
  width: 100%;
  height: 482px;
  padding: 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
  background: #cc0000 url(../img/section/bg-card.jpg) center / cover no-repeat;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
}

.frame-8-badge {
  display: flex;
  padding: 2px 10px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  width: fit-content;
}

.frame-8-card-title {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 60px;
  font-weight: 900;
  line-height: 130%;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 12px;
}

.frame-8-card-bottom {
  width: 100%;
}

.frame-8-card-desc {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  max-width: 370px;
}

.frame-8-price {
  display: flex;
  gap: 26px;
  align-items: baseline;
  gap: 26px;
}

.frame-8-old-price {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.15px;
  text-decoration: line-through;
}

.frame-8-new-price {
  color: #fff;
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 900;
  line-height: 48px;
  letter-spacing: 0.352px;
  margin-bottom: 20px;
}

.frame-8-card-btn {
  display: flex;
  height: 50px;
  padding: 10px 54px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border-radius: 5px;
  background: #000;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition-fast);
  width: 100%;
  text-decoration: none;
}

.frame-8-card-btn:hover {
  opacity: 0.85;
}

.frame-8-cta-2 {
  margin-top: 8px;
}

/* ═══════════════════════════════════════════
   Back to Top Button
   ═══════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: var(--side-pad);
  z-index: 99;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--color-red-bg);
  border: 0.71px solid var(--color-red-border);
  color: var(--color-red);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-med);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--color-red-bg-10);
  border-color: rgba(220, 38, 38, 0.5);
}

/* ═══════════════════════════════════════════
   Accessibility
   ═══════════════════════════════════════════ */
:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

/* Skip-link (optional, add <a class="skip-link" href="#guide">Перейти до контенту</a> as first child of body) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-red);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

