/** Shopify CDN: Minification failed

Line 1338:5 Unexpected "}"

**/

:root {
    --yellow: #FFE600;
    --yellow-bright: #FFEB1A;
    --yellow-soft: #FFF9CC;
    --green: #4CAF50;
    --green-light: #E8F5E9;
    --green-dark: #2E7D32;
    --red: #E53935;
    --bg: #F0F0F0;
    --white: #FFFFFF;
    --ink: #1A1A1A;
    --ink-2: #4A4A4A;
    --ink-3: #888;
    --line: #E5E5E5;
    --line-2: #F0F0F0;
    --blue-pill: #1F4FB8;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --container: 1240px;
  }
  * { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
  /*html, body { margin: 0; padding: 0; }
  body {
    background: var(--white);
    font-family: var(--font);
    color: var(--ink);
    min-height: 100vh;
    line-height: 1.4;
  }*/
  img { display: block; max-width: 100%; }
  h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }
  a { color: inherit; }

  /* ===== CONTAINERS ===== */
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
  }
 .template-demo-product-test{
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
  @media (min-width: 768px) { .container { padding: 0 24px; } }
  @media (min-width: 1024px) { .container { padding: 0 32px; } }

  /* ===== ANNOUNCEMENT BAR ===== */
  .annbar {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .annbar svg { width: 14px; height: 14px; color: var(--yellow); }

  /* ===== HEADER ===== 
  .header-wrap { background: var(--white); border-bottom: 1px solid var(--line); }
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
  }
  .header__logo img { height: 26px; }
  @media (min-width: 1024px) { .header__logo img { height: 32px; } }
  .header__nav {
    display: none;
    gap: 28px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
  }
  .header__nav a { text-decoration: none; transition: var(--transition); }
  .header__nav a:hover { color: var(--blue-pill); }
  @media (min-width: 1024px) { .header__nav { display: flex; } }
  .header__icons { display: flex; gap: 8px; align-items: center; }
  .icon-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--ink);
    position: relative;
  }
  .icon-btn:hover { background: var(--bg); border-color: var(--ink-3); }
  .icon-btn svg { width: 18px; height: 18px; }
  .icon-btn__badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--red);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 100px;
    padding: 0 5px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
*/
  /* ===== TRUSTPILOT STRIP ===== */
  .trustpilot {
    background: var(--green-light);
    padding: 8px 20px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 600;
    text-align: center;
  }
  .template-demo-product-test   .trustpilot {
    display:flex;
  }
  @media (min-width: 768px) { .trustpilot { font-size: 13px; gap: 10px; padding: 10px 20px; } }
  .trustpilot__stars { color: #00b67a; letter-spacing: 1px; font-size: 12px; }
  .trustpilot__score { font-weight: 800; }

  /* ===== PRODUCT HERO ===== */
  .product-hero {
    padding: 16px 0 24px;
  }
  @media (min-width: 1024px) {
    .product-hero {
      padding: 32px 0 48px;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 48px;
      align-items: start;
    }
  }
  @media (min-width: 1280px) {
    .product-hero { grid-template-columns: 1.4fr 1fr; gap: 56px; }
  }

  /* Gallery */
  .gallery { width: 100%; }
  @media (min-width: 1024px) { .gallery { position: sticky; top: 16px; } }
  .gallery__main {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--bg);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 768px) { .gallery__main { border-radius: var(--radius-lg); } }
  .gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery__tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    letter-spacing: 0.02em;
  }
  @media (min-width: 768px) { .gallery__tag { padding: 7px 16px; font-size: 12px; } }
  .gallery__counter {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
  }
  .gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
  }
  @media (min-width: 768px) { .gallery__nav { display: flex; } }
  .gallery__nav:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
  .gallery__nav--prev { left: 14px; }
  .gallery__nav--next { right: 14px; }
  .gallery__nav svg { width: 16px; height: 16px; color: var(--ink); }

  .gallery__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .gallery__thumbs::-webkit-scrollbar { display: none; }
  @media (min-width: 768px) {
    .gallery__thumbs {
      gap: 10px;
      margin-top: 14px;
    }
  }
  .thumb {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 8px;
    background: var(--bg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
  }
  @media (min-width: 768px) { .thumb { width: 72px; height: 72px; } }
  .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .thumb.is-active { border-color: var(--ink); }

  /* Product info / right column */
  .product-info { width: 100%; }
  @media (max-width: 1023px) { .product-info { padding-top: 16px; } }

  .rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .stars { color: #FFC107; font-size: 15px; letter-spacing: 1px; }
  .rating-text { font-size: 13px; color: var(--ink-2); font-weight: 600; }
  .rating-link {
    font-size: 12px;
    color: var(--blue-pill);
    text-decoration: underline;
    margin-left: auto;
    font-weight: 600;
  }
  .product-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  @media (min-width: 768px) { .product-title { font-size: 26px; } }
  @media (min-width: 1024px) { .product-title { font-size: 30px; line-height: 1.1; } }
@media (max-width: 768px) {
  .trustpilot {
    margin-top: 0 !important;
  }
  .sevn-demo .kv-bundle-step-1-row {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 10px;
}
.sevn-demo button.kv-add-to-cart {
    padding: 16px 10px !important;
}
.kv-siv-bundle-btn button.kv-add-to-cart {
    font-size: 12px !important;
}
.trust-strip {
    gap: 8px 10px !important;
}
}
  .returning-customer__link {
    display: none;
}

  /* Price block */
  .price-block {
    background: var(--yellow-soft);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }
  .price-block__info { flex: 1; }
  .price-block__total {
    font-size: 12px;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 600;
  }
  .price-block__current {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.1;
  }
  @media (min-width: 768px) { .price-block__current { font-size: 32px; } }
  .price-block__discount {
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-block;
  }
  .price-block__save {
    font-size: 13px;
    color: var(--green-dark);
    font-weight: 800;
    margin-top: 4px;
  }

  /* Selectors */
  .selector-group { margin-bottom: 18px; }
  .selector-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .selector-label__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .selector-label__num {
    width: 22px; height: 22px;
    background: var(--ink);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .selector-label__link {
    font-size: 12px;
    color: var(--blue-pill);
    text-decoration: underline;
    font-weight: 600;
  }
  .selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .selector__opt {
    position: relative;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .selector__opt:hover { border-color: var(--ink-3); }
  .selector__opt.is-active {
    border-color: var(--ink);
    background: var(--yellow-soft);
  }
  .selector__opt-img {
    width: 44px; height: 44px;
    flex-shrink: 0;
  }
  .selector__opt-img img { width: 100%; height: 100%; object-fit: contain; }
  .selector__opt-body { flex: 1; min-width: 0; }
  .selector__opt-title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
  }
  .selector__opt-prices {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2px;
    flex-wrap: wrap;
  }
  .selector__opt-old {
    font-size: 10px;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 500;
  }
  .selector__opt-new {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
  }
  .selector__opt-sub {
    font-size: 10px;
    color: var(--ink-3);
    line-height: 1.3;
    font-weight: 500;
  }
  .selector__opt-tag {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .selector__opt--block { display: block; }

  /* Color swatches */
  .swatches {
    display: flex;
    gap: 10px;
  }
  .swatch-wrap {
    flex: 1;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .swatch-wrap.is-active {
    border-color: var(--ink);
    background: var(--yellow-soft);
  }
  .swatch-wrap img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .swatch__label {
    font-size: 13px;
    font-weight: 700;
  }

  /* Trust list */
  .trust-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }
  .trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--ink-2);
    font-weight: 600;
  }
  .trust-list li span:first-child {
    font-size: 18px;
    flex-shrink: 0;
  }

  /* E-book bonus */
  .ebook-bonus {
    background: var(--yellow-soft);
    border: 2px dashed var(--yellow-bright);
    border-radius: var(--radius);
    padding: 14px;
    margin-top: 16px;
    position: relative;
  }
  .ebook-bonus__tag {
    position: absolute;
    top: -10px;
    left: 14px;
    background: var(--yellow);
    border: 2px solid var(--yellow-bright);
    color: var(--ink);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .ebook-bonus__body {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .ebook-bonus__img {
    flex-shrink: 0;
    width: 72px;
    height: 92px;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }
  .ebook-bonus__img img { width: 100%; height: 100%; object-fit: cover; }
  .ebook-bonus__content { flex: 1; min-width: 0; }
  .ebook-bonus__title {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 5px;
    color: var(--ink);
  }
  .ebook-bonus__sub {
    font-size: 11px;
    color: var(--ink-3);
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .ebook-bonus__price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    flex-wrap: wrap;
  }
  .ebook-bonus__strike {
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 600;
  }
  .ebook-bonus__free {
    color: var(--green-dark);
    font-weight: 800;
  }

  /* CTA */
  .cta-wrap { margin-top: 18px; }
  .cta {
    width: 100%;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  @media (min-width: 768px) { .cta { padding: 18px; font-size: 16px; } }
  .cta:hover { background: var(--yellow-bright); }
  .cta:active { transform: scale(0.98); }
  .cta svg { width: 18px; height: 18px; }
  .cta__sub {
    text-align: center;
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 12px;
  }
  .cta__sub strong { color: var(--ink-2); }

  /* Payment methods - REAL brand icons */
  .pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
  }
  .pay-icon {
    height: 24px;
    width: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .pay-icon svg { max-width: 100%; max-height: 100%; }

  /* Urgency strip */
  .urgency {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .urgency__icon {
    width: 36px; height: 36px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }
  .urgency__body { flex: 1; }
  .urgency__title {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 5px;
  }
  .urgency__bar {
    height: 6px;
    background: var(--line-2);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 5px;
  }
  .urgency__fill {
    height: 100%;
    width: 14%;
    background: var(--red);
    border-radius: 100px;
  }
  .urgency__sub {
    font-size: 11px;
    color: var(--ink-3);
  }
.urgency__live {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 700;
    margin-top: 4px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
  .urgency__live::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulsenew 1.5s infinite;
  }
  @keyframes pulsenew { 0%, 100% { opacity: 1; } 50% { opacity: 0.1; } }

  /* Luuk's guarantee */
  .luuk {
    background: var(--white);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 16px;
    text-align: center;
  }
  .luuk__title {
    font-size: 11px;
    font-weight: 800;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }
  .luuk__h {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
  }
  .luuk__badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 10px;
  }
  .luuk__badge { text-align: center; }
  .luuk__badge-icon {
    width: 40px; height: 40px;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .luuk__badge-icon img { width: 100%; height: 100%; object-fit: contain; }
  .luuk__badge-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
  }
  .luuk__note {
    font-size: 11px;
    color: var(--ink-3);
    line-height: 1.4;
    margin: 0;
  }
  .luuk__note strong { color: var(--ink); font-weight: 800; }

  /* ===== SECTIONS ===== */
  .section { padding: 32px 0; }
  @media (min-width: 768px) { .section { padding: 48px 0; } }
  @media (min-width: 1024px) { .section { padding: 64px 0; } }
  .section--gray { background: var(--bg); }
  .section--white { background: var(--white); }
  .section--dark { background: var(--ink); color: var(--white); }
  .section--yellow { background: var(--yellow); }

  /* Section header */
  .sec-head {
    text-align: center;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }
  @media (min-width: 768px) { .sec-head { margin-bottom: 32px; } }
  .sec-head__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 8px;
  }
  .sec-head h2 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1.15;
  }
  @media (min-width: 768px) { .sec-head h2 { font-size: 30px; } }
  @media (min-width: 1024px) { .sec-head h2 { font-size: 36px; } }
  .sec-head p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
  }
  @media (min-width: 768px) { .sec-head p { font-size: 15px; } }

  /* What's in the box */
  .box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  @media (min-width: 768px) { .box-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; } }
  .box-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--line);
  }
  .box-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--yellow);
  }
  .box-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
