  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5E6B8;
    --green: #22c55e;
    --green-light: #4ade80;
    --dark: #0D0B08;
    --dark-2: #141210;
    --dark-3: #1C1915;
    --dark-4: #252118;
    --dark-5: #2E2A1F;
    --text: #E8E0D0;
    --text-muted: #A09070;
    --white: #FAF8F3;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'Montserrat', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── ANNOUNCEMENT BAR ─── */
  .bar {
    background: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
  }
  .bar-track {
    display: inline-flex;
    white-space: nowrap;
    will-change: transform;
  }
  .bar-track span { margin: 0 40px; }


  /* ─── HERO ─── */
  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    padding: 20px 0 60px 0;
    align-items: center;
    background-image: linear-gradient(rgba(13, 11, 8, 0.94), rgba(13, 11, 8, 0.94)), url('/images/van-back3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 70% 20%, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px 80px 80px;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 24px;
  }
  .hero-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(38px, 4.5vw, 64px);
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 20px;
  }
  .hero-title em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-subtitle {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
  }
  .hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 420px;
    margin-bottom: 48px;
  }
  .hero-desc strong { color: var(--text); font-weight: 600; }

  .hero-cta-group {
    /* No entry animation */
  }
  .btn-primary {
    display: inline-block;
    background: var(--green);
    color: var(--dark);
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: btnPulse 2s infinite;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
  }
  @keyframes btnPulse {
    0% { transform: scale(1); box-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 25px rgba(34, 197, 94, 0.6); }
    100% { transform: scale(1); box-shadow: 0 0 15px rgba(34, 197, 94, 0.4); }
  }
  .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--green-light);
    transform: translateX(-100%);
    transition: transform 0.35s ease;
  }
  .btn-primary:hover::before { transform: translateX(0); }
  .btn-primary span { position: relative; z-index: 1; }

  .hero-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 14px;
    letter-spacing: 1px;
  }
  .hero-note::before { content: '✦ '; color: var(--gold); }

  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-img-wrap {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-img-wrap img {
    width: 85%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  /* Decorative circles */
  .deco-circles {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 1;
  }
  .deco-circles circle { fill: none; stroke: var(--gold); opacity: 0.15; }

  /* ─── DIVIDER ─── */
  .divider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 80px;
    margin: 10px 0;
  }
  .divider-line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent); }
  .divider-gem { color: var(--gold); font-size: 12px; letter-spacing: 3px; }

  /* ─── SECTION BASE ─── */
  section { padding: 100px 80px; }

  .section-label {
    font-family: var(--serif);
    font-style: italic;
    font-size: 16px;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
  }
  .section-title {
    font-family: var(--serif);
    font-weight: 700;
    font-size: clamp(30px, 3.5vw, 52px);
    line-height: 1.15;
    color: var(--white);
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 17px;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 600px;
    margin-top: 20px;
  }
  .section-body strong { color: var(--text); font-weight: 600; }

  /* ─── WHAT IS ─── */
  .what-is {
    background: var(--dark-2);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .what-is::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
  }
  .what-is .section-body {
    margin: 20px auto 0;
    text-align: center;
  }
  .what-is .section-title { text-align: center; }

  /* ─── PROTOCOLS ─── */
  .protocols { background: var(--dark); }
  .protocols-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 60px;
    border: 1px solid rgba(201,168,76,0.15);
  }
  .protocol-card {
    background: var(--dark-3);
    padding: 48px 36px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
  }
  .protocol-card:hover { background: var(--dark-4); }
  .protocol-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .protocol-card:hover::before { transform: scaleX(1); }

  .protocol-num {
    font-family: var(--serif);
    font-size: 72px;
    font-weight: 700;
    color: rgba(201,168,76,0.08);
    line-height: 1;
    margin-bottom: 24px;
    display: block;
  }
  .protocol-icon {
    width: 44px; height: 44px;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .protocol-icon svg { width: 100%; height: 100%; }
  .protocol-name {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
  }
  .protocol-desc {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-muted);
  }
  .protocol-tag {
    display: inline-block;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 6px 14px;
  }

  /* ─── INCLUDES ─── */
  .includes {
    background: var(--dark-2);
    position: relative;
  }
  .includes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
  }
  .includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .includes-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    transition: border-color 0.3s;
  }
  .includes-item:hover { border-color: rgba(201,168,76,0.3); }
  .includes-item:last-child { border-bottom: none; }
  .includes-check {
    width: 28px; height: 28px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
    font-size: 15px;
  }
  .includes-text strong {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
  }
  .includes-text span {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  .includes-badge {
    background: var(--dark-4);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 36px;
    text-align: center;
    position: sticky;
    top: 40px;
  }
  .includes-badge-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
  }
  .includes-badge-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .includes-badge-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
    margin: 20px 0;
  }
  .includes-badge p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }
  .access-pill {
    display: inline-block;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    margin-top: 20px;
  }

  /* ─── PRICING ─── */
  .pricing {
    background: var(--dark);
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    background-image: linear-gradient(rgba(13, 11, 8, 0.94), rgba(13, 11, 8, 0.94)), url('/images/van-back3.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .pricing .section-title { text-align: center; }

  /* ─── VALUE COMPARISON BLOCK ─── */
  .value-comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 860px;
    margin: 56px auto 0;
    border: 1px solid rgba(201,168,76,0.15);
    overflow: hidden;
  }
  .value-side {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .value-individual {
    background: linear-gradient(135deg, rgba(220,38,38,0.06) 0%, rgba(220,38,38,0.02) 100%);
    border-right: 1px solid rgba(220,38,38,0.18);
  }
  .value-complete {
    background: linear-gradient(135deg, rgba(34,197,94,0.07) 0%, rgba(34,197,94,0.02) 100%);
    border-left: 1px solid rgba(34,197,94,0.2);
    position: relative;
  }
  .value-complete::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
  }
  .value-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
  }
  .value-label-red { color: rgba(248,113,113,0.9); }
  .value-label-green { color: var(--green); }
  .value-individual .value-label { color: rgba(248,113,113,0.9); }
  .value-complete .value-label { color: var(--green); }

  .value-courses-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }
  .value-course-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201,168,76,0.07);
    font-size: 14px;
    color: var(--text-muted);
  }
  .value-course-item:last-child { border-bottom: none; }
  .value-check {
    color: var(--gold);
    font-size: 11px;
  }
  .value-course-check { color: var(--text); }

  .value-total-individual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(220,38,38,0.2);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
  }
  .value-total-price-crossed {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: rgba(248,113,113,0.75);
    text-decoration: line-through;
    opacity: 0.8;
  }

  .value-total-complete {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(34,197,94,0.2);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
  }
  /* Sub-bloco: valor de referência riscado em vermelho */
  .value-total-price-ref {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.85;
  }
  .value-total-ref-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(248,113,113,0.8);
    letter-spacing: 0.5px;
  }
  .value-total-ref-price {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: rgba(248,113,113,0.8);
    text-decoration: line-through;
  }
  /* Sub-bloco: valor principal em verde */
  .value-total-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .value-total-price-complete {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 700;
    color: var(--green);
  }

  .value-economy-pill {
    display: inline-block;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.3);
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-top: 16px;
    text-align: center;
  }

  /* Item Bonus no bloco verde */
  .value-course-bonus {
    margin-top: 6px;
    border-top: 1px dashed rgba(34,197,94,0.2) !important;
    padding-top: 10px !important;
    font-weight: 600;
    color: var(--green-light) !important;
  }
  .value-course-bonus .value-check { color: var(--green); }

  .value-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    background: var(--dark-4);
    min-width: 56px;
  }
  .value-arrow-line {
    flex: 1;
    width: 1px;
    background: rgba(201,168,76,0.15);
  }
  .value-arrow-label {
    font-family: var(--serif);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    padding: 14px 0;
  }

  .main-offer {
    max-width: 680px;
    margin: 30px auto 0;
    background: var(--dark-3);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 50px 40px 40px;
    position: relative;
    overflow: hidden;
  }
  .main-offer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .offer-badge {
    position: absolute;
    top: 0; 
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    white-space: nowrap;
  }
  .offer-title {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    text-align: center;
  }
  .offer-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 24px;
  }

  .offer-items {
    list-style: none;
    text-align: left;
    width: fit-content;
    margin: 0 auto 24px auto;
  }
  .offer-items li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    font-size: 16px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
  }
  .offer-items li:last-child { border-bottom: none; }
  .offer-items li::before {
    content: '✦';
    color: var(--gold);
    font-size: 11px;
    flex-shrink: 0;
  }
  .offer-items li strong { color: var(--text); font-weight: 600; }

  .offer-divider { height: 1px; background: rgba(201,168,76,0.15); margin: 24px 0; }

  .offer-price-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 8px;
  }
  .offer-price {
    font-family: var(--serif);
    font-size: 68px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    text-align: center;
  }
  .offer-installment {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 24px;
  }

  /* BONUS BLOCK no card do metodo completo */
  .offer-bonus-block {
    border: 1px solid rgba(34,197,94,0.25);
    border-radius: 0;
    background: rgba(34,197,94,0.04);
    padding: 20px 24px 16px;
    margin: 4px 0 8px;
    position: relative;
  }
  .offer-bonus-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
  }
  .offer-bonus-label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 12px;
    display: block;
    text-align: center;
  }
  .offer-items-bonus {
    margin-bottom: 0 !important;
  }
  .offer-items-bonus li {
    color: var(--text) !important;
    border-bottom-color: rgba(34,197,94,0.08) !important;
  }
  .offer-items-bonus li::before {
    content: '✦' !important;
    color: var(--green) !important;
  }
  .offer-items-bonus li strong { color: var(--green-light) !important; }

  .offer-price-prefix {
    font-size: 22px;
    vertical-align: middle;
    opacity: 0.8;
    font-weight: 400;
    font-family: var(--sans);
  }

  /* ─── ABOUT ─── */
  .about {
    background: var(--dark-2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .about-img {
    background: var(--dark-4);
    aspect-ratio: 4/5;
    width: 85%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
  }
  .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
  }
  .about-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(transparent, var(--dark-2));
  }

  /* ─── FINAL CTA ─── */
  .final-cta {
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
  }
  .final-cta .section-title { text-align: center; max-width: 700px; margin: 0 auto; }
  .final-cta .section-body { margin: 20px auto; text-align: center; }

  .trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
  }
  .trust-item svg { width: 16px; height: 16px; color: var(--gold); }

  /* ─── FOOTER ─── */
  footer {
    padding: 30px 80px;
    border-top: 1px solid rgba(201,168,76,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-brand {
    font-family: var(--serif);
    font-size: 18px;
    color: var(--gold);
    font-style: italic;
  }
  .footer-copy {
    font-size: 14px;
    color: var(--text-muted);
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    section { padding: 40px 20px; }
    
    /* HERO MOBILE */
    .hero { 
      grid-template-columns: 1fr; 
      padding: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background-size: auto 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: scroll;
      background-image: linear-gradient(rgba(13, 11, 8, 0.92), rgba(13, 11, 8, 0.92)), url('/images/van-back3.webp');
    }
    .hero-left { 
      padding: 60px 20px 20px; 
      text-align: center; 
      align-items: center; 
    }
    .hero-title { font-size: 32px; margin-bottom: 12px; }
    .hero-desc { font-size: 15px; margin-bottom: 24px; max-width: 100%; }
    .hero-right { display: flex; align-items: flex-end; justify-content: center; flex: 1; }
    .hero-img-wrap { min-height: auto; width: 100%; display: flex; align-items: flex-end; justify-content: center; }
    .hero-img-wrap img { width: 90%; max-height: 45vh; object-fit: contain; object-position: bottom; }
    .deco-circles { display: none; }

    /* PRICING COMPACT MOBILE */
    .main-offer { padding: 36px 16px 24px; margin-top: 30px; }
    .offer-badge {
      font-size: 9px;
      padding: 4px 12px;
    }
    .offer-title { font-size: 22px; text-align: center; }
    .offer-subtitle { text-align: center; margin-bottom: 20px; }
    .offer-items { margin: 0 auto 20px auto; }
    .offer-items li { padding: 8px 0; font-size: 14px; }
    .offer-divider { margin: 20px 0; }
    .offer-price { font-size: 52px; }
    .offer-installment { margin-bottom: 20px; font-size: 14px; }
    .btn-primary { padding: 16px 20px; font-size: 12px; width: 100%; text-align: center; }
    .hero-note { font-size: 11px; }

    /* VALUE COMPARISON MOBILE */
    .value-comparison {
      grid-template-columns: 1fr;
      margin-top: 30px;
    }
    .value-arrow {
      flex-direction: row;
      padding: 16px 20px;
      min-width: auto;
    }
    .value-arrow-line {
      flex: 1;
      width: auto;
      height: 1px;
    }
    .value-complete { border-left: none; border-top: 1px solid rgba(201,168,76,0.2); }
    .value-complete::before { display: none; }

    /* ABOUT AND OTHER GRIDS */
    .protocols-grid { grid-template-columns: 1fr; gap: 10px; margin-top: 30px; }
    .includes-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 30px; }
    
    .about { grid-template-columns: 1fr; text-align: center; }
    .about-img { width: 100%; max-width: 320px; margin: 0 auto 20px auto; }
    .about > div { display: flex; flex-direction: column; align-items: center; text-align: center; }

    .pricing {
      background-size: auto 100%;
      background-repeat: no-repeat;
      background-position: center;
      background-attachment: scroll;
      background-image: linear-gradient(rgba(13, 11, 8, 0.92), rgba(13, 11, 8, 0.92)), url('/images/van-back3.webp');
    }
    footer { padding: 30px; flex-direction: column; text-align: center; }
    .divider { padding: 0 20px; margin: 20px 0; }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }

  /* ─── BACK TO TOP ─── */
  .back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-5px);
  }
  .back-to-top svg { width: 20px; height: 20px; }

  @media (max-width: 900px) {
    .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
  }
