:root {
    --paper: #f6f3ec;
    --paper-2: #efe9de;
    --card: #ffffff;
    --navy: #0e1d2e;
    --navy-2: #14283d;
    --navy-3: #1b3350;
    --ink: #13233a;
    --slate: #5b6577;
    --muted: #8a93a5;
    --gold: #e8a33d;
    --gold-2: #c97c16;
    --grad-gold: linear-gradient(135deg, #f5b95f 0%, #e08a1e 100%);
    --green: #1eb063;
    --green-dark: #0f9d52;
    --red: #c0392b;
    --border: #e5dccb;
    --shadow-sm: 0 4px 14px rgba(14, 29, 46, 0.06);
    --shadow-md: 0 14px 40px rgba(14, 29, 46, 0.1);
    --shadow-lg: 0 30px 80px rgba(14, 29, 46, 0.18);
    --radius: 16px;
    --radius-lg: 24px;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', -apple-system, 'Segoe UI', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 104px 0;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-head h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.section-head h2 em {
    font-style: italic;
    color: var(--gold-2);
}

.section-head p {
    font-size: 1.08rem;
    color: var(--slate);
}

.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-2);
    background: rgba(232, 163, 61, 0.12);
    border: 1px solid rgba(232, 163, 61, 0.3);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-tag--gold {
    color: var(--gold);
    background: rgba(232, 163, 61, 0.14);
    border-color: rgba(232, 163, 61, 0.45);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    font-size: 0.98rem;
    line-height: 1;
    padding: 15px 28px;
    border-radius: 100px;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    will-change: transform;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-lg {
    padding: 18px 34px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: var(--grad-gold);
    color: #241503;
    box-shadow: 0 10px 26px rgba(224, 138, 30, 0.35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(224, 138, 30, 0.45);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: rgba(19, 35, 58, 0.25);
}

.btn-ghost:hover {
    border-color: var(--ink);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border-color: rgba(19, 35, 58, 0.3);
}

.btn-outline:hover {
    background: var(--ink);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c4b 100%);
    color: #fff;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
}

.topbar {
    background: var(--navy);
    color: #f4e9d4;
    text-align: center;
    padding: 9px 16px;
    font-size: 0.85rem;
}

.topbar strong {
    color: var(--gold);
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 243, 236, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
    border-color: var(--border);
}

.nav-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 108px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo img {
    height: 84px;
    width: auto;
    object-fit: contain;
}

.brand-name {
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.brand-dot {
    color: var(--gold-2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.94rem;
    color: var(--slate);
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--ink);
}

.nav-links .nav-cta {
    color: #241503;
    background: var(--grad-gold);
    padding: 11px 22px;
    border-radius: 100px;
    font-weight: 800;
    box-shadow: 0 6px 18px rgba(224, 138, 30, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(224, 138, 30, 0.42);
}

.nav-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    color: var(--green-dark);
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-whatsapp svg {
    width: 20px;
    height: 20px;
}

.nav-whatsapp:hover {
    background: rgba(37, 211, 102, 0.22);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 12px;
    align-items: center;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 96px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(14, 29, 46, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(14, 29, 46, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 20%, black 30%, transparent 75%);
}

.hero-glow {
    position: absolute;
    top: -220px;
    right: -160px;
    width: 640px;
    height: 640px;
    background: radial-gradient(circle, rgba(232, 163, 61, 0.18) 0%, transparent 65%);
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-2);
    background: rgba(232, 163, 61, 0.13);
    border: 1px solid rgba(232, 163, 61, 0.32);
    padding: 8px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.badge-star {
    color: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.4vw, 3.9rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 22px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-2);
}

.hero-sub {
    font-size: 1.13rem;
    color: var(--slate);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-sub strong {
    color: var(--ink);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
}

.hero-trust li {
    position: relative;
    padding-left: 24px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--slate);
}

.hero-trust li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    font-size: 0.68rem;
    font-weight: 800;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
}

.hero-visual {
    position: relative;
}

.hero-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    transform: rotate(1.2deg);
}

.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    animation: floaty 5s ease-in-out infinite;
}