.box-card__img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    mix-blend-mode: darken;
}
  .box-card__title {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 3px;
  }
  @media (min-width: 768px) { .box-card__title { font-size: 12px; } }
  .box-card__value {
    font-size: 10px;
    color: var(--ink-3);
    font-weight: 600;
  }

  /* Mediacoach experts */
  .experts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .expert { text-align: center; }
  .expert__avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    background: var(--bg);
  }
  @media (min-width: 768px) { .expert__avatar { width: 100px; height: 100px; } }
  .expert__avatar img { width: 100%; height: 100%; object-fit: cover; }
  .expert__verified {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 24px; height: 24px;
    background: var(--blue-pill);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .expert__role {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
  .expert__name {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
  }
  @media (min-width: 768px) { .expert__name { font-size: 14px; } }
  .expert-quote {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-align: center;
    border: 1px solid var(--line);
    font-style: italic;
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.4;
    max-width: 560px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .expert-quote { font-size: 18px; padding: 24px; } }
  .expert-quote::before {
    content: '"';
    color: var(--yellow);
    font-size: 42px;
    line-height: 0;
    margin-right: 6px;
    font-weight: 900;
    vertical-align: -10px;
    font-family: Georgia, serif;
  }
  .expert-quote__source {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-style: normal;
    font-size: 11px;
    color: var(--ink-3);
    font-weight: 700;
  }
  .expert-quote__source img {
    height: 24px;
  }

  /* Trust logos */
  .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  @media (min-width: 600px) { .logos { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1024px) { .logos { grid-template-columns: repeat(6, 1fr); gap: 14px; } }
  .logo-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .logo-card__img {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .logo-card__img img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
  }
  .logo-card__text {
    font-size: 10px;
    color: var(--ink-3);
    line-height: 1.3;
    font-weight: 600;
  }
  @media (min-width: 768px) { .logo-card__text { font-size: 11px; } }

  /* Expect timeline */
  .expect {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .expect { gap: 16px; } }
  .expect-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  @media (min-width: 768px) {
    .expect-item { padding: 20px; gap: 20px; }
  }
  .expect-item__img {
    flex-shrink: 0;
    width: 80px; height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
  }
  @media (min-width: 768px) { .expect-item__img { width: 120px; height: 120px; } }
  .expect-item__img img { width: 100%; height: 100%; object-fit: cover; }
  .expect-item__body { flex: 1; }
  .expect-item__day {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: var(--ink);
    background: var(--yellow);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }
  .expect-item__title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  @media (min-width: 768px) { .expect-item__title { font-size: 17px; } }
  .expect-item__desc {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.5;
  }
  @media (min-width: 768px) { .expect-item__desc { font-size: 13px; } }

  /* Why us features */
  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  @media (min-width: 768px) { .features { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
  .feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
  }
  .feature__icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature__icon img { width: 100%; height: 100%; object-fit: contain; }
  .feature__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  @media (min-width: 768px) { .feature__title { font-size: 15px; } }
  .feature__desc {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.5;
  }

  /* Apps */
  .apps {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .apps::-webkit-scrollbar { display: none; }
  @media (min-width: 1024px) {
    .apps { justify-content: center; flex-wrap: wrap; gap: 20px; }
  }
  .app {
    flex: 0 0 90px;
    text-align: center;
  }
  @media (min-width: 768px) { .app { flex: 0 0 110px; } }
  .app__icon {
    width: 72px; height: 72px;
    margin: 0 auto 8px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow);
  }
  @media (min-width: 768px) { .app__icon { width: 88px; height: 88px; } }
  .app__icon img { width: 100%; height: 100%; object-fit: cover; }
  .app__name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  /* Compare table */
  .compare {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    max-width: 720px;
    margin: 0 auto;
  }
  .compare__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
    font-size: 13px;
  }
  @media (min-width: 768px) { .compare__row { font-size: 14px; } }
  .compare__row + .compare__row { border-top: 1px solid var(--line); }
  .compare__row > div {
    padding: 12px 8px;
    text-align: center;
  }
  @media (min-width: 768px) { .compare__row > div { padding: 16px 12px; } }
  .compare__row > div:first-child {
    text-align: left;
    padding-left: 14px;
    font-weight: 700;
    color: var(--ink);
  }
  .compare__row--head {
    background: var(--ink);
    color: var(--white);
    font-weight: 800;
    font-size: 12px;
  }
  .compare__row--head > div:first-child {
    color: var(--white);
    text-align: left;
  }
  .compare__row--head .pro-col {
    background: var(--yellow);
    color: var(--ink);
  }
  .compare__row .pro-col {
    background: var(--yellow-soft);
    font-weight: 700;
  }
  .compare__head-img {
    width: 44px; height: 44px;
    margin: 0 auto 6px;
  }
  @media (min-width: 768px) { .compare__head-img { width: 56px; height: 56px; } }
  .compare__head-img img { width: 100%; height: 100%; object-fit: contain; }
  .check { color: var(--green-dark); font-weight: 800; font-size: 18px; }

  /* Big stats */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 720px;
    margin: 0 auto;
  }
  .stat {
    text-align: center;
    padding: 16px 8px;
  }
  @media (min-width: 768px) { .stat { padding: 24px 12px; } }
  .stat + .stat { border-left: 1px solid rgba(255,255,255,0.15); }
  .stat__num {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 10px;
  }
  @media (min-width: 768px) { .stat__num { font-size: 44px; } }
  .stat__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
    font-weight: 500;
  }
  @media (min-width: 768px) { .stat__label { font-size: 13px; } }

  /* UGC Video Section - WITH REAL VIDEO */
  .ugc-video-main {
    max-width: 880px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
  }
  @media (max-width: 600px) {
    /*
    .ugc-video-main { aspect-ratio: 4/5; }*/
    .ugc-video-main__play {
    width: 57px;
    height: 57px;
}
.ugc-item {
    aspect-ratio: 10/16;
}
  }
  .ugc-video-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ugc-video-main__poster {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .ugc-video-main__poster.is-hidden { display: none; }
  .ugc-video-main__play {
    width: 80px; height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: var(--transition);
  }
  .ugc-video-main__poster:hover .ugc-video-main__play {
    transform: scale(1.08);
  }
  .ugc-video-main__play svg { width: 32px; height: 32px; color: var(--ink); margin-left: 4px; }

  /* UGC short carousel */
  .ugc-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 0 8px;
    scrollbar-width: none;
    margin-top: 20px;
  }
  .ugc-carousel::-webkit-scrollbar { display: none; }
  @media (min-width: 1024px) { .ugc-carousel { justify-content: center; flex-wrap: wrap; } }
  .ugc-item {
    flex: 0 0 160px;
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
  }
  @media (min-width: 768px) { .ugc-item { flex: 0 0 180px; } }
  .ugc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .ugc-item__poster {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
  }
  .ugc-item__poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
  }
  .ugc-item__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ugc-item__play svg { width: 18px; height: 18px; color: var(--ink); margin-left: 2px; }
  .ugc-item__info {
    position: absolute;
    bottom: 12px; left: 12px; right: 12px;
    z-index: 2;
    color: var(--white);
  }
  .ugc-item__name {
    font-size: 12px;
    font-weight: 800;
  }
  .ugc-item__role {
    font-size: 10px;
    opacity: 0.9;
    margin-top: 2px;
  }
