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

    :root {
      --charcoal: #1a1a1a;
      --off-white: #fff8f4;
      --warm-white: #ffffff;
      --sand: #f0d5c8;
      --gold: #E8600A;
      --gold-light: #FF7A2B;
      --terracotta: #C4500A;
      --slate: #4a4a4a;
      --light-slate: #8a8a8a;
      --wpp-green: #25D366;
      --wpp-dark: #128C7E;
      --shadow: rgba(232,96,10,0.10);
      --shadow-md: rgba(232,96,10,0.18);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--warm-white);
      color: var(--charcoal);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ─────────────────────────────────── UTILITY */
    .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
    .container--narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
    .eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .eyebrow--center {
      text-align: center;
      display: block;
      margin-bottom: 12px;
    }
    .divider {
      width: 48px; height: 2px;
      background: var(--gold);
      margin: 0 auto 32px;
    }
    .wpp-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--wpp-green);
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-weight: 600;
      font-size: 16px;
      padding: 18px 32px;
      border-radius: 4px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s;
      box-shadow: 0 4px 20px rgba(37,211,102,0.3);
      white-space: nowrap;
    }
    .wpp-btn:hover { background: var(--wpp-dark); transform: translateY(-2px); }
    .wpp-btn svg { flex-shrink: 0; }
    .wpp-btn--large { font-size: 18px; padding: 22px 40px; }
    .wpp-btn--secondary {
      background: transparent;
      border: 2px solid var(--wpp-green);
      color: var(--wpp-green);
      box-shadow: none;
    }
    .wpp-btn--secondary:hover { background: var(--wpp-green); color: #fff; }

    /* ─────────────────────────────────── TOP BAR */
    .topbar {
      background: #1a1a1a;
      color: #ffffff;
      text-align: center;
      padding: 10px 24px;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.02em;
    }
    .topbar strong { color: var(--gold-light); font-weight: 600; }

    /* ─────────────────────────────────── HERO */
    .hero {
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
      padding: 80px 24px 72px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,96,10,0.30) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 20% 80%, rgba(232,96,10,0.12) 0%, transparent 60%);
    }
    .hero-inner {
      max-width: 1120px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,96,10,0.12);
      border: 1px solid rgba(232,96,10,0.30);
      border-radius: 100px;
      padding: 6px 14px;
      font-size: 12px;
      font-weight: 500;
      color: var(--gold-light);
      letter-spacing: 0.05em;
      margin-bottom: 20px;
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 4vw, 54px);
      font-weight: 700;
      color: #fff;
      line-height: 1.12;
      letter-spacing: -0.02em;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }
    .hero-sub {
      font-size: 18px;
      font-weight: 300;
      color: rgba(255,255,255,0.72);
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 480px;
    }
    .hero-bullets {
      list-style: none;
      margin-bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .hero-bullets li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: rgba(255,255,255,0.85);
      font-weight: 400;
    }
    .hero-bullets li::before {
      content: '✓';
      display: flex;
      align-items: center;
      justify-content: center;
      width: 20px; height: 20px;
      background: rgba(232,96,10,0.16);
      border: 1px solid var(--gold);
      border-radius: 50%;
      color: var(--gold-light);
      font-size: 11px;
      font-weight: 700;
      flex-shrink: 0;
    }
    .hero-cta-group {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-top: 32px;
    }
    .hero-micro {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      font-weight: 300;
    }
    .hero-stars {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
    }
    .hero-stars span:first-child {
      color: var(--gold);
      font-size: 16px;
      letter-spacing: 2px;
    }
    .hero-stars span:last-child {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
    }

    .hero-visual {
      position: relative;
    }
    .hero-img-wrap {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(232,96,10,0.16);
      border-radius: 8px;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .hero-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 8px;
    }
    .hero-img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      color: rgba(255,255,255,0.3);
      font-size: 13px;
      text-align: center;
      padding: 24px;
    }
    .hero-img-placeholder svg { opacity: 0.3; }
    .hero-trust-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.20);
      border-radius: 6px;
      margin-top: 16px;
      overflow: hidden;
    }
    .hero-trust-item {
      background: rgba(255,255,255,0.10);
      padding: 14px 12px;
      text-align: center;
    }
    .hero-trust-item strong {
      display: block;
      font-size: 17px;
      font-weight: 700;
      color: var(--gold-light);
      font-family: 'Playfair Display', serif;
      line-height: 1;
      margin-bottom: 4px;
    }
    .hero-trust-item span {
      font-size: 11px;
      color: rgba(255,255,255,0.75);
      letter-spacing: 0.04em;
    }

    /* ─────────────────────────────────── PROBLEM */
    .section-problem {
      background: #ffffff;
      padding: 88px 24px;
    }
    .problem-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
    }
    .problem-inner h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 12px 0 20px;
    }
    .problem-inner h2 em { font-style: italic; color: var(--terracotta); }
    .problem-body {
      font-size: 18px;
      font-weight: 300;
      color: var(--slate);
      line-height: 1.75;
      margin-bottom: 40px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }
    .problem-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 40px;
      text-align: left;
    }
    .problem-card {
      background: #fff;
      border: 1px solid var(--sand);
      border-radius: 8px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }
    .problem-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--terracotta);
    }
    .problem-card-icon {
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      background: rgba(232,96,10,0.08);
      border-radius: 12px;
    }
    .problem-card h3 {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .problem-card p {
      font-size: 14px;
      color: var(--slate);
      line-height: 1.65;
    }
    .problem-callout {
      background: var(--charcoal);
      color: var(--off-white);
      border-radius: 8px;
      padding: 32px 40px;
      margin-top: 48px;
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 2.2vw, 24px);
      font-style: italic;
      font-weight: 600;
      line-height: 1.5;
      position: relative;
    }
    .problem-callout::before {
      content: '"';
      position: absolute;
      top: 16px; left: 28px;
      font-size: 72px;
      color: var(--gold);
      opacity: 0.4;
      font-style: normal;
      line-height: 1;
    }
    .problem-callout em { color: var(--gold-light); font-style: normal; }

    /* ─────────────────────────────────── SOLUTION */
    .section-solution {
      background: var(--warm-white);
      padding: 88px 24px;
    }
    .solution-inner {
      max-width: 1120px;
      margin: 0 auto;
    }
    .solution-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .solution-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 12px 0 16px;
    }
    .solution-header h2 em { font-style: italic; color: var(--gold); }
    .solution-header p {
      font-size: 18px;
      font-weight: 300;
      color: var(--slate);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }
    .steps::before {
      content: '';
      position: absolute;
      top: 32px; left: calc(16.66% + 16px);
      right: calc(16.66% + 16px);
      height: 1px;
      background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold));
      opacity: 0.4;
    }
    .step {
      text-align: center;
      padding: 32px 20px;
    }
    .step-num {
      width: 64px; height: 64px;
      background: var(--gold);
      border: 2px solid var(--gold-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: #ffffff;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
    }
    .step h3 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 600;
      color: var(--charcoal);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    .step p {
      font-size: 15px;
      color: var(--slate);
      line-height: 1.65;
    }
    .step p strong { color: var(--charcoal); font-weight: 600; }
    .solution-cta-block {
      text-align: center;
      margin-top: 56px;
      padding: 48px 40px;
      background: #1a1a1a;
      border: 2px solid var(--gold);
      border-radius: 12px;
      position: relative;
      overflow: hidden;
    }
    .solution-cta-block::before {
      content: '';
      position: absolute;
      top: -40%; left: -20%;
      width: 60%; height: 150%;
      background: radial-gradient(ellipse, rgba(232,96,10,0.12) 0%, transparent 70%);
    }
    .solution-cta-block p {
      font-size: 15px;
      font-weight: 400;
      color: #ffffff;
      margin-top: 12px;
    }
    .solution-cta-block h3 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.5vw, 28px);
      font-weight: 600;
      color: #fff;
      margin-bottom: 8px;
      position: relative;
      z-index: 1;
    }
    .solution-cta-block > p {
      position: relative; z-index: 1;
      color: rgba(255,255,255,0.6);
      font-size: 15px;
      margin-bottom: 28px;
    }
    .solution-cta-block .wpp-btn { position: relative; z-index: 1; }

    /* ─────────────────────────────────── PRODUCTS */
    .section-products {
      background: #fff8f4;
      padding: 88px 24px;
    }
    .products-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .products-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 12px 0 16px;
    }
    .products-header p {
      font-size: 18px;
      font-weight: 300;
      color: var(--slate);
      max-width: 580px;
      margin: 0 auto;
    }
    .product-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      max-width: 1120px;
      margin: 0 auto;
    }
    .product-card {
      background: #fff;
      border: 1px solid var(--sand);
      border-radius: 12px;
      overflow: hidden;
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .product-card:hover {
      box-shadow: 0 12px 40px var(--shadow-md);
      transform: translateY(-4px);
    }
    .product-card-img {
      background: var(--charcoal);
      aspect-ratio: 16/9;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .product-card-img-solo {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .product-card-img-placeholder {
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.25); font-size: 12px; text-align: center; padding: 16px;
    }
    .product-card-tag {
      position: absolute;
      top: 16px; left: 16px;
      background: var(--gold);
      color: var(--charcoal);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 10px;
      border-radius: 3px;
    }
    .product-card-body { padding: 28px; }
    .product-card-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--charcoal);
      margin-bottom: 8px;
      letter-spacing: -0.01em;
    }
    .product-card-body > p {
      font-size: 15px;
      color: var(--slate);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .product-benefits {
      list-style: none;
      margin-bottom: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .product-benefits li {
      position: relative;
      padding-left: 20px;
      font-size: 13px;
      color: var(--light-slate);
      line-height: 1.6;
      text-align: left;
    }
    .product-benefits li::before {
      content: '→';
      position: absolute;
      left: 0;
      top: 1px;
      color: var(--gold);
      font-weight: 700;
    }
    .product-benefits li strong {
      display: block;
      color: var(--charcoal);
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 2px;
    }
    .product-ideal {
      background: var(--off-white);
      border-radius: 6px;
      padding: 12px 16px;
      font-size: 13px;
      color: var(--slate);
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .product-ideal strong { color: var(--charcoal); }

    /* ─────────────────────────────────── DIFERENCIAIS */
    .section-diff {
      background: #1a1a1a;
      padding: 88px 24px;
      color: #fff;
    }
    .diff-header {
      text-align: center;
      margin-bottom: 56px;
      color: #fff;
    }
    .section-diff .eyebrow { color: rgba(255,255,255,0.9); letter-spacing: 0.2em; }
    .diff-header h2 { color: #fff; }
    .diff-header p { color: rgba(255,255,255,0.85); }
    .diff-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 12px 0 16px;
    }
    .diff-header h2 em { font-style: italic; color: var(--gold); }
    .diff-header p {
      font-size: 18px;
      font-weight: 300;
      color: rgba(255,255,255,0.88);
      max-width: 560px;
      margin: 0 auto;
    }
    .diff-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1120px;
      margin: 0 auto;
    }
    .diff-item {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-top: 3px solid var(--gold);
      border-radius: 8px;
      padding: 28px 20px;
      text-align: center;
      transition: background 0.2s;
    }
    .diff-item:hover { background: rgba(255,255,255,0.10); border-color: var(--gold); }
    .diff-icon {
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 64px;
      height: 64px;
      background: rgba(255,255,255,0.08);
      border-radius: 14px;
      margin-left: auto;
      margin-right: auto;
    }
    .diff-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .diff-item p {
      font-size: 13px;
      color: rgba(255,255,255,0.90);
      line-height: 1.6;
    }
    .diff-compare {
      max-width: 800px;
      margin: 56px auto 0;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px;
      overflow: hidden;
    }
    .diff-compare-header {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      background: rgba(255,255,255,0.06);
    }
    .diff-compare-header div {
      padding: 14px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.10);
    }
    .diff-compare-header div:first-child { text-align: left; }
    .diff-compare-header div:last-child { border-right: none; }
    .diff-compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-top: 1px solid rgba(255,255,255,0.10);
    }
    .diff-compare-row div {
      padding: 14px;
      font-size: 14px;
      color: rgba(255,255,255,0.85);
      border-right: 1px solid rgba(255,255,255,0.10);
      display: flex;
      align-items: center;
      gap: 6px;
      line-height: 1.4;
    }
    .diff-compare-row div:first-child { color: rgba(255,255,255,0.70); font-size: 13px; }
    .diff-compare-row div:last-child { border-right: none; color: #fff; font-weight: 500; }
    .diff-compare-row .no { color: rgba(255,80,80,0.8); }
    .diff-compare-row .yes { color: var(--wpp-green); }

    /* ─────────────────────────────────── TESTIMONIALS */
    .section-testimonials {
      background: var(--warm-white);
      padding: 88px 24px;
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .testimonials-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 2.8vw, 40px);
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 12px 0 12px;
    }
    .testimonials-header p {
      font-size: 16px;
      color: var(--light-slate);
    }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1120px;
      margin: 0 auto 48px;
    }
    .testimonial-card {
      background: #fff;
      border: 1px solid var(--sand);
      border-top: 3px solid var(--gold);
      border-radius: 10px;
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .testimonial-stars {
      color: var(--gold);
      font-size: 15px;
      letter-spacing: 2px;
      margin-bottom: 14px;
    }
    .testimonial-text {
      font-size: 15px;
      color: var(--slate);
      line-height: 1.75;
      font-style: italic;
      margin-bottom: 20px;
    }
    .testimonial-text strong {
      color: var(--charcoal);
      font-style: normal;
      font-weight: 600;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .testimonial-avatar {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--sand);
      display: flex; align-items: center; justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--charcoal);
    }
    .testimonial-author-info strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--charcoal);
    }
    .testimonial-author-info span {
      font-size: 12px;
      color: var(--light-slate);
      white-space: nowrap;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 20px;
    }
    .testimonials-social-proof {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      padding-top: 40px;
      border-top: 1px solid var(--sand);
      max-width: 1120px;
      margin: 0 auto;
    }
    .social-proof-item {
      text-align: center;
    }
    .social-proof-item strong {
      display: block;
      font-family: 'Playfair Display', serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1;
      margin-bottom: 4px;
    }
    .social-proof-item span {
      font-size: 13px;
      color: var(--light-slate);
    }
    .social-proof-divider {
      width: 1px; height: 48px;
      background: var(--sand);
    }

    /* ─────────────────────────────────── OBJECTIONS / FAQ */
    .section-faq {
      background: #ffffff;
      padding: 88px 24px;
    }
    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .faq-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 2.8vw, 40px);
      font-weight: 700;
      color: var(--charcoal);
      line-height: 1.2;
      letter-spacing: -0.02em;
      margin: 12px 0 12px;
    }
    .faq-header p {
      font-size: 16px; color: var(--slate);
    }
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #fff;
      border: 1px solid var(--sand);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item:hover { border-color: var(--gold); }
    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      user-select: none;
      font-weight: 500;
      font-size: 15px;
      color: var(--charcoal);
      list-style: none;
    }
    .faq-q::-webkit-details-marker { display: none; }
    .faq-q::after {
      content: '+';
      font-size: 22px;
      color: var(--gold);
      font-weight: 300;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    details[open] .faq-q::after { transform: rotate(45deg); }
    .faq-a {
      padding: 0 24px 20px;
      font-size: 15px;
      color: var(--slate);
      line-height: 1.75;
      border-top: 1px solid var(--sand);
    }
    .faq-a strong { color: var(--charcoal); font-weight: 600; }

    /* ─────────────────────────────────── FINAL CTA */
    .section-final-cta {
      background: #1a1a1a;
      padding: 100px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .section-final-cta .eyebrow { color: rgba(255,255,255,0.9); }
    .section-final-cta h2 { color: #fff; }
    .section-final-cta p { color: rgba(255,255,255,0.85); }
    .section-final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232,96,10,0.20) 0%, transparent 70%);
    }
    .section-final-cta > * { position: relative; z-index: 1; }
    .section-final-cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 3.5vw, 48px);
      font-weight: 700;
      color: #fff;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 12px 0 16px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    .section-final-cta h2 em { font-style: italic; color: var(--gold-light); }
    .section-final-cta p {
      font-size: 18px;
      font-weight: 300;
      color: rgba(255,255,255,0.85);
      max-width: 520px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .final-cta-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .final-cta-micro {
      font-size: 13px;
      color: rgba(255,255,255,0.80);
    }
    .final-trust-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 48px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.15);
    }
    .final-trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: rgba(255,255,255,0.80);
    }
    .final-trust-badge svg { color: var(--gold); }

    /* ─────────────────────────────────── FOOTER */
    footer {
      background: #1a1a1a;
      border-top: 4px solid var(--gold);
      padding: 40px 24px 32px;
      text-align: center;
      color: rgba(255,255,255,0.55);
      font-size: 13px;
    }
    footer a { color: inherit; text-decoration: none; }
    footer a:hover { opacity: 0.8; }
    footer a { color: rgba(255,255,255,0.5); text-decoration: none; }

    /* ─────────────────────────────────── STICKY CTA MOBILE */
    .sticky-cta {
      display: none;
      position: fixed;
      bottom: 0; left: 0; right: 0;
      background: #1a1a1a;
      border-top: 3px solid var(--gold);
      padding: 12px 20px;
      z-index: 200;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }
    .sticky-cta p {
      font-size: 13px;
      color: rgba(255,255,255,0.85);
      line-height: 1.3;
    }
    .sticky-cta p strong { color: #fff; display: block; }
    .sticky-cta .wpp-btn { padding: 13px 20px; font-size: 14px; white-space: nowrap; }

    /* ─────────────────────────────────── ANIMATIONS */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-content > * {
      animation: fadeUp 0.6s ease both;
    }
    .hero-content > *:nth-child(1) { animation-delay: 0.05s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.15s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.25s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.35s; }
    .hero-content > *:nth-child(5) { animation-delay: 0.45s; }
    .hero-content > *:nth-child(6) { animation-delay: 0.55s; }

    /* ─────────────────────────────────── RESPONSIVE */
    @media (max-width: 1024px) {
      .problem-cards { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
      .diff-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .hero h1 { font-size: 34px; }
      .problem-cards { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .steps::before { display: none; }
      .product-cards { grid-template-columns: 1fr; }
      .diff-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .social-proof-divider { display: none; }
      .diff-compare { margin-top: 40px; }
      .diff-compare-header div,
      .diff-compare-row div {
        padding: 10px 8px;
        font-size: 11px;
        line-height: 1.3;
      }
      .diff-compare-header div {
        font-size: 10px;
        letter-spacing: 0.05em;
      }
      .sticky-cta { display: flex; }
      body { padding-bottom: 80px; }
      .section-solution, .section-problem, .section-products, .section-diff,
      .section-testimonials, .section-faq, .section-final-cta { padding: 64px 20px; }
      .hero-sub, .problem-body, .solution-inner p, .section-final-cta p { font-size: 16px; }
      .problem-callout::before { font-size: 48px; }
      .sticky-cta .wpp-btn { padding: 14px 24px; }
      .wpp-btn {
        white-space: normal;
        text-align: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
      }
      .wpp-btn--large {
        font-size: 16px;
        padding: 18px 24px;
      }
      .hero-cta-group,
      .solution-cta-block,
      .final-cta-group {
        text-align: center;
      }
    }
    @media (max-width: 480px) {
      .diff-grid { grid-template-columns: 1fr; }
      .hero-trust-strip { grid-template-columns: 1fr; }
      .final-trust-row { gap: 16px; }
      .gallery-grid { grid-template-columns: 1fr; }
    }
  
    /* ─────────────────────────────────── GALLERY */
    .section-gallery {
      background: #ffffff;
      padding: 88px 24px;
    }
    .gallery-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 700;
      color: var(--charcoal);
      text-align: center;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .gallery-sub {
      text-align: center;
      color: var(--slate);
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 48px;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }
    .gallery-item {
      position: relative;
      border-radius: 6px;
      overflow: hidden;
      aspect-ratio: 1 / 1;
      display: block;
      text-decoration: none;
      background: var(--sand);
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover img { transform: scale(1.06); }
    .gallery-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.72));
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 28px 12px 10px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .gallery-item:hover .gallery-label { opacity: 1; }
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    }
    @media (max-width: 480px) {
      .gallery-grid { grid-template-columns: 1fr; }
    }

  
    .gallery-item--cta {
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .gallery-cta-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      color: #fff;
      text-align: center;
    }
    .gallery-cta-inner span {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
    }
    .gallery-item--cta:hover { opacity: 0.88; }
    .gallery-item--cta img { display: none; }

  
    .diff-compare-row--highlight {
      background: rgba(37,211,102,0.08);
      border-top: 2px solid rgba(37,211,102,0.30);
    }
    .diff-compare-row--highlight > div:first-child {
      color: #ffffff;
      font-weight: 600;
    }
    .diff-compare-row--highlight .yes {
      color: #25D366;
      font-weight: 700;
      background: rgba(37,211,102,0.10);
    }

  
    @media (min-width: 1024px) {
      .product-cards { grid-template-columns: repeat(3, 1fr); }
    }

  
    .product-card-img--gallery { position: relative; }
    .product-img-slider { position: relative; width: 100%; height: 100%; overflow: hidden; }
    .product-img-slider .slide {
      width: 100%; height: 100%; object-fit: cover; display: none;
      position: absolute; top: 0; left: 0;
    }
    .product-img-slider .slide.active { display: block; position: relative; }
    .slide-btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      background: rgba(0,0,0,0.45); color: #fff; border: none;
      font-size: 22px; padding: 6px 10px; cursor: pointer; z-index: 10;
      border-radius: 4px; line-height: 1; transition: background 0.2s;
    }
    .slide-btn:hover { background: rgba(232,96,10,0.85); }
    .slide-prev { left: 8px; }
    .slide-next { right: 8px; }
    .slide-dots {
      position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 6px; z-index: 10;
    }
    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.5); cursor: pointer; transition: background 0.2s;
      border: none; padding: 0;
    }
    .dot.active { background: #fff; }

    /* ─────────────────────────────────── FOCUS & ACCESSIBILITY */
    .wpp-btn:focus-visible,
    .faq-q:focus-visible,
    .slide-btn:focus-visible,
    .dot:focus-visible,
    .gallery-item:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

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

