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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #e0e0e0;
    background-color: #0d0d12;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* === Button Reset === */
button.landCfg {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

/* === Layout === */
.wrap {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* === Floating Nav === */
.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(13, 13, 18, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: padding 0.3s ease, background 0.3s ease;
    padding: 1rem 1.5rem;
}

.floating-nav.scrolled {
    padding: 0.6rem 1.5rem;
    background: rgba(13, 13, 18, 0.95);
}

.floating-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-brand-img {
    height: 36px;
    width: auto;
    background: #ffffff;
    border-radius: 6px;
    padding: 4px 10px;
    transition: height 0.3s ease;
}

.floating-nav.scrolled .nav-brand-img {
    height: 28px;
}

.nav-actions {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.15s ease;
}

.nav-btn--solid {
    background: #C0392B;
    color: #fff;
}

.nav-btn--solid:hover {
    background: #E74C3C;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(192, 57, 43, 0.4);
}

.nav-btn--outline {
    background: transparent;
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.nav-btn--outline:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #888;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === Mobile Dropdown === */
.mobile-dropdown {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 199;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(16px);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-dropdown.open {
    display: flex;
}

.mobile-dropdown-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
}

.mobile-dropdown-btn--solid {
    background: #C0392B;
    color: #fff;
}

.mobile-dropdown-btn--outline {
    background: transparent;
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

/* === Hero Section === */
.hero-section {
    position: relative;
    padding: 10rem 1.5rem 4rem;
    text-align: center;
    background: linear-gradient(160deg, #0d0d12 0%, #1a1020 40%, #2a1525 70%, #0d0d12 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(192, 57, 43, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #C0392B;
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.25);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-section h1 {
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.85rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.hero-btn--primary {
    background: #C0392B;
    color: #fff;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.hero-btn--primary:hover {
    background: #E74C3C;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.5);
}

.hero-btn--ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.hero-btn--ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

/* === Hero Stats Bar === */
.hero-stats {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.stat-pill strong {
    color: #C0392B;
    font-weight: 700;
}

/* === Sticky Bottom Bar === */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(13, 13, 18, 0.92);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 0.6rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-bar-btn {
    flex: 1;
    max-width: 240px;
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 8px;
    text-align: center;
    transition: all 0.15s ease;
}

.sticky-bar-btn--primary {
    background: #C0392B;
    color: #fff;
    box-shadow: 0 2px 12px rgba(192, 57, 43, 0.35);
}

.sticky-bar-btn--primary:hover {
    background: #E74C3C;
}

.sticky-bar-btn--secondary {
    background: transparent;
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.sticky-bar-btn--secondary:hover {
    color: #fff;
}

/* === Main === */
main {
    padding-bottom: 2rem;
}

/* === Opening Section === */
.opening {
    padding: 4rem 0 2rem;
}

.opening-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.opening-logo-box {
    flex-shrink: 0;
}

.opening-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 14px;
    background: #ffffff;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.opening-text h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.8rem;
}

.opening-text p {
    color: #999;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* === Timeline === */
.timeline {
    padding: 1rem 0 2rem;
}

.tl-card {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tl-marker {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.3rem;
}

.tl-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.25);
    color: #C0392B;
    font-size: 0.85rem;
    font-weight: 800;
}

.tl-body {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
}

.tl-body h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.tl-body p {
    color: #999;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.8;
}

.tl-body p:last-child {
    margin-bottom: 0;
}

.tl-body strong {
    color: #e0e0e0;
}

.tl-media {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.tl-media img {
    width: 100%;
    height: auto;
    display: block;
}

/* === Feature Grid === */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.feature-tile {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.feature-tile:hover {
    border-color: rgba(192, 57, 43, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
}

.feature-tile h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.feature-tile p {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    margin: 0;
}

/* === Price Cards === */
.price-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: border-color 0.2s ease;
}

.price-card--highlight {
    border-color: rgba(192, 57, 43, 0.4);
    background: rgba(192, 57, 43, 0.06);
}

.price-card-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #777;
    margin-bottom: 0.5rem;
}

.price-card-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.3rem;
}

.price-card--highlight .price-card-amount {
    color: #C0392B;
}

.price-card-detail {
    display: block;
    font-size: 0.75rem;
    color: #666;
}

/* === Info Box === */
.info-box {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: rgba(192, 57, 43, 0.06);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.7;
}

.info-box strong {
    color: #C0392B;
}

/* === Balance (Pros & Cons) === */
.balance-section {
    padding: 2rem 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 2rem;
}

.balance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.balance-col {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
}

.balance-col h3 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.balance-col--plus h3 { color: #4ecdc4; }
.balance-col--minus h3 { color: #C0392B; }

.balance-col ul {
    list-style: none;
    padding: 0;
}

.balance-col li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: #999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-left: 1.5rem;
    position: relative;
}

.balance-col li:last-child {
    border-bottom: none;
}

.balance-col--plus li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: 700;
    font-size: 0.8rem;
}

.balance-col--minus li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #C0392B;
    font-weight: 700;
    font-size: 0.8rem;
}

/* === FAQ Accordion === */
.faq-section {
    padding: 2rem 0 3rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.accordion-item[open] {
    border-color: rgba(192, 57, 43, 0.3);
}

.accordion-trigger {
    display: block;
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #e0e0e0;
    cursor: pointer;
    list-style: none;
    transition: color 0.15s ease;
}

.accordion-trigger::-webkit-details-marker { display: none; }

.accordion-trigger::after {
    content: "+";
    float: right;
    font-size: 1.2rem;
    font-weight: 300;
    color: #666;
    transition: transform 0.2s ease;
}

.accordion-item[open] .accordion-trigger::after {
    content: "−";
    color: #C0392B;
}

.accordion-trigger:hover {
    color: #fff;
}

.accordion-content {
    padding: 0 1.5rem 1.2rem;
}

.accordion-content p {
    color: #888;
    font-size: 0.92rem;
    line-height: 1.7;
}

/* === Verdict === */
.verdict-section {
    padding: 2rem 0;
}

.verdict-card {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.12), rgba(192, 57, 43, 0.04));
    border: 1px solid rgba(192, 57, 43, 0.25);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
}

.verdict-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.2rem;
}

.verdict-card p {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.verdict-actions {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.verdict-btn {
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.verdict-btn--primary {
    background: #C0392B;
    color: #fff;
    box-shadow: 0 4px 20px rgba(192, 57, 43, 0.4);
}

.verdict-btn--primary:hover {
    background: #E74C3C;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 57, 43, 0.5);
}

.verdict-btn--ghost {
    background: transparent;
    color: #999;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.verdict-btn--ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* === Footer === */
.site-footer {
    padding: 3rem 0 5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.site-footer p {
    font-size: 0.78rem;
    color: #555;
}

/* === Responsive === */
@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        padding: 8rem 1.5rem 3rem;
    }

    .hero-section h1 {
        font-size: 1.7rem;
    }

    .hero-desc {
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 0.5rem;
    }

    .stat-pill {
        font-size: 0.7rem;
        padding: 0.3rem 0.8rem;
    }

    .opening-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tl-card {
        flex-direction: column;
        gap: 0;
    }

    .tl-marker {
        width: auto;
        flex-direction: row;
        padding: 0 0 0.8rem;
    }

    .tl-body {
        padding: 1.5rem;
    }

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

    .price-cards {
        grid-template-columns: 1fr;
    }

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

    .verdict-card {
        padding: 2rem 1.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .verdict-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 1.4rem;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* === Prelinker Form === */
.ptprelinker-register-form {
    --ptprelinker-css-bg-primary-register-gold: #1a1a22 !important;
    --ptprelinker-css-ft-primary-register-gold: #C0392B !important;

    --ptprelinker-css-bg-success: #C0392B !important;
    --ptprelinker-css-border-success: #C0392B !important;
    --ptprelinker-css-border-hover-success: #E74C3C !important;
    --ptprelinker-css-hover-success: #E74C3C !important;
    --ptprelinker-css-ft-success: #fff !important;

    --ptprelinker-css-bg-body: #0d0d12 !important;
    --ptprelinker-css-middle: #e0e0e0;

    --ptprelinker-css-bg-icon-register-gold: rgba(192, 57, 43, 0.1) !important;
    --ptprelinker-css-color-icon-register-gold: #C0392B !important;

    --ptprelinker-css-bg-input: #1a1a22 !important;
    --ptprelinker-css-ft-placeholder: #666 !important;
}