.float-chip strong {
    display: block;
    font-size: 1.05rem;
    color: var(--ink);
    line-height: 1.15;
}

.float-chip span:not(.chip-icon) {
    font-size: 0.78rem;
    color: var(--slate);
    font-weight: 600;
}

.chip-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(232, 163, 61, 0.15);
    color: var(--gold-2);
    flex-shrink: 0;
}

.chip-icon svg {
    width: 20px;
    height: 20px;
}

.chip-1 {
    top: -22px;
    left: -26px;
}

.chip-2 {
    bottom: 40px;
    left: -34px;
    animation-delay: 1.2s;
}

.chip-3 {
    bottom: -24px;
    right: -14px;
    animation-delay: 2.4s;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.stats-bar {
    background: var(--navy);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: center;
}

.stat-num span {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 2.8rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    margin-top: 8px;
    font-size: 0.86rem;
    font-weight: 600;
    color: rgba(244, 233, 212, 0.72);
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 960px;
    margin: 0 auto;
}

.compare-col {
    border-radius: var(--radius-lg);
    padding: 34px 32px;
    background: var(--card);
    box-shadow: var(--shadow-sm);
}

.compare-bad {
    border: 1px solid rgba(192, 57, 43, 0.25);
}

.compare-good {
    border: 2px solid rgba(30, 176, 99, 0.55);
    box-shadow: 0 20px 54px rgba(30, 176, 99, 0.14);
}

.compare-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.08rem;
    margin-bottom: 20px;
}

.compare-x,
.compare-check {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.compare-x {
    background: var(--red);
}

.compare-check {
    background: var(--green);
}

.compare-good .compare-title {
    color: var(--green-dark);
}

.compare-col ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 13px;
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.5;
}

.compare-col ul li:last-child {
    margin-bottom: 0;
}

.compare-bad ul li::before {
    content: "✕";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--red);
    font-weight: 800;
    font-size: 0.85rem;
}

.compare-good ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--green-dark);
    font-weight: 800;
    font-size: 0.85rem;
}

.powers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.power {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.power:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.power-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(232, 163, 61, 0.14);
    color: var(--gold-2);
    margin-bottom: 20px;
}

.power-icon svg {
    width: 28px;
    height: 28px;
}

.power h3 {
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.power p {
    font-size: 0.93rem;
    color: var(--slate);
}

.order-strip {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    max-width: 980px;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.order-step {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
}

.order-num {
    display: grid;
    place-items: center;
    min-width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #241503;
    font-weight: 800;
    font-size: 1rem;
}

.order-step strong {
    display: block;
    font-size: 1rem;
    line-height: 1.3;
}

.order-step span:not(.order-num) {
    font-size: 0.83rem;
    color: var(--slate);
    line-height: 1.4;
}

.order-arrow {
    align-self: center;
    font-size: 1.4rem;
    color: var(--gold-2);
    font-weight: 800;
}

.order-note {
    text-align: center;
    max-width: 640px;
    margin: 22px auto 0;
    font-size: 0.95rem;
    color: var(--slate);
    font-style: italic;
}

.tester {
    background:
        radial-gradient(ellipse 70% 50% at 80% 0%, rgba(232, 163, 61, 0.09) 0%, transparent 60%),
        var(--navy);
    color: #fff;
}

.tester .section-head h2 em {
    color: var(--gold);
}

.tester .section-head p {
    color: rgba(244, 233, 212, 0.75);
}

.tester-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.tester-stage {
    user-select: none;
}

.tester-slides {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--navy-2);
}

.tester-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.45s ease, transform 0.6s ease;
    pointer-events: none;
}

.tester-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.tester-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    -webkit-user-drag: none;
}

.tester-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(14, 29, 46, 0.55);
    backdrop-filter: blur(8px);
    color: #fff;
    z-index: 5;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tester-arrow:hover {
    background: rgba(232, 163, 61, 0.9);
    border-color: transparent;
    color: #241503;
}

.tester-arrow svg {
    width: 22px;
    height: 22px;
}

.tester-arrow--prev {
    left: 14px;
}

.tester-arrow--next {
    right: 14px;
}

