/* ===== CUSTOM PROPERTIES ===== */
:root {
    --accent: #3498db;
    --accent-hover: #2980b9;
    --cta: #e67e22;
    --cta-hover: #d35400;
    --surface: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.06);
    --text-muted: #888;
    --text-body: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000;
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    line-height: 1.2;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.accent {
    color: var(--accent);
}

.section {
    position: relative;
    padding: 80px 0;
}

/* ===== HEADER ===== */
.header {
    background: #000;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__logo {
    width: 80px;
    height: auto;
}

/* ===== HERO ===== */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-image: url('1.png');
    background-size: cover;
    background-position: center;
}

/* Original Kajabi: col-7 on right = 7/12 → use 5fr / 7fr */
.hero__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    width: 100%;
    min-height: 80vh;
    align-items: center;
}

.hero__spacer {
    /* Empty left column — shows device mockup through bg */
    display: block;
}

/* Right column — text with right-side breathing room */
.hero__content {
    padding: 60px 30px 60px 155px;
}

.hero h1 {
    font-size: clamp(1.2rem, 1.8vw, 1.75rem);
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: normal;
    text-transform: uppercase;
    color: #fff;
}

.hero p.hero__sub {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: #ecf0f1;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__cta-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.hero__notion {
    display: flex;
    align-items: center;
}

.hero__notion img {
    height: 22px;
    width: auto;
    opacity: 0.85;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all .3s;
    cursor: pointer;
    border: none;
    letter-spacing: .5px;
    -webkit-tap-highlight-color: transparent;
    min-height: 48px;
    /* touch target */
}

.btn--primary {
    background: var(--accent);
    color: #ecf0f1;
}

.btn--primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(52, 152, 219, 0.3);
}

.btn--primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn--orange {
    background: var(--cta);
    color: #fff;
}

.btn--orange:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(230, 126, 34, 0.3);
}

.btn--orange:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn--full {
    width: 100%;
}

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

/* ===== VALUE ===== */
.value h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.value p {
    color: #ecf0f1;
    font-weight: 700;
    max-width: 900px;
    margin-bottom: 16px;
    font-size: 1.02rem;
}

/* ===== SECTION LABELS & INTROS ===== */
.section-label {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: .9rem;
}

h2.section-label {
    font-size: .9rem;
}

.section-intro {
    margin-bottom: 50px;
}

.reviews__heading {
    font-size: 1.6rem;
    margin-top: 6px;
}

/* ===== SKIP LINK ===== */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    color: #fff;
    background: var(--accent);
    padding: 12px 20px;
    border-radius: 0 0 8px 0;
    z-index: 200;
    font-weight: 600;
    font-size: .9rem;
}

.skip-link:focus {
    left: 0;
    top: 0;
    position: absolute;
}


/* ===== PILLARS ===== */
.pillar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.pillar--rev> :first-child {
    order: 2;
}

.pillar--rev> :last-child {
    order: 1;
}

.pillar h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 18px;
}

.pillar p {
    color: #ecf0f1;
    font-weight: 700;
    font-size: 1.02rem;
}

.pillar__img {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pillar__img img {
    width: 100%;
    display: block;
}

/* ===== BENEFITS ===== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.b-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all .3s;
}

.b-card:hover {
    border-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.b-card:active {
    border-color: rgba(52, 152, 219, 0.2);
    transform: translateY(-2px);
}

.b-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
}

.b-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.b-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.b-card p {
    color: #888;
    font-size: .9rem;
}

/* ===== REVIEWS ===== */
.reviews__grid {
    column-count: 2;
    column-gap: 20px;
    margin-top: 40px;
}

.rev-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: #0d0d0d;
    transition: transform .3s;
    break-inside: avoid;
    margin-bottom: 20px;
}

.rev-card:hover {
    transform: translateY(-4px);
}

.rev-card img {
    width: 100%;
    display: block;
}

/* ===== FAQ ===== */
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
}