.expert__avatar img {
    border-radius: 50%;
}
  /* Celebs */
  .celebs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 480px;
    margin: 0 auto;
  }
  .celeb { text-align: center; }
  .celeb__img {
    width: 90px; height: 90px;
    border-radius: 50%;
    margin: 0 auto 8px;
    position: relative;
    background: var(--bg);
  }
  @media (min-width: 768px) { .celeb__img { width: 110px; height: 110px; } }
  .celeb__img img { width: 100%; height: 100%; object-fit: cover; }
  .celeb__verified {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 22px; height: 22px;
    background: var(--blue-pill);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .celeb__name {
    font-size: 12px;
    font-weight: 800;
  }
  @media (min-width: 768px) { .celeb__name { font-size: 14px; } }
@media (max-width: 768px) {
  .support-grid {
    grid-template-columns: 1fr !important;
  }
}
     }

  /* Reviews */
  .reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
  .review {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px;
  }
  .review__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .review__stars { color: #FFC107; font-size: 14px; letter-spacing: 1px; }
  .review__verified {
    font-size: 10px;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
  }
  .review__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
  }
  .review__body {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .review__author {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 600;
  }

  /* Support */
  .support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
  }
  .support-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
  }
  .support-card:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
  }
  .support-card__icon {
    width: 48px; height: 48px;
    margin: 0 auto 10px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .support-card__icon svg { width: 22px; height: 22px; color: var(--ink); }
  .support-card__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
  }
  .support-card__sub {
    font-size: 12px;
    color: var(--ink-3);
  }

  /* FAQ */
  .faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 760px;
    margin: 0 auto;
  }
  .faq__item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
  }
  .faq__item.is-open { border-color: var(--ink); }
  .faq__q {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    user-select: none;
  }
  @media (min-width: 768px) { .faq__q { font-size: 15px; padding: 18px 22px; } }
  .faq__chev {
    width: 28px; height: 28px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .faq__chev svg { width: 14px; height: 14px; color: var(--ink); }
  .faq__item.is-open .faq__chev { transform: rotate(180deg); }
  .faq__a {
    padding: 0 18px 18px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.6;
    display: none;
  }
  @media (min-width: 768px) { .faq__a { font-size: 14px; padding: 0 22px 22px; } }
  .faq__item.is-open .faq__a { display: block; }

  /* Sticky ATC - visible on all screen sizes */
  .sticky-atc {
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    background: var(--white);
    border-top: 2px solid var(--ink);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 50;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(110%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sticky-atc.is-visible { transform: translateY(0); }
  @media (min-width: 768px) {
    .sticky-atc { padding: 12px 24px; gap: 16px; }
  }
  @media (min-width: 1024px) {
    .sticky-atc {
      padding: 14px 32px;
      gap: 20px;
      justify-content: center;
    }
  }
  .sticky-atc__img {
    width: 44px; height: 44px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
  }
  @media (min-width: 1024px) { .sticky-atc__img { width: 52px; height: 52px; } }
  .sticky-atc__img img { width: 100%; height: 100%; object-fit: cover; }
  .sticky-atc__title {
    display: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 240px;
  }
  @media (min-width: 1024px) { .sticky-atc__title { display: block; } }
  .sticky-atc__info { flex-shrink: 0; }
  .sticky-atc__price {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  @media (min-width: 1024px) { .sticky-atc__price { font-size: 20px; } }
  .sticky-atc__strike {
    font-size: 10px;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 600;
    margin-top: 2px;
  }
  @media (min-width: 1024px) { .sticky-atc__strike { font-size: 12px; } }
  .sticky-atc__cta {
    flex: 1;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 10px;
    padding: 12px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  @media (min-width: 1024px) {
    .sticky-atc__cta {
      flex: 0 0 auto;
      padding: 14px 32px;
      font-size: 14px;
    }
  }
  .sticky-atc__cta:active { transform: scale(0.97); }
  .sticky-atc__cta svg { width: 14px; height: 14px; }
  @media (min-width: 1024px) { .sticky-atc__cta svg { width: 16px; height: 16px; } }

  /* Modal */
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 100;
  }
  @media (min-width: 768px) { .modal { align-items: center; } }
  .modal.is-open { display: flex; animation: fadeIn 200ms ease forwards; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .modal__content {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 430px;
    padding: 24px 20px 32px;
    position: relative;
    animation: slideUp 280ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  @media (min-width: 768px) {
    .modal__content { border-radius: var(--radius-lg); animation: fadeIn 240ms ease forwards; }
  }
  .modal__handle {
    width: 40px; height: 4px;
    background: var(--line);
    border-radius: 100px;
    margin: 0 auto 16px;
  }
  @media (min-width: 768px) { .modal__handle { display: none; } }
  .modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
  }
  .modal__img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 .modal__img img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    mix-blend-mode: darken;
}
  .modal h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 4px;
  }
  .modal__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
  }
  .modal ul {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
    margin: 0;
    padding-left: 18px;
  }
  .modal ul li { margin-bottom: 4px; }

  /* Video Modal */
  .video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 16px;
  }
  .video-modal.is-open { display: flex; animation: fadeIn 200ms ease forwards; }
  .video-modal__content {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    aspect-ratio: 9/16;
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .video-modal__content { max-width: 380px; }
  }
  .video-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
  }
  .video-modal__close:hover { background: rgba(255,255,255,0.25); }
  .video-modal__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-modal__info {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    z-index: 2;
  }

.sevn-demo .newsletter {
    grid-template-columns: 1fr !important;
    display: grid;
}
  /* Newsletter */
  .newsletter {
    background: var(--ink);
    color: var(--white);
    padding: 32px 20px;
    text-align: center;
  }
  @media (min-width: 768px) { .newsletter { padding: 48px 20px; } }
  .newsletter h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
  }
  @media (min-width: 768px) { .newsletter h3 { font-size: 28px; } }
.newsletter p {
    font-size: 14px;
    color: #ffffffb3;
    margin-bottom: 16px;
}
.celeb__img img {
    border-radius: 50%;
}
  .newsletter__form {
    display: flex;
    gap: 8px;
    max-width: 420px;
    margin: 0 auto;
  }
  .newsletter__input {
    flex: 1;
    background: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 14px;
    font-family: var(--font);
  }
  .newsletter__btn {
    background: var(--yellow);
    color: var(--ink);
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font);
    text-transform: uppercase;
  }

  /* demo-footer */
  .demo-footer {
    background: var(--bg);
    padding: 32px 0;
    font-size: 12px;
    color: var(--ink-3);
    text-align: center;
  }














