@font-face {
    font-family: 'Mulish';
    src: url('Mulish.ttf') format('truetype');
}

:root {
    --tw-brand: #00C8FF;
    --tw-primary: #8B5CF6;
    --tw-secondary: #FF4DA6;
    --tw-extra: #2563EB;
    --tw-dark: #1d2327;
    --tw-text: #3c434a;
    --tw-light: #f4f2ff;
    --tw-radius: 12px;
}

* { box-sizing: border-box; }

article {
    position: relative;
    background: #fff;
    color: var(--tw-text);
    font-family: 'Mulish', sans-serif;
    line-height: 1.6;
}

h1, h2, h3 { color: var(--tw-dark); line-height: 1.2; }
h1 { font-size: 3em; }
h2 { font-size: 2.2em; }
h3 { font-size: 1.3em; }

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

.section-content { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.section-center { text-align: center; }
.section-subtitle { font-size: 1.15em; color: #8c8f94; max-width: 650px; margin-left: auto; margin-right: auto; }
.section-row { padding: 80px 0; position: relative; overflow: hidden; }
.section-light { background: var(--tw-light); }
.section-cols { display: flex; gap: 60px; align-items: center; }
.section-col { flex: 1; }
.section-image { border-radius: var(--tw-radius); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.section-cols-reverse { flex-direction: row-reverse; }

.section-feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.section-feature-list li {
    position: relative;
    padding: 5px 0 5px 28px;
    font-size: 15px;
}

.section-feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--tw-brand);
}

/* ── Hero ──────────────────────────────────────────────────────────── */

.section-hero {
    background: linear-gradient(180deg, #161b27 0%, var(--tw-dark) 30%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-blur {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .2;
    pointer-events: none;
}

.hero-blur-1 { background: var(--tw-primary); top: 10%; left: -100px; }
.hero-blur-2 { background: var(--tw-brand); bottom: -150px; right: -100px; }

.hero-logo { width: 400px; margin-bottom: 20px; }
.hero-tagline { font-size: 1em; text-transform: uppercase; letter-spacing: .15em; color: var(--tw-brand); margin-bottom: 10px; }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.15em; color: rgba(255,255,255,.7); max-width: 700px; margin: 0 auto 40px; }

.hero-box-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-box {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--tw-radius);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: .95em;
}

.hero-box-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hero-box-icon.brand { background: rgba(0,200,255,.2); color: var(--tw-brand); }
.hero-box-icon.primary { background: rgba(139,92,246,.2); color: var(--tw-primary); }
.hero-box-icon.secondary { background: rgba(255,77,166,.2); color: var(--tw-secondary); }
.hero-box-icon.extra { background: rgba(37,99,235,.2); color: var(--tw-extra); }

.hero-stat-box-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-stat-box strong {
    display: block;
    font-size: 2.2em;
    color: var(--tw-brand);
}

.hero-stat-box span {
    font-size: .85em;
    color: rgba(255,255,255,.5);
}

/* ── Sticky Nav ────────────────────────────────────────────────────── */

.section-nav {
    margin: 0;
}

.section-nav-trigger,
.section-nav:not(.is-sticky) {
    transform: translateY(-100%);
}

/* ── Features grid ─────────────────────────────────────────────────── */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--tw-dark);
    color: rgba(255,255,255,.85);
    border-radius: var(--tw-radius);
    padding: 28px;
    transition: box-shadow .2s, transform .2s;
}

.feature-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
    transform: translateY(-2px);
}

.feature-card h3 { color: #fff; }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.feature-icon.brand { background: rgba(0,200,255,.2); color: var(--tw-brand); }
.feature-icon.primary { background: rgba(139,92,246,.2); color: var(--tw-primary); }
.feature-icon.secondary { background: rgba(255,77,166,.2); color: var(--tw-secondary); }
.feature-icon.extra { background: rgba(37,99,235,.2); color: var(--tw-extra); }

.feature-card h3 { margin: 0 0 12px; }

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.feature-card li {
    padding: 3px 0;
    font-size: 14px;
    color: rgba(255,255,255,.7);
}

.feature-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    color: var(--tw-brand);
    margin-right: 8px;
}

.feature-image {
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.1);
    margin-top: 8px;
}

/* ── CTA section ───────────────────────────────────────────────────── */

.section-cta {
    background: var(--tw-dark);
    color: #fff;
    text-align: center;
}

.section-cta h2 { color: #fff; }
.section-cta p { color: rgba(255,255,255,.6); font-size: 1.1em; }

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--tw-dark);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: transform .15s, box-shadow .15s;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(255,255,255,.15);
    color: var(--tw-dark);
}

.cta-btn-large { padding: 18px 40px; font-size: 17px; }

.cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.cta-feature img { width: 24px; height: 24px; }

/* ── Comparison ────────────────────────────────────────────────────── */

.comparison-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.comparison-cell {
    flex: 1;
    min-width: 300px;
    background: #f3f3f7;
    border-radius: 25px;
    padding: 40px;
}

.comparison-cell:first-child {
    background: var(--tw-dark);
    color: #fff;
}

.comparison-logo { max-width: 120px; margin-bottom: 12px; }
.comparison-subtitle { display: block; font-size: 1.1em; font-weight: 700; margin: 30px 0 12px; color: inherit; }
.comparison-cell:first-child .comparison-subtitle { color: rgba(255,255,255,.5); }

.comparison-elements div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
}