.faq__title h2 {
    font-size: 1.6rem;
    font-weight: 700;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #121211;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.faq-item__q {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: .95rem;
    color: #ddd;
    transition: color .3s;
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
}

.faq-item__q:hover,
.faq-item__q:active {
    color: var(--accent);
}

.faq-item__q::after {
    content: '+';
    font-size: 1.3rem;
    color: #555;
    transition: transform .3s;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-item.active .faq-item__q::after {
    content: '−';
    color: var(--accent);
}

.faq-item__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    padding: 0 24px;
}

.faq-item.active .faq-item__a {
    /* max-height set dynamically by JS via scrollHeight */
    padding: 0 24px 20px;
}

.faq-item__a p {
    color: var(--text-muted);
    font-size: .9rem;
}

/* ===== PRICING ===== */
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.p-card {
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.p-card--free {
    background: #111;
}

.p-card--paid {
    background: #222;
    border: 1px solid rgba(230, 126, 34, 0.4);
    box-shadow: 0 0 40px rgba(230, 126, 34, 0.1);
}

.p-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.p-card__amt {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ecf0f1;
}

.p-card__amt--orange {
    color: var(--cta);
}

.p-card__sub {
    color: #fff;
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.p-card ul {
    text-align: left;
    margin-bottom: 30px;
}

.p-card li {
    padding: 8px 0;
    font-size: .95rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.p-card li::before {
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 2px;
    content: '✓';
    color: #2ecc71;
}

.p-card--free li::before {
    content: '✗';
    color: #e74c3c;
}

.p-card__footer-text {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* ===== FOCUS VISIBLE ===== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.btn:focus-visible {
    outline-offset: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer p {
    color: #555;
    font-size: .8rem;
    margin-bottom: 12px;
}

.footer__links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__links a {
    color: #888;
    font-size: .8rem;
    text-decoration: none;
    transition: color .3s;
}

.footer__links a:hover {
    color: #fff;
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s, transform .8s;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .8s, transform .8s;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .8s, transform .8s;
}

.fade-in.visible,
.fade-left.visible,
.fade-right.visible {
    opacity: 1;
    transform: translate(0);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {

    .fade-in,
    .fade-left,
    .fade-right {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ===== RESPONSIVE — TABLET (≤900px) ===== */
@media (max-width:900px) {

    .pillar,
    .faq__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero {
        background-position: center top;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero__spacer {
        height: 350px;
    }

    .hero__content {
        padding: 30px 20px 40px;
        text-align: left;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .pillar--rev> :first-child {
        order: 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .reviews__grid {
        column-count: 1;
    }

    .faq__grid {
        grid-template-columns: 1fr;
    }

    .faq__title {
        text-align: center;
    }

    .hero__cta-wrap {
        align-items: flex-end;
    }
}

/* ===== RESPONSIVE — PHONE (≤600px) ===== */
@media (max-width:600px) {
    .header__logo {
        height: 36px;
        width: auto;
    }

    .hero__spacer {
        height: 300px;
    }

    .hero__content {
        padding: 20px 16px 30px;
        text-align: left;
    }

    .hero h1 {
        font-size: 1.25rem;
    }

    .hero p.hero__sub {
        font-size: .92rem;
    }

    .hero__actions {
        align-items: flex-start;
    }

    .btn {
        font-size: .9rem;
        padding: 14px 24px;
        width: 100%;
        justify-content: center;
    }

    .hero__cta-wrap {
        width: 100%;
        align-items: flex-end;
    }

    .section {
        padding: 50px 0;
    }

    .value h2 {
        font-size: 1.3rem;
    }

    .pillar h3 {
        font-size: 1.5rem;
    }

    .pillar {
        padding: 40px 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
    }


    .p-card__amt {
        font-size: 2.2rem;
    }

    .faq-item__q {
        font-size: .85rem;
        padding: 16px 18px;
    }

    .faq-item__a p {
        font-size: .82rem;
    }
}