.sevn-demo .product-gallery__media-list-wrapper {
    order: 0;
    border: none;
}
.sevn-demo .product-gallery.product-gallery-redesigned .product-gallery__media img {
    border-radius: 20px !important;
}
.sevn-demo .product-gallery.product-gallery-redesigned .gallery-prev-button, 
.sevn-demo.pdp-redesigned .product-gallery.product-gallery-redesigned .gallery-next-button {
    display: flex !important;
}
.sevn-demo .product-gallery.product-gallery-redesigned .gallery-next-button svg {
    position: relative;
    /* top: 4px!important;
    left: 6px!important; */
}
.sevn-demo .product-gallery.product-gallery-redesigned .gallery-prev-button, 
.sevn-demo.pdp-redesigned .product-gallery.product-gallery-redesigned .gallery-next-button {
    position: absolute;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
}
.sevn-demo .product-info__block-item h1 {
    font-weight: 900;
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.sevn-demo .price-list {
    /* display: flex !important; */
    align-items: center;
    gap: 0px !important;
    flex-wrap: wrap;
    background: var(--yellow-soft);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 16px;
    display: grid !important;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.sevn-demo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.sevn-demo .kv-bundle-step-1-box a:hover {
    border-color: var(--ink-3);
}
.sevn-demo .compare-price {
    font-size: 12px;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 600;
}
.sevn-demo .sale-price {
    color: #2e7d32;
    font-size: 32px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.1;
}
.sevn-demo .sale-badge {
    padding: 0px;
    border-radius: 999px;
    line-height: 1;
    white-space: nowrap;
    font-size: 13px;
    color: var(--green-dark);
    font-weight: 800;
    margin-top: 4px;
    background: transparent;
    text-transform: lowercase;
}
.sevn-demo .ss-bundle-heading {
    line-height: 100%;
    padding-bottom: 16px;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sevn-demo .ss-bundle-heading span {
    min-width: 20px;
    position: relative;
    width: 22px;
    height: 22px;
    background: var(--ink);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.sevn-demo .s-compare-table-text a {
    background: transparent;
    color: var(--blue-pill);
    text-decoration: underline;
    border-radius: 5px;
    font-weight: 600;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0%;
}
.sevn-demo .kv-bundle-step-1-box a {
    position: relative;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: flex;
    gap: 10px;
    align-items: center;
}
.sevn-demo .kv-bundle-price-inner-box {
    display: flex;
    gap: 5px;
}
.sevn-demo s.price-bundle-span {
    font-size: 13px !important;
    color: #000 !important;
    font-weight: 700;
    text-decoration: none;
}
.sevn-demo .kv-bundle-step-1-row {
    border: transparent;
    background: transparent;
    gap: 4px;
    display: flex;
    opacity: 1;
    padding: 0;
    border-radius: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.sevn-demo .kv-bundle-step-1-box.ss-active a {
    border-color: var(--ink);
    background: var(--yellow-soft);
}
.sevn-demo .kv-bundle-step-1-box-right h5 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
}
.sevn-demo .kv-bundle-price {
    display: flex;
    align-items: center;
    gap: 0px 6px;
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
}
.sevn-demo button.kv-add-to-cart img {
    padding-right: 10px;
    filter: brightness(0);
}
.sevn-demo .kv-bundle-price span, .kv-bundle-price s {
    font-style: normal;
    line-height: 19.6px;
    font-size: 10px!important;
    color: var(--ink-3)!important;
    text-decoration: line-through;
    font-weight: 500;
    background: transparent!important;
    padding: 0!important;
    display: block;
    width: 100%;
}
.sevn-demo .kv-bundle-step-1-box-content {
    font-size: 10px;
    color: var(--ink-3);
    line-height: 1.3;
    font-weight: 500;
}
.sevn-demo .kv-pack-button-with-info-list {
    display: none;
}
.sevn-demo .ss-total-bundle-value {
    display: none;
}
.sevn-demo .kv-siv-bundle-outer.kv-pack-collapsed-ready .kv-pack-button.selected .bundles-outer-wrapper {
    visibility: visible;
    display: none;
    opacity: 1;
    max-height: 2000px;
    overflow: visible;
    pointer-events: auto;
}
.sevn-demo .kv-pack-button {
    width: 50%;
}
.sevn-demo  .kv-pack-options {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-direction: row;
}

.sevn-demo .kv-pack-button {
    flex-direction: column;
    justify-content: center;
    flex: 1 0 0;
    position: relative;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: flex;
    gap: 10px;
    align-items: center;
}
.sevn-demo .kv-siv-bundle-outer span.best-seller {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-style: normal;
    line-height: normal;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.sevn-demo .kv-pack-button.selected,  .sevn-demo .kv-color-img-wrapper.selected {
    border-color: var(--ink);
    background: var(--yellow-soft);
}
.sevn-demo .kv-pack-options h5 {
    color: #0B0B0B;
    font-style: normal;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0;
    font-size: 13px;
    margin-bottom: 2px;
}
.sevn-demo .kv-pack-button-with-info-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0px !important;
}
.sevn-demo .kv-color-img-wrapper label.kv-color-img {
    min-height: 64px !important;
}
.sevn-demo .kv-pack-button.selected, .sevn-demo .kv-color-img-wrapper.selected {
    border-color: var(--ink) !important;
    background: var(--yellow-soft) !important;
}
.sevn-demo span.hide-span {
    display: none;
}
.sevn-demo-box-te {
    display: none;
}
.sevn-demo .sevn-demo-box-te {
    display: block;
}
.sevn-demo button.kv-add-to-cart {
    align-self: stretch;
    line-height: normal;
    width: 100%;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.sevn-demo .sevn-demo-box-te ul {
    margin: 0px;
}
.sevn-demo .cro-ebook-bonus {
    display: none;
}
.kv-pack-options .kv-bundle-price {
    flex-wrap: wrap;
}
.trustpilot {
    margin-top: -10px;
}
.kv-bundle-price span, .kv-bundle-price s {
    width: unset;
}
.kv-pack-options span.ss-save-value {
    color: green !IMPORTANT;
    font-weight: 700;
    text-decoration: NONE !IMPORTANT;
}
.sevn-demo .product {
    padding-bottom: 48px;
}
.sevn-demo .circle-button {
    display: none;
}
.sevn-demo .product-gallery__thumbnail-list .product-gallery__thumbnail {
    padding: 0px !important;
    max-width: 68px !important;
    width: 100% !important;
    background-color: transparent !important;
}
.sevn-demo .product-gallery__thumbnail-list .product-gallery__thumbnail[aria-current="true"] {
    border: 1.5px solid #000!important;
    border-color: var(--ink);
}
.sevn-demo .product-gallery__thumbnail-list .product-gallery__thumbnail {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border: 1.5px solid #f0f0f0 !important;
    border-radius: 8px;
    background: #f0f0f0;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}
.sevn-demo .product {
    padding-top: 32px;
}
.sevn-demo  .product-gallery.product-gallery-redesigned .gallery-prev-button, .pdp-redesigned .product-gallery.product-gallery-redesigned .gallery-next-button {
    
    width: 36px !important;
    height: 36px !important;
}
.sevn-demo button.circle-button.circle-button--lg.circle-button--fill.gallery-prev-button.group svg {
    position: relative;
    /* top: 4px;
    left: 3px; */
}
.sevn-demo .product-gallery.product-gallery-redesigned .gallery-prev-button, .pdp-redesigned .product-gallery.product-gallery-redesigned .gallery-next-button {
    width: 36px !important;
    height: 36px !important;
}

.sevn-demo .product-gallery.product-gallery-redesigned .product-tags .product-tag {
    padding: 7px 16px !important;
    font-size: 12px !important;
    border-radius: 100px!important;
}
.sticky-atc {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-top: 2px solid var(--ink);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 50;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(110%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-atc.is-visible {
    transform: translateY(0);
}
@media (min-width: 1024px) {
    .sticky-atc {
        padding: 14px 32px;
        gap: 20px;
        justify-content: center;
    }
}
@media screen and (max-width: 768px) {
.sevn-demo .kv-bundle-step-1-row {
    grid-template-columns: 1fr;
}
}



/*new css sec demo start*/
 :root {
    --yellow: #FFE600;
    --yellow-bright: #FFEB1A;
    --yellow-soft: #FFF9CC;
    --green: #4CAF50;
    --green-light: #E8F5E9;
    --green-dark: #2E7D32;
    --red: #E53935;
    --bg: #F0F0F0;
    --white: #FFFFFF;
    --ink: #1A1A1A;
    --ink-2: #4A4A4A;
    --ink-3: #888;
    --line: #E5E5E5;
    --line-2: #F0F0F0;
    --blue-pill: #1F4FB8;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --container: 1240px;
  }


  /* ===== CONTAINERS ===== */
  .container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
  }
  @media (min-width: 768px) { .container { padding: 0 24px; } }
  @media (min-width: 1024px) { .container { padding: 0 32px; } }

  /* ===== ANNOUNCEMENT BAR ===== */
  .annbar {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .annbar svg { width: 14px; height: 14px; color: var(--yellow); }

  /* ===== TRUSTPILOT STRIP ===== */
  .trustpilot {
    background: var(--green-light);
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 600;
    text-align: center;
  }
  @media (min-width: 768px) { .trustpilot { font-size: 13px; gap: 10px; padding: 10px 20px; } }
  .trustpilot__stars { color: #00b67a; letter-spacing: 1px; font-size: 12px; }
  .trustpilot__score { font-weight: 800; }

  /* ===== PRODUCT HERO ===== */
  .product-hero {
    padding: 16px 0 24px;
  }
  @media (min-width: 1024px) {
    .product-hero {
      padding: 32px 0 48px;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 48px;
      align-items: start;
    }
  }
  @media (min-width: 1280px) {
    .product-hero { grid-template-columns: 1.4fr 1fr; gap: 56px; }
  }

  /* Gallery */
  .gallery { width: 100%; }
  @media (min-width: 1024px) { .gallery { position: sticky; top: 16px; } }
  .gallery__main {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--bg);
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 768px) { .gallery__main { border-radius: var(--radius-lg); } }
  .gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery__tag {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--red);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
    letter-spacing: 0.02em;
  }
  @media (min-width: 768px) { .gallery__tag { padding: 7px 16px; font-size: 12px; } }
  .gallery__counter {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(0,0,0,0.7);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
  }
  .gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: var(--transition);
  }
  @media (min-width: 768px) { .gallery__nav { display: flex; } }
  .gallery__nav:hover { background: var(--white); transform: translateY(-50%) scale(1.05); }
  .gallery__nav--prev { left: 14px; }
  .gallery__nav--next { right: 14px; }
  .gallery__nav svg { width: 16px; height: 16px; color: var(--ink); }

  .gallery__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }
  .gallery__thumbs::-webkit-scrollbar { display: none; }
  @media (min-width: 768px) {
    .gallery__thumbs {
      gap: 10px;
      margin-top: 14px;
    }
  }
  .thumb {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 8px;
    background: var(--bg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
  }
  @media (min-width: 768px) { .thumb { width: 72px; height: 72px; } }
  .thumb img { width: 100%; height: 100%; object-fit: cover; }
  .thumb.is-active { border-color: var(--ink); }

  /* Product info / right column */
  .product-info { width: 100%; }
  @media (max-width: 1023px) { .product-info { padding-top: 16px; } }

  .rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .stars { color: #FFC107; font-size: 15px; letter-spacing: 1px; }
  .rating-text { font-size: 13px; color: var(--ink-2); font-weight: 600; }
  .rating-link {
    font-size: 12px;
    color: var(--blue-pill);
    text-decoration: underline;
    margin-left: auto;
    font-weight: 600;
  }
  .product-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 14px;
  }
  @media (min-width: 768px) { .product-title { font-size: 26px; } }
  @media (min-width: 1024px) { .product-title { font-size: 30px; line-height: 1.1; } }

  /* Price block */
  .price-block {
    background: var(--yellow-soft);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
  }
  .price-block__info { flex: 1; }
  .price-block__total {
    font-size: 12px;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 600;
  }
  .price-block__current {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--ink);
    line-height: 1.1;
  }
  @media (min-width: 768px) { .price-block__current { font-size: 32px; } }
  .price-block__discount {
    background: var(--red);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-block;
  }
  .price-block__save {
    font-size: 13px;
    color: var(--green-dark);
    font-weight: 800;
    margin-top: 4px;
  }

  /* Selectors */
  .selector-group { margin-bottom: 18px; }
  .selector-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .selector-label__title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .selector-label__num {
    width: 22px; height: 22px;
    background: var(--ink);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .selector-label__link {
    font-size: 12px;
    color: var(--blue-pill);
    text-decoration: underline;
    font-weight: 600;
  }
  .selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .selector__opt {
    position: relative;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .selector__opt:hover { border-color: var(--ink-3); }
  .selector__opt.is-active {
    border-color: var(--ink);
    background: var(--yellow-soft);
  }
  .selector__opt-img {
    width: 44px; height: 44px;
    flex-shrink: 0;
  }
  .selector__opt-img img { width: 100%; height: 100%; object-fit: contain; }
  .selector__opt-body { flex: 1; min-width: 0; }
  .selector__opt-title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
  }
  .selector__opt-prices {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 2px;
    flex-wrap: wrap;
  }
  .selector__opt-old {
    font-size: 10px;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 500;
  }
  .selector__opt-new {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
  }
  .selector__opt-sub {
    font-size: 10px;
    color: var(--ink-3);
    line-height: 1.3;
    font-weight: 500;
  }
  .selector__opt-tag {
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .selector__opt--block { display: block; }

  /* Color swatches */
  .swatches {
    display: flex;
    gap: 10px;
  }
  .swatch-wrap {
    flex: 1;
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 10px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .swatch-wrap.is-active {
    border-color: var(--ink);
    background: var(--yellow-soft);
  }
  .swatch-wrap img {
    width: 40px; height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .swatch__label {
    font-size: 13px;
    font-weight: 700;
  }

  /* Trust list */
  .trust-list {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
  }
  .trust-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 13px;
    color: var(--ink-2);
    font-weight: 600;
  }
  .trust-list li span:first-child {
    font-size: 18px;
    flex-shrink: 0;
  }

  /* E-book bonus */
  .ebook-bonus {
    background: var(--yellow-soft);
    border: 2px dashed var(--yellow-bright);
    border-radius: var(--radius);
    padding: 14px;
    margin-top: 16px;
    position: relative;
  }
  .ebook-bonus__tag {
    position: absolute;
    top: -10px;
    left: 14px;
    background: var(--yellow);
    border: 2px solid var(--yellow-bright);
    color: var(--ink);
    padding: 3px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  .ebook-bonus__body {
    display: flex;
    gap: 14px;
    align-items: center;
  }
  .ebook-bonus__img {
    flex-shrink: 0;
    width: 72px;
    height: 92px;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  }
  .ebook-bonus__img img { width: 100%; height: 100%; object-fit: cover; }
  .ebook-bonus__content { flex: 1; min-width: 0; }
  .ebook-bonus__title {
    font-size: 13px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 5px;
    color: var(--ink);
  }
  .ebook-bonus__sub {
    font-size: 11px;
    color: var(--ink-3);
    line-height: 1.3;
    margin-bottom: 5px;
  }
  .ebook-bonus__price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    flex-wrap: wrap;
  }
  .ebook-bonus__strike {
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 600;
  }
  .ebook-bonus__free {
    color: var(--green-dark);
    font-weight: 800;
  }

  /* CTA */
  .cta-wrap { margin-top: 18px; }
  .cta {
    width: 100%;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 12px;
    padding: 16px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  @media (min-width: 768px) { .cta { padding: 18px; font-size: 16px; } }
  .cta:hover { background: var(--yellow-bright); }
  .cta:active { transform: scale(0.98); }
  .cta svg { width: 18px; height: 18px; }
  .cta__sub {
    text-align: center;
    font-size: 12px;
    color: var(--ink-3);
    margin-top: 12px;
  }
  .cta__sub strong { color: var(--ink-2); }

  /* Payment methods - REAL brand icons */
  .pay-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 12px;
  }
  .pay-icon {
    height: 24px;
    width: 38px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .pay-icon svg { max-width: 100%; max-height: 100%; }

  /* Urgency strip */
  .urgency {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .urgency__icon {
    width: 36px; height: 36px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
  }
  .urgency__body { flex: 1; }
  .urgency__title {
    font-size: 13px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 5px;
  }
  .urgency__bar {
    height: 6px;
    background: var(--line-2);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 5px;
  }
  .urgency__fill {
    height: 100%;
    width: 14%;
    background: var(--red);
    border-radius: 100px;
  }
  .urgency__sub {
    font-size: 11px;
    color: var(--ink-3);
  }
  .urgency__live {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 700;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .urgency__live::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
  }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* Luuk's guarantee */
  .luuk {
    background: var(--white);
    border: 2px solid var(--yellow);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 16px;
    text-align: center;
  }
  .luuk__title {
    font-size: 11px;
    font-weight: 800;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
  }
  .luuk__h {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 14px;
  }
  .luuk__badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 10px;
  }
  .luuk__badge { text-align: center; }
  .luuk__badge-icon {
    width: 40px; height: 40px;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .luuk__badge-icon img { width: 100%; height: 100%; object-fit: contain; }
  .luuk__badge-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
  }
  .luuk__note {
    font-size: 11px;
    color: var(--ink-3);
    line-height: 1.4;
    margin: 0;
  }
  .luuk__note strong { color: var(--ink); font-weight: 800; }

  /* ===== SECTIONS ===== */
  .section { padding: 32px 0; }
  @media (min-width: 768px) { .section { padding: 48px 0; } }
  @media (min-width: 1024px) { .section { padding: 64px 0; } }
  .section--gray { background: var(--bg); }
  .section--white { background: var(--white); }
  .section--dark { background: var(--ink); color: var(--white); }
  .section--yellow { background: var(--yellow); }

  /* Section header */
  .sec-head {
    text-align: center;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
  }
  @media (min-width: 768px) { .sec-head { margin-bottom: 32px; } }
  .sec-head__eyebrow {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 8px;
  }
  .sec-head h2 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    line-height: 1.15;
  }
  @media (min-width: 768px) { .sec-head h2 { font-size: 30px; } }
  @media (min-width: 1024px) { .sec-head h2 { font-size: 36px; } }
  .sec-head p {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
  }
  @media (min-width: 768px) { .sec-head p { font-size: 15px; } }

  /* What's in the box */
  .box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  @media (min-width: 768px) { .box-grid { grid-template-columns: repeat(6, 1fr); gap: 14px; } }
  .box-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--line);
  }
  .box-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--yellow);
  }
  .box-card__img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .box-card__img img { width: 80%; height: 80%; object-fit: contain; }
  .box-card__title {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 3px;
  }
  @media (min-width: 768px) { .box-card__title { font-size: 12px; } }
  .box-card__value {
    font-size: 10px;
    color: var(--ink-3);
    font-weight: 600;
  }

  /* Mediacoach experts */
  .experts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .expert { text-align: center; }
  .expert__avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    background: var(--bg);
  }
  @media (min-width: 768px) { .expert__avatar { width: 100px; height: 100px; } }
.expert__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
  .expert__verified {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 24px; height: 24px;
    background: var(--blue-pill);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .expert__role {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
  }
  .expert__name {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
  }
  @media (min-width: 768px) { .expert__name { font-size: 14px; } }
  .expert-quote {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 18px;
    text-align: center;
    border: 1px solid var(--line);
    font-style: italic;
    font-size: 15px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.4;
    max-width: 560px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .expert-quote { font-size: 18px; padding: 24px; } }
  .expert-quote::before {
    content: '"';
    color: var(--yellow);
    font-size: 42px;
    line-height: 0;
    margin-right: 6px;
    font-weight: 900;
    vertical-align: -10px;
    font-family: Georgia, serif;
  }

  /* Trust logos */
  .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  @media (min-width: 600px) { .logos { grid-template-columns: repeat(3, 1fr); } }
  @media (min-width: 1024px) { .logos { grid-template-columns: repeat(6, 1fr); gap: 14px; } }
  .logo-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    text-align: center;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .logo-card__img {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .logo-card__img img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
  }
  .logo-card__text {
    font-size: 10px;
    color: var(--ink-3);
    line-height: 1.3;
    font-weight: 600;
  }
  @media (min-width: 768px) { .logo-card__text { font-size: 11px; } }

  /* Expect timeline */
  .expect {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .expect { gap: 16px; } }
  .expect-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  @media (min-width: 768px) {
    .expect-item { padding: 20px; gap: 20px; }
  }
  .expect-item__img {
    flex-shrink: 0;
    width: 80px; height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg);
  }
  @media (min-width: 768px) { .expect-item__img { width: 120px; height: 120px; } }
  .expect-item__img img { width: 100%; height: 100%; object-fit: cover; }
  .expect-item__body { flex: 1; }
  .expect-item__day {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    color: var(--ink);
    background: var(--yellow);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
  }
  .expect-item__title {
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  @media (min-width: 768px) { .expect-item__title { font-size: 17px; } }
  .expect-item__desc {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.5;
  }
  @media (min-width: 768px) { .expect-item__desc { font-size: 13px; } }

  /* Why us features */
  .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  @media (min-width: 768px) { .features { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
  .feature {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
  }
  .feature__icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature__icon img { width: 100%; height: 100%; object-fit: contain; }
  .feature__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  @media (min-width: 768px) { .feature__title { font-size: 15px; } }
  .feature__desc {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.5;
  }

  /* Apps */
  .apps {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .apps::-webkit-scrollbar { display: none; }
  @media (min-width: 1024px) {
    .apps { justify-content: center; flex-wrap: wrap; gap: 20px; }
  }
  .app {
    flex: 0 0 90px;
    text-align: center;
  }
  @media (min-width: 768px) { .app { flex: 0 0 110px; } }
  .app__icon {
    width: 72px; height: 72px;
    margin: 0 auto 8px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow);
  }
  @media (min-width: 768px) { .app__icon { width: 88px; height: 88px; } }
  .app__icon img { width: 100%; height: 100%; object-fit: cover; }
  .app__name {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
  }

  /* Compare table */
  .compare {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    max-width: 720px;
    margin: 0 auto;
  }
  .compare__row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: center;
    font-size: 13px;
  }
  @media (min-width: 768px) { .compare__row { font-size: 14px; } }
  .compare__row + .compare__row { border-top: 1px solid var(--line); }
  .compare__row > div {
    padding: 12px 8px;
    text-align: center;
  }
  @media (min-width: 768px) { .compare__row > div { padding: 16px 12px; } }
  .compare__row > div:first-child {
    text-align: left;
    padding-left: 14px;
    font-weight: 700;
    color: var(--ink);
  }
  .compare__row--head {
    background: var(--ink);
    color: var(--white);
    font-weight: 800;
    font-size: 12px;
  }
  .compare__row--head > div:first-child {
    color: var(--white);
    text-align: left;
  }
  .compare__row--head .pro-col {
    background: var(--yellow);
    color: var(--ink);
  }
  .compare__row .pro-col {
    background: var(--yellow-soft);
    font-weight: 700;
  }
  .compare__head-img {
    width: 44px; height: 44px;
    margin: 0 auto 6px;
  }
  @media (min-width: 768px) { .compare__head-img { width: 56px; height: 56px; } }
  .compare__head-img img { width: 100%; height: 100%; object-fit: contain; }
  .check { color: var(--green-dark); font-weight: 800; font-size: 18px; }

  /* Big stats */
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 720px;
    margin: 0 auto;
  }
  .stat {
    text-align: center;
    padding: 16px 8px;
  }
  @media (min-width: 768px) { .stat { padding: 24px 12px; } }
  .stat + .stat { border-left: 1px solid rgba(255,255,255,0.15); }
  .stat__num {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 10px;
  }
  @media (min-width: 768px) { .stat__num { font-size: 44px; } }
  .stat__label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.3;
    font-weight: 500;
  }
  @media (min-width: 768px) { .stat__label { font-size: 13px; } }

  /* UGC Video Section - WITH REAL VIDEO */
  .ugc-video-main {
    max-width: 880px;
    margin: 0 auto;
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    position: relative;
  }
  @media (max-width: 600px) {
    .ugc-video-main { aspect-ratio: 4/5; }
  }
  .ugc-video-main video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .ugc-video-main__poster {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  .ugc-video-main__poster.is-hidden { display: none; }
  .ugc-video-main__play {
    width: 80px; height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    transition: var(--transition);
  }
  .ugc-video-main__poster:hover .ugc-video-main__play {
    transform: scale(1.08);
  }
  .ugc-video-main__play svg { width: 32px; height: 32px; color: var(--ink); margin-left: 4px; }

  /* UGC short carousel */
  .ugc-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 16px 0 8px;
    scrollbar-width: none;
    margin-top: 20px;
  }
  .ugc-carousel::-webkit-scrollbar { display: none; }
  @media (min-width: 1024px) { .ugc-carousel { justify-content: center; flex-wrap: wrap; } }
  .ugc-item {
    flex: 0 0 160px;
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 9/16;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
  }
  @media (min-width: 768px) { .ugc-item { flex: 0 0 180px; } }
  .ugc-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
  .ugc-item__poster {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
  }
  .ugc-item__poster::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
  }
  .ugc-item__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ugc-item__play svg { width: 18px; height: 18px; color: var(--ink); margin-left: 2px; }
  .ugc-item__info {
    position: absolute;
    bottom: 12px; left: 12px; right: 12px;
    z-index: 2;
    color: var(--white);
  }
  .ugc-item__name {
    font-size: 12px;
    font-weight: 800;
  }
  .ugc-item__role {
    font-size: 10px;
    opacity: 0.9;
    margin-top: 2px;
  }

  /* Celebs */
  .celebs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 480px;
    margin: 0 auto;
  }
  .celeb { text-align: center; }
  .celeb__img {
    width: 90px; height: 90px;
    border-radius: 50%;
    margin: 0 auto 8px;
    position: relative;
    background: var(--bg);
  }
  @media (min-width: 768px) { .celeb__img { width: 110px; height: 110px; } }
  .celeb__img img { width: 100%; height: 100%; object-fit: cover; }
  .celeb__verified {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 22px; height: 22px;
    background: var(--blue-pill);
    border: 2px solid var(--white);
    border-radius: 50%;
    color: var(--white);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .celeb__name {
    font-size: 12px;
    font-weight: 800;
  }
  @media (min-width: 768px) { .celeb__name { font-size: 14px; } }

  /* Reviews */
  .reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .reviews { grid-template-columns: repeat(3, 1fr); } }
  .review {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 16px;
  }
  .review__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  .review__stars { color: #FFC107; font-size: 14px; letter-spacing: 1px; }
  .review__verified {
    font-size: 10px;
    background: var(--green-light);
    color: var(--green-dark);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
  }
  .review__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 6px;
  }
  .review__body {
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .review__author {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 600;
  }

  /* Support */
  .support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
  }
  .support-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 20px 14px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
  }
  .support-card:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
  }
  .support-card__icon {
    width: 48px; height: 48px;
    margin: 0 auto 10px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .support-card__icon svg { width: 22px; height: 22px; color: var(--ink); }
  .support-card__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
  }
  .support-card__sub {
    font-size: 12px;
    color: var(--ink-3);
  }

  /* FAQ */
  .faq {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 760px;
    margin: 0 auto;
  }
  .faq__item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
  }
  .faq__item.is-open { border-color: var(--ink); }
  .faq__q {
    padding: 16px 18px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    user-select: none;
  }
  @media (min-width: 768px) { .faq__q { font-size: 15px; padding: 18px 22px; } }
  .faq__chev {
    width: 28px; height: 28px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .faq__chev svg { width: 14px; height: 14px; color: var(--ink); }
  .faq__item.is-open .faq__chev { transform: rotate(180deg); }
  .faq__a {
    padding: 0 18px 18px;
    font-size: 13px;
    color: var(--ink-2);
    line-height: 1.6;
    display: none;
  }
  @media (min-width: 768px) { .faq__a { font-size: 14px; padding: 0 22px 22px; } }
  .faq__item.is-open .faq__a { display: block; }

  /* Sticky ATC - visible on all screen sizes */
  .sticky-atc {
    position: fixed;
    left: 0; right: 0;
    bottom: 0;
    background: var(--white);
    border-top: 2px solid var(--ink);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 50;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(110%);
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .sticky-atc.is-visible { transform: translateY(0); }
  @media (min-width: 768px) {
    .sticky-atc { padding: 12px 24px; gap: 16px; }
  }
  @media (min-width: 1024px) {
    .sticky-atc {
      padding: 14px 32px;
      gap: 20px;
      justify-content: center;
    }
  }
  body { padding-bottom: 80px; }
  .sticky-atc__img {
    width: 44px; height: 44px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
  }
  @media (min-width: 1024px) { .sticky-atc__img { width: 52px; height: 52px; } }
  .sticky-atc__img img { width: 100%; height: 100%; object-fit: cover; }
  .sticky-atc__title {
    display: none;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 240px;
  }
  @media (min-width: 1024px) { .sticky-atc__title { display: block; } }
  .sticky-atc__info { flex-shrink: 0; }
  .sticky-atc__price {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1;
  }
  @media (min-width: 1024px) { .sticky-atc__price { font-size: 20px; } }
  .sticky-atc__strike {
    font-size: 10px;
    color: var(--ink-3);
    text-decoration: line-through;
    font-weight: 600;
    margin-top: 2px;
  }
  @media (min-width: 1024px) { .sticky-atc__strike { font-size: 12px; } }
  .sticky-atc__cta {
    flex: 1;
    background: var(--yellow);
    color: var(--ink);
    border: 2px solid var(--ink);
    border-radius: 10px;
    padding: 12px;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: var(--font);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  @media (min-width: 1024px) {
    .sticky-atc__cta {
      flex: 0 0 auto;
      padding: 14px 32px;
      font-size: 14px;
    }
  }
  .sticky-atc__cta:active { transform: scale(0.97); }
  .sticky-atc__cta svg { width: 14px; height: 14px; }
  @media (min-width: 1024px) { .sticky-atc__cta svg { width: 16px; height: 16px; } }

  /* Modal */
  .modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 100;
  }
  @media (min-width: 768px) { .modal { align-items: center; } }
  .modal.is-open { display: flex; animation: fadeIn 200ms ease forwards; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
  .modal__content {
    background: var(--white);
    border-radius: 20px 20px 0 0;
    width: 100%;
    max-width: 430px;
    padding: 24px 20px 32px;
    position: relative;
    animation: slideUp 280ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  }
  @media (min-width: 768px) {
    .modal__content { border-radius: var(--radius-lg); animation: fadeIn 240ms ease forwards; }
  }
  .modal__handle {
    width: 40px; height: 4px;
    background: var(--line);
    border-radius: 100px;
    margin: 0 auto 16px;
  }
  @media (min-width: 768px) { .modal__handle { display: none; } }
  .modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
  }
  .modal__img {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal__img img { width: 80%; height: 80%; object-fit: contain; }
  .modal h3 {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 4px;
  }
  .modal__price {
    font-size: 14px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
  }
  .modal ul {
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.5;
    margin: 0;
    padding-left: 18px;
  }
  .modal ul li { margin-bottom: 4px; }

  /* Video Modal */
  .video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 16px;
  }
  .video-modal.is-open { display: flex; animation: fadeIn 200ms ease forwards; }
  .video-modal__content {
    position: relative;
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    aspect-ratio: 9/16;
    background: var(--ink);
    border-radius: var(--radius);
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .video-modal__content { max-width: 380px; }
  }
  .video-modal__close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
  }
  .video-modal__close:hover { background: rgba(255,255,255,0.25); }
  .video-modal__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-modal__info {
    position: absolute;
    top: 16px; left: 16px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    z-index: 2;
  }

  /* Newsletter */
  .newsletter {
    background: var(--ink);
    color: var(--white);
    padding: 32px 20px;
    text-align: center;
  }
  @media (min-width: 768px) { .newsletter { padding: 48px 20px; } }
  .newsletter h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 8px;
  }
  @media (min-width: 768px) { .newsletter h3 { font-size: 28px; } }



  /* === SURVEY-DRIVEN ADDITIONS === */

  /* Trust strip - right under title, addresses "is this site trustworthy" */
.trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    align-items: center;
    margin-bottom: 14px;
    padding: 10px 12px;
    padding-right: 51px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}
  .trust-strip__item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--ink-2);
    font-weight: 700;
  }
  .trust-strip__item svg { width: 13px; height: 13px; color: var(--green-dark); }
  .trust-strip__item img { height: 16px; }
  .trust-strip__divider { color: var(--line); }

  /* Vs comparison - addresses "is it worth the price" */
  .vs-compare {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 960px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .vs-compare { grid-template-columns: repeat(3, 1fr); } }
  .vs-card {
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    position: relative;
  }
  .vs-card--winner {
    border-color: var(--ink);
    background: var(--yellow-soft);
  }
  .vs-card__tag {
    position: absolute;
    top: -10px; left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--yellow);
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .vs-card__title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
  }
  .vs-card__sub {
    font-size: 12px;
    color: var(--ink-3);
    margin-bottom: 12px;
  }
  .vs-card__price {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }
  .vs-card__price small {
    font-size: 11px;
    color: var(--ink-3);
    font-weight: 600;
    display: block;
  }
  .vs-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .vs-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.4;
  }
  .vs-card__list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 1px; }
  .vs-card__list .check-icon { color: var(--green-dark); }
  .vs-card__list .cross-icon { color: var(--red); }

  /* Age picker - addresses "will my child actually use it" */
  .age-picker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 880px;
    margin: 0 auto;
  }
  @media (min-width: 600px) { .age-picker { grid-template-columns: repeat(3, 1fr); } }
  .age-card {
    background: var(--white);
    border: 2px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
  }
  .age-card:hover {
    border-color: var(--yellow);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
  }
  .age-card__emoji {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 10px;
  }
  .age-card__age {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .age-card__model {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    background: var(--ink);
    color: var(--yellow);
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
  }
  .age-card__use {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .age-card__quote {
    font-size: 11px;
    color: var(--ink-2);
    font-style: italic;
    line-height: 1.45;
    padding: 10px;
    background: var(--bg);
    border-radius: 8px;
    border-left: 3px solid var(--yellow);
    text-align: left;
  }
  .age-card__quote-author {
    display: block;
    font-style: normal;
    font-weight: 700;
    margin-top: 4px;
    color: var(--ink-3);
  }

  /* Durability proof - addresses "is it really durable" */
  .durability {
    background: var(--ink);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    max-width: 960px;
    margin: 0 auto;
  }
  @media (min-width: 768px) {
    .durability {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      align-items: center;
      padding: 40px;
    }
  }
  .durability__media {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    margin-bottom: 24px;
    background-image: url('https://deplay.nl/cdn/shop/files/IMG_0966_16f690d9-c476-400c-8d68-ad20f79e8d32.jpg?v=1773646953');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  @media (min-width: 768px) { .durability__media { margin-bottom: 0; } }
  .durability__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.5) 100%);
  }
  .durability__media::after {
    content: 'Drop tested · 1,5m';
    position: absolute;
    bottom: 14px; left: 14px;
    background: var(--yellow);
    color: var(--ink);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
  }
  .durability h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.15;
    color: var(--white);
  }
  @media (min-width: 768px) { .durability h2 { font-size: 30px; } }
  .durability p {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 18px;
  }
  .durability__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .durability__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
    color: var(--white);
    font-weight: 600;
  }
  .durability__list svg {
    width: 18px; height: 18px;
    color: var(--yellow);
    flex-shrink: 0;
    margin-top: 1px;
  }

  /* Returning customer banner - addresses repeat buyer signals from survey */