.tester-counter {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    background: rgba(14, 29, 46, 0.65);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 13px;
    border-radius: 100px;
}

.tester-counter strong {
    color: var(--gold);
    font-size: 0.92rem;
}

.tester-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 34px 18px 13px;
    background: linear-gradient(to top, rgba(10, 21, 34, 0.88) 30%, transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;
    pointer-events: none;
}

.tester-slide.active .tester-caption {
    opacity: 1;
    transform: translateY(0);
}

.tester-caption strong {
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.tester-caption span {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.3;
}

.tester-thumbs {
    display: flex;
    gap: 10px;
    justify-content: safe center;
    margin-top: 16px;
    padding-bottom: 6px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(232, 163, 61, 0.5) transparent;
}

.tester-thumb {
    position: relative;
    flex: 0 0 auto;
    width: 96px;
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: var(--navy-2);
    padding: 0;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tester-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tester-thumb:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.45);
}

.tester-thumb.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.3), 0 6px 16px rgba(0, 0, 0, 0.4);
}

.tester-stage {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border: 4px solid rgba(255, 255, 255, 0.12);
}

.tester-stage img {
    width: 100%;
    display: block;
}

.tester-tint {
    position: absolute;
    inset: 0;
    mix-blend-mode: color;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.tester-tint.on {
    opacity: 0.62;
}

.tester-live {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(14, 29, 46, 0.72);
    backdrop-filter: blur(6px);
    color: #ffd9a0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 100px;
}

.tester-live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff6b4a;
    animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.8); }
}

.tester-groups {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    align-items: start;
    gap: 18px 34px;
    margin-top: 26px;
}

.tester-group {
    text-align: center;
}

.tester-group-title {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(244, 233, 212, 0.6);
    margin-bottom: 10px;
}

.swatches {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: var(--sw);
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.swatch:hover {
    transform: scale(1.14);
}

.swatch.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.35), 0 4px 12px rgba(0, 0, 0, 0.4);
    transform: scale(1.1);
}

.tester-reset {
    grid-column: 1 / -1;
    justify-self: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.84rem;
    padding: 9px 22px;
    border-radius: 100px;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.tester-reset:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.tester-disclaimer {
    text-align: center;
    font-size: 0.84rem;
    color: rgba(244, 233, 212, 0.55);
    max-width: 560px;
    margin: 20px auto 0;
}

.steps-cta {
    text-align: center;
    margin-top: 48px;
}

.steps {
    background: var(--paper-2);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.step {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 26px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(232, 163, 61, 0.35);
}

.step-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(14, 29, 46, 0.06);
    color: var(--navy-3);
    margin-bottom: 18px;
}

.step-icon svg {
    width: 26px;
    height: 26px;
}

.step h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.91rem;
    color: var(--slate);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 940px;
    margin: 0 auto 40px;
    align-items: stretch;
}

.price-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.price-card--featured {
    border: 2px solid var(--gold);
    box-shadow: 0 24px 64px rgba(232, 163, 61, 0.22);
    transform: scale(1.02);
}

.price-flag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--grad-gold);
    color: #241503;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 100px;
    box-shadow: 0 8px 20px rgba(224, 138, 30, 0.4);
}

.price-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 0.92rem;
    color: var(--slate);
    margin-bottom: 20px;
}

.price-value {
    display: flex;
    flex-direction: column;
    margin-bottom: 22px;
}

.price-from {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.price-number {
    font-family: var(--font-display);
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ink);
}

.price-number .price-per {
    font-size: 1.3rem;
    color: var(--slate);
    font-weight: 500;
}

.price-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
}

.price-list {
    margin-bottom: 26px;
    flex-grow: 1;
}

.price-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.93rem;
    color: var(--slate);
    line-height: 1.45;
}

.price-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 19px;
    height: 19px;
    display: grid;
    place-items: center;
    font-size: 0.66rem;
    font-weight: 800;
    color: #fff;
    background: var(--green);
    border-radius: 50%;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 820px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(30, 176, 99, 0.1) 0%, rgba(232, 163, 61, 0.08) 100%);
    border: 1px solid rgba(30, 176, 99, 0.35);
    border-radius: var(--radius-lg);
    padding: 26px 32px;
}

