/* ── RESET ── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    background: #fff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ── TOKENS ── */
:root {
    --o: #f97316;
    --p: #ec4899;
    --grad: linear-gradient(135deg, #f97316, #ec4899);
    --dark: #0a0a0c;
    --d2: #111115;
    --d3: #18181e;
    --white: #fff;
    --off: #fafafa;
    --light: #f5f5f5;
    --rule: #e5e0d8;
    --mid: #444;
    --muted: #888;
    --green: #10d97a;
    --red: #e02020;
}

/* ── UTILS ── */
.grad-bar {
    height: 5px;
    background: var(--grad);
}
.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── ANNOUNCE ── */
.ann {
    background: var(--dark);
    padding: 10px 24px;
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ann img {
    height: 18px;
}
.ann .hi {
    color: var(--o);
}

/* ── NAV ── */
nav {
    background: var(--dark);
    padding: 14px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--d3);
}
nav img {
    height: 28px;
}
.nav-cta {
    background: var(--grad);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 20px;
    text-decoration: none;
}

/* ── HERO ── */
.hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 80px,
        rgba(249, 115, 22, 0.025) 80px,
        rgba(249, 115, 22, 0.025) 82px
    );
    pointer-events: none;
}
.hero-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 56px 5vw 0;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ── HERO LEFT ── */
.hero-left {
    padding-bottom: 56px;
}
.kicker {
    font-family: "Oswald", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--o);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.kicker::before {
    content: "";
    display: block;
    width: 22px;
    height: 2px;
    background: var(--o);
}
.hero-h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(48px, 6.5vw, 80px);
    line-height: 0.92;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
    margin-bottom: 20px;
}
.hero-sub {
    font-size: 18px;
    color: #777;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-bullets {
    list-style: none;
    margin-bottom: 28px;
}
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #191919;
    font-size: 15px;
    color: #aaa;
}
.hero-bullets li:last-child {
    border-bottom: none;
}
.chk {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── PROOF ROW ── */
.proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--d3);
    margin-top: 28px;
}
.proof-item {
    padding: 14px 8px;
    text-align: center;
    border-right: 1px solid var(--d3);
}
.proof-item:last-child {
    border-right: none;
}
.proof-n {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 900;
    display: block;
    line-height: 1;
}
.proof-l {
    font-family: "Oswald", sans-serif;
    font-size: 8.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #444;
    display: block;
    margin-top: 4px;
}

/* ── FORM CARD ── */
.form-card {
    background: #fff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
    position: sticky;
    top: 80px;
}
.form-hd {
    background: var(--grad);
    padding: 16px 22px;
}
.form-hd-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.form-hd img {
    height: 18px;
    opacity: 0.7;
    filter: brightness(0) invert(1);
}
.form-tag {
    font-family: "Oswald", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.form-h {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.1;
}
.form-body {
    padding: 20px;
}
.flbl {
    font-family: "Oswald", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 5px;
    margin-top: 12px;
}
.flbl:first-of-type {
    margin-top: 0;
}
.finp {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #e5e0d8;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
}
.finp:focus {
    border-color: var(--o);
}
.finp::placeholder {
    color: #ccc;
}
.otp-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: end;
}
.otp-btn {
    padding: 11px 14px;
    background: var(--dark);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}
.otp-verify {
    display: none;
    margin-top: 10px;
}
.otp-digits {
    display: flex;
    gap: 6px;
    margin-bottom: 6px;
}
.otp-d {
    width: 36px;
    height: 42px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    border: 2px solid #e5e0d8;
    font-family: "Barlow Condensed", sans-serif;
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.2s;
}
.otp-d:focus {
    border-color: var(--o);
}
.otp-msg {
    font-size: 11.5px;
    color: var(--muted);
    display: block;
    margin-top: 2px;
}
.timer {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    color: var(--muted);
}
.sub-btn {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 15px;
    background: var(--grad);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    opacity: 0.4;
}
.sub-btn[disabled] {
    opacity: 0.4;
    pointer-events: none;
}
.form-trust {
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    color: var(--muted);
}
.ty-state {
    display: none;
    padding: 28px 20px;
    text-align: center;
}
.ty-state .ck {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}
.ty-state h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
}
.ty-state p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.6;
    margin-bottom: 16px;
}
.dl-btn {
    display: block;
    padding: 14px;
    background: var(--grad);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

/* ── SECTION WRAPPER ── */
.sec {
    max-width: 1080px;
    margin: 0 auto;
    padding: 64px 5vw;
}
.sec-lbl {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--o);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.sec-lbl::before {
    content: "";
    display: block;
    width: 16px;
    height: 2px;
    background: var(--o);
}
.sec-h {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 3.8vw, 48px);
    line-height: 1;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 10px;
}
.sec-rule {
    height: 3px;
    background: var(--dark);
    margin-bottom: 28px;
}

/* ── PAIN SECTION ── */
.pain-sec {
    background: var(--dark);
}
.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.pain-h {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-size: clamp(34px, 4vw, 50px);
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 18px;
}
.pain-ul {
    list-style: none;
}
.pain-ul li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid #191919;
    font-size: 14.5px;
    color: #aaa;
    line-height: 1.5;
}
.pain-ul li:last-child {
    border-bottom: none;
}
.px {
    color: var(--red);
    font-weight: 900;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}
.pstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.pstat {
    background: var(--d3);
    padding: 22px 16px;
    border: 1px solid #1c1d24;
}
.pstat-n {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}
.pstat-l {
    font-family: "Oswald", sans-serif;
    font-size: 9.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
    display: block;
    margin-top: 5px;
    line-height: 1.4;
}

/* ── REVIEWS ── */
.reviews-sec {
    background: var(--light);
}
.google-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.g-badge {
    background: #fff;
    border: 1px solid var(--rule);
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.g-score {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
}
.g-stars {
    color: #fbbc04;
    font-size: 14px;
    letter-spacing: 2px;
}
.g-count {
    font-family: "Oswald", sans-serif;
    font-size: 9.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--muted);
}
.rv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.rv-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-left: 4px solid var(--o);
    padding: 20px;
}
.rv-stars {
    color: #fbbc04;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.rv-text {
    font-size: 13.5px;
    color: var(--dark);
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}
.rv-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.rv-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}
.rv-name {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
    display: block;
}
.rv-date {
    font-size: 11px;
    color: var(--muted);
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start;
}
.about-h {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 900;
    text-transform: uppercase;
    color: var(--dark);
    line-height: 1.05;
    margin-bottom: 14px;
}
.cred-list {
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}
.cred-list li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.5;
}
.cred-ck {
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
}
.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--rule);
    border: 1px solid var(--rule);
}
.stat-cell {
    background: #fff;
    padding: 18px;
    text-align: center;
}
.stat-n {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}
.stat-l {
    font-family: "Oswald", sans-serif;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #888 !important;
    display: block;
    margin-top: 4px;
}

/* ── FINAL CTA ── */
.final {
    background: var(--dark);
}
.final-inner {
    /* max-width: 720px;
    margin: 0 auto;
    padding: 60px 5vw;
    text-align: center; */
    margin: 0 auto;
    padding: 60px 0vw;
    text-align: center;
    width: 100%;
}
.final-logo {
    margin-bottom: 20px;
}
.final-logo img {
    height: 32px;
}
.final-tag {
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--o);
    display: block;
    margin-bottom: 12px;
}
.final-h {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 8px;
}
.final-sub {
    font-size: 17px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.final-btn {
    display: inline-block;
    padding: 17px 44px;
    background: var(--grad);
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.final-micro {
    font-size: 11px;
    color: #777 !important;
    margin-top: 14px;
    display: block;
    line-height: 1.6;
}

/* ── FOOTER ── */
footer {
    background: #070707;
    padding: 24px 5vw;
    text-align: center;
}
footer img {
    height: 22px;
    opacity: 0.3;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
footer p {
    font-size: 11px;
    color: #777;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
    .hero-inner,
    .pain-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }
    .form-card {
        position: static;
        margin-bottom: 36px;
    }
    .hero-left {
        padding-bottom: 0;
    }
    .rv-grid {
        grid-template-columns: 1fr;
    }
    .proof {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── ACTIVITY BAR ─────────────────────────────────────────────── */
.activity-bar {
    background: var(--d2);
    border-top: 1px solid var(--d3);
    border-bottom: 1px solid var(--d3);
    padding: 14px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    z-index: 5;
    position: relative;
}
.ac-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "Oswald", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #666;
    white-space: nowrap;
}
.ac-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #10d97a;
    animation: ac-blink 1.8s ease-in-out infinite;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(16, 217, 122, 0.5);
}
.ac-dot.orange {
    background: var(--o);
    animation-delay: 0.6s;
    box-shadow: 0 0 6px rgba(249, 115, 22, 0.5);
}
.ac-dot.pink {
    background: var(--p);
    animation-delay: 1.2s;
    box-shadow: 0 0 6px rgba(236, 72, 153, 0.5);
}
@keyframes ac-blink {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.35;
        transform: scale(0.65);
    }
}
.lc-viewers,
.lc-downloads,
.lc-today {
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    font-family: "Barlow Condensed", sans-serif;
    letter-spacing: 0;
}
@keyframes lc-pop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
        color: #10d97a;
    }
    100% {
        transform: scale(1);
    }
}
.lc-pulse {
    animation: lc-pop 0.5s ease;
}
.ac-sep {
    width: 1px;
    height: 20px;
    background: var(--d3);
}

.finp.error {
    border: 1px solid #e53935 !important;
}

.field-error {
    display: block;
    color: #e53935;
    font-size: 13px;
    margin-top: 4px;
    margin-bottom: 12px;
}
.sitelogo_design {
    background: #000000bd;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    height: 80px;
}
@media (max-width: 767px) {
    .nav-cta {
        padding: 12px 8px;
        font-size: 10px;
    }
    .activity-bar {
        justify-content: left;
    }
    .downloaded_textdesign {
        padding-bottom: 10px;
    }
    .mobiledownload_textdesign {
        padding-bottom: 10px;
    }
    .sitelogo_design {
        height: 60px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .sitelogo_design {
        height: 60px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