.returning-customer {
    background: linear-gradient(135deg, var(--ink) 0%, #2a2a2a 100%);
    color: var(--white);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    display: none;
}
  .returning-customer__icon {
    width: 36px; height: 36px;
    background: var(--yellow);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }
  .returning-customer__body { flex: 1; min-width: 0; }
  .returning-customer__title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 2px;
  }
  .returning-customer__sub {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
  }
  .returning-customer__link {
    background: var(--yellow);
    color: var(--ink);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Independent/External reviews block - addresses "couldn't find independent reviews" */
  .ext-reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
  }
  @media (min-width: 768px) { .ext-reviews { grid-template-columns: repeat(3, 1fr); } }
  .ext-review {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 18px;
  }
  .ext-review__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }
  .ext-review__platform {
    font-size: 13px;
    font-weight: 900;
  }
  .ext-review__platform--trustpilot { color: #00b67a; }
  .ext-review__platform--kiyoh { color: #1B4D89; }
  .ext-review__platform--google { color: #4285F4; }
  .ext-review__score {
    background: var(--green);
    color: var(--white);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
  }
  .ext-review__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
  }
  .ext-review__stars {
    color: #FFC107;
    font-size: 16px;
    letter-spacing: 1px;
  }
  .ext-review__num {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
  }
  .ext-review__count {
    font-size: 11px;
    color: var(--ink-3);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .ext-review__quote {
    font-size: 12px;
    color: var(--ink-2);
    line-height: 1.5;
    font-style: italic;
    border-left: 3px solid var(--yellow);
    padding-left: 10px;
  }

  /* Luuk's signature in guarantee */
  .luuk-sig {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  .luuk-sig__avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-bright));
    border: 2px solid var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: var(--ink);
    font-size: 13px;
  }
  .luuk-sig__text {
    text-align: left;
    font-size: 11px;
  }
  .luuk-sig__name {
    font-weight: 800;
    color: var(--ink);
  }
  .luuk-sig__role {
    color: var(--ink-3);
  }

  /* Three-card support grid */
  .support-grid--three {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 720px;
  }
  @media (min-width: 600px) { .support-grid--three { grid-template-columns: repeat(3, 1fr); } }

  /* ===== PRO COMPARISON TABLE ===== */
  .compare-pro-wrap {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }
  .compare-pro-hint {
    text-align: center;
    font-size: 11px;
    color: var(--ink-3);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  @media (min-width: 1000px) { .compare-pro-hint { display: none; } }
  .compare-pro-hint svg { width: 14px; height: 14px; }
  .compare-pro {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .compare-pro__scroll {
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .compare-pro__scroll::-webkit-scrollbar { height: 6px; }
  .compare-pro__scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
  .compare-pro__grid {
    display: grid;
    grid-template-columns: 150px repeat(5, 140px);
    min-width: 850px;
  }
  @media (min-width: 1100px) {
    .compare-pro__grid {
      grid-template-columns: 190px repeat(5, 1fr);
      min-width: 0;
    }
  }

  /* Product header cells */
  .cmp-empty {
    background: var(--bg);
    border-bottom: 3px solid var(--ink);
    position: sticky; left: 0; z-index: 3;
  }
  .cmp-product {
    padding: 32px 10px 16px;
    text-align: center;
    position: relative;
    background: var(--white);
    border-bottom: 3px solid var(--ink);
  }
  .cmp-product--winner {
    background: linear-gradient(180deg, var(--yellow) 0%, var(--yellow-soft) 100%);
  }
  .cmp-product--winner-alt {
    background: var(--yellow-soft);
  }
  .cmp-product__tag {
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--yellow);
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .cmp-product__img {
    width: 70px;
    height: 70px;
    margin: 8px auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cmp-product__img img {
    width: 100%; height: 100%; object-fit: contain;
  }
  /* Generic tablet illustration for competitors */
  .cmp-tablet-icon {
    width: 50px;
    height: 60px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  }
  .cmp-tablet-icon::before {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 3px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  }
  .cmp-tablet-icon::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
  }
  .cmp-tablet-icon--fire { background: #00B5E2; }
  .cmp-tablet-icon--fire::after { background: linear-gradient(135deg, #FF9900 0%, #FF6900 100%); }
  .cmp-tablet-icon--ipad { background: #C0C0C2; }
  .cmp-tablet-icon--ipad::after { background: linear-gradient(135deg, #C8E6E0 0%, #A8C0B8 100%); }
  .cmp-tablet-icon--lenovo { background: #3A3A3A; }
  .cmp-tablet-icon--lenovo::after { background: linear-gradient(135deg, #E62D2D 0%, #8B1A1A 100%); }

  .cmp-product__brand {
    font-size: 10px;
    font-weight: 800;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .cmp-product--winner .cmp-product__brand,
  .cmp-product--winner-alt .cmp-product__brand {
    color: var(--ink);
  }
  .cmp-product__model {
    font-size: 13px;
    font-weight: 900;
    margin: 2px 0 8px;
    line-height: 1.15;
  }
  .cmp-product__price {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.02em;
  }
  .cmp-product__price small {
    display: block;
    font-size: 9px;
    color: var(--ink-3);
    font-weight: 600;
    margin-top: 2px;
    text-decoration: line-through;
  }
  .cmp-product__price strong {
    display: block;
    font-size: 8px;
    color: var(--red);
    font-weight: 800;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  /* Feature label + cells */
  .cmp-feature {
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    display: flex;
    align-items: center;
    position: sticky;
    left: 0;
    z-index: 2;
  }
  .cmp-cell {
    padding: 11px 6px;
    font-size: 12px;
    text-align: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    font-weight: 600;
  }
  .cmp-cell--winner {
    background: var(--yellow-soft);
    font-weight: 800;
  }
  .cmp-cell--winner-alt {
    background: rgba(255, 230, 0, 0.08);
    font-weight: 700;
  }
  .cmp-check, .cmp-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .cmp-check { background: var(--green-light); color: var(--green-dark); }
  .cmp-cross { background: #FFEBEE; color: var(--red); }
  .cmp-check svg, .cmp-cross svg { width: 12px; height: 12px; }
  .cmp-partial {
    font-size: 10px;
    color: var(--ink-3);
    font-style: italic;
    font-weight: 600;
  }

  /* Total row */
  .cmp-feature--total {
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
  }
  .cmp-cell--total {
    background: var(--ink);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: -0.02em;
  }
  .cmp-cell--total.cmp-cell--winner {
    background: var(--yellow);
    color: var(--ink);
  }
  .cmp-cell--total.cmp-cell--winner-alt {
    background: var(--yellow-bright);
    color: var(--ink);
  }

  /* Verdict row */
  .cmp-feature--verdict {
    background: var(--bg);
    border-bottom: none;
    font-size: 11px;
    color: var(--ink-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .cmp-cell--verdict {
    padding: 14px 6px;
    border-bottom: none;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 800;
  }
  .cmp-verdict {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .cmp-verdict--best { background: var(--ink); color: var(--yellow); }
  .cmp-verdict--ok { background: var(--line); color: var(--ink-2); }
  .cmp-verdict--meh { background: #FFEBEE; color: var(--red); }
  .cmp-verdict--expensive { background: #FFE0B2; color: #C77700; }

  /* CTA below table */
  .compare-cta {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--ink-2);
  }
  .compare-cta a {
    color: var(--blue-pill);
    font-weight: 700;
    text-decoration: underline;
  }
/*new css sec demo close*/