.comparison-check { color: #4fe480; font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }
.comparison-x { color: #d63638; font-size: 16px; width: 20px; text-align: center; flex-shrink: 0; }

.comparison-negative div { color: #8c8f94; }

.comparison-summary {
    margin-top: 24px;
    padding: 20px;
    background: #fcf0f1;
    border-radius: 12px;
    font-size: 14px;
    color: #d63638;
}

.comparison-summary strong { font-size: 1.4em; }

/* ── YouTube embed ─────────────────────────────────────────────────── */

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    margin-top: 30px;
    border-radius: var(--tw-radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

.youtube-embed iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ── Reviews ───────────────────────────────────────────────────────── */

.reviews-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.review-box {
    flex: 1;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: var(--tw-radius);
    padding: 30px;
}

.review-quote { color: var(--tw-brand); font-size: 24px; margin-bottom: 12px; }
.review-box p { font-size: 15px; line-height: 1.7; margin: 0 0 20px; }

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author strong { display: block; font-size: 14px; }
.review-author span { font-size: 12px; color: #8c8f94; }

/* ── Pricing ───────────────────────────────────────────────────────── */

#pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    background: radial-gradient(circle at 50% 50%,
        rgba(0,200,255,.25) 0%,
        rgba(139,92,246,.15) 35%,
        rgba(255,77,166,.08) 60%,
        rgba(255,255,255,0) 85%
    );
}

#pricing h2 { margin: 15px 0; font-size: 2em; text-align: center; }
#pricing > p { margin: 0; font-size: 1.15em; max-width: 600px; text-align: center; color: #8c8f94; }

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    gap: 30px;
    max-width: 100%;
}

.pricing-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 300px;
    max-width: calc(100% - 20px);
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ececec;
}

.pricing-col h3 {
    display: flex;
    justify-content: center;
    padding: 15px 10px 10px;
    align-items: center;
    width: 100%;
    font-size: 1.5em;
    text-transform: uppercase;
    background: #000;
    color: #fff;
    border-radius: 5px;
    letter-spacing: 4px;
}

.pricing-img { display: flex; align-items: center; height: 40px; }

.pricing-table-price { text-align:center; font-size: 2.5em; font-weight: 400; margin: 5px 0 20px; }
.pricing-table-price sup { font-size: .5em; }
.pricing-one-time-payment {
   font-size: 0.45em;
  text-transform: uppercase;
}

.pricing-table-features {
    display: flex;
    flex-direction: column;
    gap: 1em;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-table-features li {
    position: relative;
    padding-inline-start: 2em;
}

.pricing-table-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tw-brand);
}

.pricing-col a {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    background: var(--tw-brand);
    color: #fff;
    text-decoration: none;
    font-size: 1em;
    border-radius: 7px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
}

.pricing-col.pricing-col-highlight {
    background: #101049;
    color: #fff;
    width: 400px;
    padding: 15px 40px 10px;
    border: 2px solid var(--tw-brand);
}

.pricing-col.pricing-col-highlight h3 {
    background-color: transparent;
    text-transform: none;
    margin-top: -10px;
    letter-spacing: 1px;
}

.pricing-col.pricing-col-highlight > img { width: 80px; }

.pricing-table-plugin-list {
    list-style: none;
    display: flex;
    gap: 20px 30px;
    flex-wrap: wrap;
    padding: 0;
    margin: 20px auto 0;
}

.pricing-table-plugin-list li {
    position: relative;
    background: #171b27;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 2px solid #383fa1;
    border-radius: 8px;
}

.pricing-table-plugin-list li:not(:last-child)::after {
    content: '+';
    position: absolute;
    right: -30px;
    width: 20px;
    height: 20px;
    font-size: 1.5em;
}

.pricing-col-highlight .pricing-table-plugin-list li img { width: 60px; }

.money-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
    font-size: 18px;
    color: #8c8f94;
}

.money-back i { font-size: 44px; color: var(--tw-brand); }
.money-back p { margin: 0; }

/* ── FAQ ───────────────────────────────────────────────────────────── */

.faq-wrapper {
    display: flex;
    gap: 0 30px;
    margin-top: 40px;
}

.faq-col { flex: 1; }

.faq-item {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
}

.faq-item input[type="checkbox"] { display: none; }

.faq-item label {
    display: block;
    padding: 16px 0;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: var(--tw-dark);
    position: relative;
    padding-right: 30px;
}

.faq-item label::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 16px;
    font-size: 20px;
    color: #8c8f94;
    transition: transform .2s;
}

.faq-item input:checked + label::after {
    content: '\2212';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item input:checked ~ .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 16px;
    font-size: 14px;
    color: var(--tw-text);
    line-height: 1.7;
    margin: 0;
}

/* ── Final CTA ─────────────────────────────────────────────────────── */

.section-final-cta { padding: 100px 0; }
.section-final-cta h2 { font-size: 2.5em; }

/* ── Responsive ────────────────────────────────────────────────────── */

@media (max-width: 960px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .section-cols { flex-direction: column; gap: 30px; }
    .comparison-wrapper { flex-direction: column; }
    .reviews-wrapper { flex-direction: column; }
    .pricing-col-highlight { width: auto; }
    h1 { font-size: 2.2em; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .hero-box-wrapper { flex-direction: column; }
    .faq-wrapper { flex-direction: column; }
    .section-nav-inner { gap: 12px; font-size: 12px; overflow-x: auto; }
    .cta-features { flex-direction: column; gap: 12px; align-items: center; }
}
