    :root {
      --brand-red: #d50c1f;
      --text-dark: #333333;
      --text-body: #555555;
      --bg-light: #f8f8f8;
      --bg-utility: #fafafa;
      --border: #ececec;
      --footer-bg: #333333;
      --white: #ffffff;
      --container: 1408px;
      --radius: 10px;
      --shadow: 0 10px 25px rgba(0,0,0,0.08);
      --shadow-soft: 0 6px 14px rgba(0,0,0,0.08);
    }
    *, *::before, *::after { box-sizing: border-box; }
    html, body {
      margin: 0; padding: 0;
      font-family: "Montserrat", "Arial", sans-serif;
      color: var(--text-body);
      background: var(--white);
    }
    a { color: inherit; text-decoration: none; }
    img, video { max-width: 100%; display: block; }
    .container {
      width: min(var(--container), calc(100% - 2rem));
      margin: 0 auto;
    }

    /* ===== HEADER ===== */
    .brand-header { background: var(--white); border-bottom: 1px solid var(--border); }
    .brand-header__inner {
      min-height: 112px;
      display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    }
    .brand-logo { width: 172px; height: auto; }
    .brand-copy h1 {
      margin: 0; color: var(--text-dark);
      font-size: clamp(20px, 2.6vw, 31px); font-weight: 700; line-height: 1.15;
    }
    .brand-copy p { margin: 0.35rem 0 0; color: #777; font-size: 14px; }
    .top-backline {
      background: var(--brand-red);
      box-shadow: 0 2px 0 rgba(0,0,0,0.1);
      position: relative;
      z-index: 3;
    }
    .top-backline__inner {
      min-height: 54px;
      display: flex;
      align-items: center;
    }
    .backline-btn {
      display: flex;
      align-items: center;
      min-height: 54px;
      padding: 0 1rem;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      border-radius: 0;
      cursor: pointer;
    }
    .backline-btn:hover {
      background: rgba(255,255,255,0.13);
    }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      height: 42px; border-radius: var(--radius); border: 1px solid transparent;
      padding: 0 1.05rem; font-size: 11px;
      text-transform: uppercase; letter-spacing: 0.8px;
      cursor: pointer; font-family: inherit; font-weight: 700;
      transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease, border-color 140ms ease;
    }
    .btn-primary { background: var(--brand-red); border-color: var(--brand-red); color: var(--white); }
    .btn-primary:hover { background: #b7001a; box-shadow: 0 6px 18px rgba(213,12,31,0.3); transform: translateY(-1px); }
    .btn-lg { height: 50px; padding: 0 1.6rem; font-size: 12px; }

    /* ===== SECTIONS ===== */
    .section { padding: 64px 0; }
    .section.gray { background: var(--bg-light); }
    .section-title {
      margin: 0 0 1.4rem; color: var(--text-dark);
      font-size: clamp(24px, 2.2vw, 34px); font-weight: 600;
    }
    .section-title-marked {
      margin: 0; color: var(--text-dark);
      font-size: clamp(24px, 2.2vw, 36px); line-height: 1.2;
    }
    .section-title-marked::before { content: "|"; color: var(--brand-red); margin-right: 0.5rem; }

    /* ===== CLASS BADGES (design system) ===== */
    .class-badge {
      display: inline-flex; align-items: center; justify-content: center;
      min-height: 22px; border-radius: 8px;
      padding: 0.18rem 0.58rem; border: 1px solid transparent;
      font-size: 11px; font-weight: 700; letter-spacing: 0.25px; text-transform: uppercase;
    }
    .class-badge--classic { background: #f4f4f4; border-color: #dfdfdf; color: #5a5a5a; }
    .class-badge--expert { background: #fff3f4; border-color: #efb8bf; color: #c6192c; }
    .class-badge--professional { background: #262626; border-color: #262626; color: #fff; }
    .class-badge--detail {
      min-height: 52px; padding: 0.4rem 0.95rem; border: 0; border-radius: 8px; color: #fff;
      font-size: clamp(28px, 2.6vw, 52px); font-weight: 800; font-style: italic;
      line-height: 1; letter-spacing: 0.6px; text-transform: uppercase;
    }
    .class-badge--detail.class-badge--classic { background: var(--brand-red); }
    .class-badge--detail.class-badge--expert { background: #5a5a5a; }
    .class-badge--detail.class-badge--professional { background: #1f1f1f; }

    /* ===== PAGE HERO ===== */
    .page-hero-main {
      padding: 80px 0 72px;
      background: #0d0d0d;
      position: relative; overflow: hidden;
    }
    .page-hero-main::before {
      content: "";
      position: absolute; inset: 0;
      background-image: url("/assets/images/performance-classes/background.avif");
      background-size: cover;
      background-position: center;
      opacity: 0.52;
    }
    .page-hero-main::after {
      content: "";
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.28);
    }
    .hero-inner { position: relative; z-index: 1; }
    .hero-eyebrow {
      display: inline-block;
      color: rgba(255,255,255,0.72); font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1.25rem;
    }
    .page-hero-main h1 {
      margin: 0 0 1rem; color: #fff;
      font-size: clamp(40px, 6vw, 88px); font-weight: 900;
      line-height: 0.92; letter-spacing: -1.5px;
    }
    .hero-accent { color: var(--brand-red); }
    .page-hero-sub {
      margin: 0 0 2.5rem; color: rgba(255,255,255,0.6);
      font-size: clamp(15px, 1.3vw, 18px); line-height: 1.6; max-width: 560px;
    }
    /* ===== OVERVIEW TIER CARDS ===== */
    .tiers-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
    .tier-card {
      border: 1px solid var(--border); border-radius: 16px; background: #fff;
      overflow: hidden; display: flex; flex-direction: column;
      transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    }
    .tier-card:hover { transform: translateY(-6px); box-shadow: 0 28px 64px rgba(0,0,0,0.12); }
    .tier-card--professional { border-color: #282828; background: #1a1a1a; }
    .tier-card--professional:hover { box-shadow: 0 28px 64px rgba(0,0,0,0.38); }

    .tier-card-top { padding: 1.4rem 1.5rem 1rem; }
    .tier-card--classic .tier-card-top { background: #fafafa; }
    .tier-card--expert .tier-card-top { background: linear-gradient(135deg, #fff7f8 0%, #fff 100%); }
    .tier-card--professional .tier-card-top { background: transparent; border-bottom: 1px solid #252525; }

    .tier-card-level { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
    .tier-card--classic .tier-card-level { color: #aaa; }
    .tier-card--expert .tier-card-level { color: #c6192c; }
    .tier-card--professional .tier-card-level { color: #555; }

    .tier-card-name {
      font-size: clamp(26px, 2.5vw, 36px); font-weight: 900; font-style: italic;
      text-transform: uppercase; letter-spacing: 0.5px; line-height: 1; margin: 0 0 0.55rem;
    }
    .tier-card--classic .tier-card-name { color: var(--brand-red); }
    .tier-card--expert .tier-card-name { color: #5a5a5a; }
    .tier-card--professional .tier-card-name { color: #fff; }

    .tier-card-prefix {
      display: inline-block; font-size: 11px; font-weight: 600; padding: 0.2rem 0.55rem; border-radius: 6px;
    }
    .tier-card--classic .tier-card-prefix { background: rgba(213,12,31,0.08); color: var(--brand-red); }
    .tier-card--expert .tier-card-prefix { background: rgba(90,90,90,0.09); color: #5a5a5a; }
    .tier-card--professional .tier-card-prefix { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.6); }

    .tier-card-img {
      height: 210px; display: flex; align-items: center; justify-content: center;
      padding: 1.5rem; background: #fff;
    }
    .tier-card--professional .tier-card-img {
      background:
        radial-gradient(circle at 68% 52%, rgba(213,12,31,0.22) 0%, rgba(213,12,31,0) 58%),
        linear-gradient(135deg, #161616, #0d0d0d);
      border-bottom: 1px solid #242424;
    }
    .tier-card--professional .tier-card-img img {
      filter: brightness(1.1) contrast(1.14) drop-shadow(0 0 20px rgba(213,12,31,0.24));
    }
    .tier-card-img img { max-height: 178px; width: 100%; object-fit: contain; }

    .tier-card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .tier-card-tagline { font-size: 12px; font-weight: 700; line-height: 1.4; margin-bottom: 0.7rem; }
    .tier-card--classic .tier-card-tagline,
    .tier-card--expert .tier-card-tagline { color: var(--text-dark); }
    .tier-card--professional .tier-card-tagline { color: rgba(255,255,255,0.85); }

    .tier-card-desc { font-size: 12.5px; line-height: 1.65; margin-bottom: 1rem; }
    .tier-card--classic .tier-card-desc,
    .tier-card--expert .tier-card-desc { color: #666; }
    .tier-card--professional .tier-card-desc { color: rgba(255,255,255,0.45); }

    .tier-feats { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: 0.45rem; }
    .tier-feat { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 12px; line-height: 1.45; }
    .tier-feat-chk {
      width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
      display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700;
    }
    .tier-card--classic .tier-feat { color: var(--text-body); }
    .tier-card--classic .tier-feat-chk { background: rgba(213,12,31,0.1); color: var(--brand-red); }
    .tier-card--expert .tier-feat { color: var(--text-body); }
    .tier-card--expert .tier-feat-chk { background: rgba(90,90,90,0.1); color: #5a5a5a; }
    .tier-card--professional .tier-feat { color: rgba(255,255,255,0.65); }
    .tier-card--professional .tier-feat-chk { background: rgba(213,12,31,0.2); color: #ff8b95; }

    .tier-price-row {
      margin-top: auto; padding-top: 1rem;
      border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: flex-end;
    }
    .tier-card--professional .tier-price-row { border-color: #2c2c2c; }
    .tier-price-lbl { font-size: 10px; color: #999; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 0.25rem; }
    .tier-price-val { font-size: 20px; font-weight: 700; }
    .tier-card--classic .tier-price-val,
    .tier-card--expert .tier-price-val { color: var(--text-dark); }
    .tier-card--professional .tier-price-val { color: #fff; }
    .tier-warranty-note { font-size: 11px; color: #aaa; text-align: right; line-height: 1.35; }
    .tier-card--professional .tier-warranty-note { color: #555; }

    /* ===== TIER DETAIL SECTIONS ===== */
    .tier-detail-row { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
    .tier-detail-eyebrow { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
    .tier-detail-pfx { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: #aaa; }
    .tier-name-big {
      font-size: clamp(44px, 5.5vw, 76px); font-weight: 900; font-style: italic;
      text-transform: uppercase; letter-spacing: -0.5px; line-height: 0.9; margin: 0 0 0.6rem;
    }
    .tier-tagline { font-size: clamp(16px, 1.4vw, 22px); font-weight: 700; color: var(--text-dark); margin: 0 0 1rem; line-height: 1.3; }
    .tier-body-text { font-size: 15px; color: var(--text-body); line-height: 1.72; margin: 0 0 1.5rem; }
    .tier-detail-feats { list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid; gap: 0.65rem; }
    .tier-detail-feat { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 14px; color: var(--text-dark); line-height: 1.5; }
    .tier-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
    .tier-aside {
      padding: 1rem 1.25rem; border-radius: var(--radius); border-left: 3px solid;
    }
    .tier-aside-lbl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; }
    .tier-aside-txt { font-size: 13.5px; color: var(--text-dark); line-height: 1.55; }

    .tier-card-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    /* Product Showcase */
    .product-showcase {
      border-radius: 16px; overflow: hidden;
      position: relative; aspect-ratio: 1 / 1;
      display: flex; align-items: center; justify-content: center; padding: 2.5rem;
    }
    .product-showcase img {
      width: 100%; height: 100%; object-fit: contain;
      position: relative; z-index: 1;
      transition: transform 400ms ease;
    }
    .product-showcase:hover img { transform: scale(1.04); }
    .showcase-badge {
      position: absolute; top: 1.2rem; right: 1.2rem; z-index: 2;
      padding: 0.35rem 0.8rem; border-radius: 8px;
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
    }

    .product-carousel {
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    .product-carousel-track {
      width: 100%;
      height: 100%;
      display: flex;
      transition: transform 440ms ease;
      transform: translateX(0);
      will-change: transform;
    }
    .product-carousel-slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
    }
    .product-carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .product-carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 34px;
      height: 34px;
      border: 1px solid rgba(0,0,0,0.12);
      border-radius: 10px;
      background: rgba(255,255,255,0.9);
      color: #222;
      font-size: 18px;
      line-height: 1;
      cursor: pointer;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .product-carousel-btn--prev { left: 0.4rem; }
    .product-carousel-btn--next { right: 0.4rem; }
    .pro-section .product-carousel-btn {
      background: rgba(17,17,17,0.9);
      color: #fff;
      border-color: rgba(255,255,255,0.18);
    }

    .brushless-hero {
      position: relative;
      z-index: 1;
      max-width: 860px;
      margin: 0 auto 2.2rem;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.12);
    }
    .brushless-hero img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Progress bars */
    .prog-section { margin-top: 2rem; }
    .prog-section-title {
      font-size: 11px; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.5px; color: #aaa; margin-bottom: 1rem;
    }
    .prog-row { display: grid; grid-template-columns: 130px 1fr 90px; align-items: center; gap: 0.9rem; margin-bottom: 0.9rem; }
    .prog-lbl { font-size: 12px; font-weight: 600; color: var(--text-dark); }
    .prog-track { height: 7px; background: #e8e8e8; border-radius: 10px; overflow: hidden; }
    .prog-fill { height: 100%; border-radius: 10px; width: 0; transition: width 1400ms cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .prog-fill--classic { background: #ccc; }
    .prog-fill--expert { background: var(--brand-red); }
    .prog-fill--professional { background: #1a1a1a; }
    .prog-val { font-size: 11px; font-weight: 700; color: var(--text-dark); white-space: nowrap; }

    /* ===== PUREPOW STATS ===== */
    .brushless-section {
      padding: 88px 0;
      background: linear-gradient(150deg, #101010 0%, #290204 50%, #101010 100%);
      color: #fff; position: relative; overflow: hidden;
    }
    .brushless-section::before {
      content: "";
      position: absolute; width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(213,12,31,0.15) 0%, transparent 70%);
      top: -150px; right: -150px; pointer-events: none;
    }
    .brushless-intro { text-align: center; margin-bottom: 3.5rem; position: relative; z-index: 1; }
    .brushless-eyebrow {
      font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
      color: #ff8b95; margin-bottom: 0.8rem;
    }
    .brushless-title {
      font-size: clamp(28px, 3.5vw, 54px); font-weight: 900; color: #fff;
      margin: 0 0 0.8rem; line-height: 1.05;
    }
    .brushless-sub {
      font-size: 16px; color: rgba(255,255,255,0.5); max-width: 540px; margin: 0 auto; line-height: 1.6;
    }
    .stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
    .stat-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px; padding: 2rem 1.5rem; text-align: center; position: relative; overflow: hidden;
    }
    .stat-card::after {
      content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--brand-red), #ff6b7a);
    }
    .stat-num {
      font-size: clamp(52px, 6vw, 82px); font-weight: 900; color: #fff;
      line-height: 1; margin-bottom: 0.4rem; display: flex; align-items: baseline; justify-content: center; gap: 0.1em;
    }
    .stat-pfx { font-size: 0.5em; color: #ff8b95; font-weight: 800; }
    .stat-sfx { font-size: 0.5em; color: #ff8b95; font-weight: 800; }
    .stat-sub strong { display: block; font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
    .stat-sub { font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.45; }
    .motor-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; position: relative; z-index: 1; }
    .motor-card { border-radius: 12px; padding: 1.5rem; }
    .motor-card--std { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); }
    .motor-card--bl { background: rgba(213,12,31,0.1); border: 1px solid rgba(213,12,31,0.22); }
    .motor-card-title { font-size: 15px; font-weight: 700; margin: 0 0 0.8rem; }
    .motor-card--std .motor-card-title { color: rgba(255,255,255,0.65); }
    .motor-card--bl .motor-card-title { color: #ff8b95; }
    .motor-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
    .motor-list li { font-size: 13px; padding-left: 1.2rem; position: relative; line-height: 1.5; }
    .motor-card--std .motor-list li { color: rgba(255,255,255,0.5); }
    .motor-card--std .motor-list li::before { content: "—"; position: absolute; left: 0; color: rgba(255,255,255,0.25); }
    .motor-card--bl .motor-list li { color: rgba(255,175,165,0.85); }
    .motor-card--bl .motor-list li::before { content: "+"; position: absolute; left: 0; color: #ff8b95; font-weight: 700; }

    /* ===== PROFESSIONAL DARK SECTION ===== */
    .pro-section { padding: 64px 0; background: #111; color: #fff; }
    .pro-showcase-emphasis {
      background:
        radial-gradient(circle at 70% 55%, rgba(213,12,31,0.22) 0%, rgba(213,12,31,0) 52%),
        linear-gradient(135deg, #1e1e1e, #0d0d0d) !important;
      border: 1px solid rgba(213,12,31,0.45) !important;
      box-shadow: 0 20px 55px rgba(213,12,31,0.2);
    }
    .pro-showcase-emphasis .product-carousel-slide img {
      filter: brightness(1.12) contrast(1.16) drop-shadow(0 0 22px rgba(213,12,31,0.26));
    }
    .class-badge,
    .class-badge--detail,
    .tier-card,
    .tier-card-prefix,
    .product-showcase,
    .showcase-badge,
    .product-carousel-btn,
    .brushless-hero,
    .stat-card,
    .motor-card,
    .compare-table-wrap,
    .decision-card,
    .tier-aside,
    .btn {
      border-radius: 10px !important;
    }

    /* ===== COMPARISON TABLE ===== */
    .compare-table-wrap {
      overflow: auto; border: 1px solid var(--border); border-radius: var(--radius); background: #fff;
    }
    .compare-table { width: 100%; border-collapse: collapse; min-width: 720px; }
    .compare-table th, .compare-table td {
      border-bottom: 1px solid var(--border); border-right: 1px solid var(--border);
      padding: 0.8rem 1rem; vertical-align: middle; font-size: 13px;
    }
    .compare-table tr:last-child th,
    .compare-table tr:last-child td { border-bottom: 0; }
    .compare-table th:last-child,
    .compare-table td:last-child { border-right: 0; }
    .compare-table thead th {
      background: #fafafa; font-weight: 700; text-align: center; color: var(--text-dark); padding: 1rem;
    }
    .compare-table thead th:first-child { text-align: left; }
    .compare-table tbody th {
      background: #fafafa; font-weight: 600; color: var(--text-dark); text-align: left; min-width: 210px;
    }
    .compare-table tbody td { text-align: center; color: #555; }
    .col-pro { background: rgba(0,0,0,0.02); }
    .compare-table thead .col-pro { background: #f0f0f0; }
    .chk-yes { color: #148a3d; font-weight: 700; }
    .chk-no { color: #bbb; }
    .pro-str { font-weight: 700; color: #111; }

    /* ===== DECISION GUIDE ===== */
    .decision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .decision-card { border-radius: 16px; padding: 2rem; position: relative; overflow: hidden; }
    .decision-card--classic { background: #fff; border: 2px solid var(--border); }
    .decision-card--expert {
      background: #fff; border: 2px solid var(--brand-red);
      box-shadow: 0 10px 36px rgba(213,12,31,0.1);
    }
    .decision-card--expert::after {
      content: "Популярный выбор";
      position: absolute;
      top: 1rem;
      right: 1rem;
      inset: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      height: auto;
      min-height: 0;
      max-width: 98px;
      background: var(--brand-red);
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.2;
      white-space: normal;
      text-align: left;
      padding: 0.25rem 0.6rem;
      border-radius: 6px;
      pointer-events: none;
      z-index: 2;
    }
    .decision-card--professional { background: #111; border: 2px solid #2a2a2a; }
    .decision-tier-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; }
    .decision-card--classic .decision-tier-lbl { color: #aaa; }
    .decision-card--expert .decision-tier-lbl { color: var(--brand-red); }
    .decision-card--professional .decision-tier-lbl { color: #555; }
    .decision-name {
      font-size: 30px; font-weight: 900; font-style: italic; text-transform: uppercase; margin: 0 0 0.75rem; line-height: 1;
    }
    .decision-card--classic .decision-name { color: var(--brand-red); }
    .decision-card--expert .decision-name { color: #5a5a5a; }
    .decision-card--professional .decision-name { color: #fff; }
    .decision-scenario { font-size: 15px; font-weight: 700; margin-bottom: 0.6rem; }
    .decision-card--classic .decision-scenario,
    .decision-card--expert .decision-scenario { color: var(--text-dark); }
    .decision-card--professional .decision-scenario { color: #fff; }
    .decision-desc { font-size: 13px; line-height: 1.65; }
    .decision-card--classic .decision-desc,
    .decision-card--expert .decision-desc { color: #666; }
    .decision-card--professional .decision-desc { color: rgba(255,255,255,0.45); }

    /* ===== FOOTER ===== */
    .footer { background: var(--footer-bg); color: rgba(255,255,255,0.65); padding: 2.5rem 0; }
    .footer-inner { display: grid; grid-template-columns: 1fr auto auto; gap: 2rem; align-items: center; }
    .footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
    .footer-links a { color: rgba(255,255,255,0.65); font-size: 13px; }
    .footer-links a:hover { color: #fff; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 0.5rem; }
    .footer-social { display: flex; gap: 1rem; }
    .footer-social a { color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 600; }
    .footer-social a:hover { color: #fff; }

    /* ===== ANIMATIONS ===== */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 650ms ease, transform 650ms ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-d1 { transition-delay: 110ms; }
    .reveal-d2 { transition-delay: 220ms; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 960px) {
      .tiers-grid { grid-template-columns: 1fr; }
      .tier-detail-row { grid-template-columns: 1fr; gap: 2rem; }
      .tier-detail-row > div[style*="order: 1"] { order: unset !important; }
      .tier-detail-row > div[style*="order: 2"] { order: unset !important; }
      .stats-row { grid-template-columns: 1fr; }
      .motor-compare { grid-template-columns: 1fr; }
      .decision-grid { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; }
    }
    @media (max-width: 640px) {
      .section { padding: 44px 0; }
      .brand-copy { display: none; }
      .brand-header__inner { min-height: 80px; }
      .page-hero-main { padding: 56px 0 52px; }
    }