.guarantee-icon {
    display: grid;
    place-items: center;
    min-width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(30, 176, 99, 0.15);
    color: var(--green-dark);
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
}

.guarantee strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.guarantee span:not(.guarantee-icon) {
    font-size: 0.93rem;
    color: var(--slate);
}

.testimonials {
    background:
        radial-gradient(ellipse 60% 50% at 20% 0%, rgba(232, 163, 61, 0.08) 0%, transparent 60%),
        var(--navy);
    color: #fff;
}

.testimonials .section-head h2 em {
    color: var(--gold);
}

.testimonials .section-head p {
    color: rgba(244, 233, 212, 0.75);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 34px 32px;
    backdrop-filter: blur(6px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial blockquote {
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 22px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(232, 163, 61, 0.5);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonials-cta {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

.lead {
    background: var(--paper-2);
}

.lead-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lead-copy p {
    font-size: 1.04rem;
    color: var(--slate);
    margin-bottom: 26px;
    max-width: 520px;
}

.lead-copy p strong {
    color: var(--ink);
}

.lead-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.lead-gate {
    max-width: 460px;
}

.lead-gate-field {
    display: flex;
    gap: 10px;
}

.lead-gate-field input {
    flex: 1;
    min-width: 0;
    padding: 14px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-gate-field input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(224, 138, 30, 0.15);
}

.lead-gate-field .btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.lead-gate-note {
    font-size: 0.8rem;
    margin-top: 10px;
    color: rgba(20, 20, 20, 0.55);
}

.lead-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.lead-notes a {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--gold-2);
    border-bottom: 1px dashed rgba(201, 124, 22, 0.4);
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.lead-notes a:hover {
    color: var(--ink);
}

.lead-visual {
    display: grid;
    place-items: center;
}

.lead-book {
    width: min(320px, 80vw);
    aspect-ratio: 3/4.1;
    background: linear-gradient(160deg, var(--navy-2) 0%, var(--navy) 100%);
    border-radius: 8px 18px 18px 8px;
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    color: #fff;
    box-shadow: -14px 20px 50px rgba(14, 29, 46, 0.35), inset 4px 0 0 rgba(232, 163, 61, 0.7);
    transform: rotate(2.5deg);
    transition: transform 0.3s ease;
}

.lead-book:hover {
    transform: rotate(0deg) translateY(-6px);
}

.lead-book-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.lead-book-badge {
    background: var(--grad-gold);
    color: #241503;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
}

.lead-book-title {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 600;
    line-height: 1.25;
    margin-top: 26px;
}

.lead-book-lines {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.lead-book-lines span {
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.16);
}

.lead-book-lines span:nth-child(2) {
    width: 85%;
}

.lead-book-lines span:nth-child(3) {
    width: 70%;
}

.lead-book-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq-item.open {
    box-shadow: var(--shadow-sm);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    background: transparent;
    border: none;
    text-align: left;
    padding: 22px 26px;
    font-size: 1.02rem;
    font-weight: 800;
    color: var(--ink);
}

.faq-chev svg {
    width: 20px;
    height: 20px;
    color: var(--gold-2);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chev svg {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-a p {
    padding: 0 26px 24px;
    font-size: 0.94rem;
    color: var(--slate);
}

.contact {
    background:
        radial-gradient(ellipse 60% 50% at 85% 10%, rgba(232, 163, 61, 0.1) 0%, transparent 60%),
        var(--navy);
    color: #fff;
}

.contact .section-tag--gold {
    color: var(--gold);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.8vw, 2.7rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
}

.contact-copy h2 em {
    font-style: italic;
    color: var(--gold);
}

.contact-copy > p {
    color: rgba(244, 233, 212, 0.78);
    margin-bottom: 28px;
    max-width: 460px;
}

.contact-assurances {
    display: grid;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-assurances li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.assurance-check {
    display: grid;
    place-items: center;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(30, 176, 99, 0.2);
    color: #4ade80;
    font-size: 0.78rem;
    font-weight: 800;
    margin-top: 2px;
}

.contact-assurances strong {
    display: block;
    font-size: 0.98rem;
}

.contact-assurances div span:not(.assurance-check) {
    font-size: 0.86rem;
    color: rgba(244, 233, 212, 0.65);
}

.contact-form-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 38px 34px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    color: var(--ink);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--ink);
    background: var(--paper);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(232, 163, 61, 0.18);
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 14px;
}

.form-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(30, 176, 99, 0.14);
    color: var(--green-dark);
    margin-bottom: 18px;
}

.success-icon svg {
    width: 32px;
    height: 32px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--slate);
    font-size: 0.95rem;
    margin-bottom: 22px;
}

.footer {
    background: #0a1522;
    color: rgba(255, 255, 255, 0.75);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 50px;
}

.brand-logo--footer,
.brand-logo--footer img {
    display: inline-block;
    height: 96px;
    width: auto;
}

.footer-brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 0.89rem;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    line-height: 1.6;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credit-link {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit-link:hover {
    color: var(--gold);
}

.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 200;
    display: grid;
    place-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366 0%, #128c4b 100%);
    color: #fff;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease;
}

.wa-float:hover {
    transform: scale(1.08);
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 400;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 30px rgba(14, 29, 46, 0.12);
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
}

.mobile-bar-btn svg {
    width: 18px;
    height: 18px;
}

.mobile-bar-btn--gold {
    background: var(--grad-gold);
    color: #241503;
}

.mobile-bar-btn--wa {
    background: linear-gradient(135deg, #25d366 0%, #128c4b 100%);
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .hero-sub {
        max-width: 100%;
    }
    .hero-visual {
        max-width: 640px;
        margin: 0 auto;
    }
    .chip-1 {
        left: -10px;
    }
    .chip-2 {
        left: -10px;
    }
    .powers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-strip {
        flex-direction: column;
        align-items: stretch;
    }
    .order-arrow {
        display: none;
    }
    .order-step + .order-step {
        border-top: 1px dashed var(--border);
        padding-top: 18px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 76px 0;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 100px 30px 30px;
        margin-left: 0;
        box-shadow: -20px 0 60px rgba(14, 29, 46, 0.18);
        transition: right 0.3s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 110;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.05rem;
        padding: 10px 0;
        width: 100%;
    }
    .nav-whatsapp {
        margin-left: auto;
    }
    .brand-logo img {
        height: 62px;
    }
    .nav-inner {
        gap: 16px;
    }
    .nav-toggle {
        display: flex;
        z-index: 120;
    }
    .compare {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card--featured {
        transform: none;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .lead-inner {
        grid-template-columns: 1fr;
        gap: 44px;
    }
    .tester-groups {
        grid-template-columns: repeat(2, auto);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    body {
        padding-bottom: 74px;
    }
    .mobile-bar {
        display: flex;
    }
}

@media (max-width: 640px) {
    .lead-gate-field {
        flex-direction: column;
    }
    .lead-gate-field .btn {
        width: 100%;
        justify-content: center;
    }
    .nav-inner {
        height: 88px;
        gap: 10px;
    }
    .brand-logo img {
        height: 48px;
    }
    .nav-whatsapp {
        width: 38px;
        height: 38px;
    }
    .nav-whatsapp svg {
        width: 18px;
        height: 18px;
    }
    .wa-float {
        bottom: 88px;
        width: 54px;
        height: 54px;
    }
    .hero {
        padding: 56px 0 72px;
    }
    .float-chip {
        padding: 9px 14px;
    }
    .chip-1 {
        top: -16px;
    }
    .chip-3 {
        right: -6px;
    }
    .powers-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .tester-groups {
        gap: 16px;
    }
    .swatches {
        flex-wrap: wrap;
    }
    .contact-form-wrap {
        padding: 28px 22px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

.footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .tester-arrow {
        width: 38px;
        height: 38px;
    }
    .tester-arrow svg {
        width: 18px;
        height: 18px;
    }
    .tester-thumb {
        width: 74px;
    }
    .tester-caption {
        padding: 24px 12px 9px;
        gap: 8px;
    }
    .tester-caption span {
        font-size: 0.78rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}
