/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

:root {
    --bg-main: #060608;
    --bg-card: #0f1015;
    --bg-card-hover: #16171e;
    --accent: #d4874e;
    --accent-hover: #b86e3a;
    --accent-glow: rgba(212, 135, 78, 0.15);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    --border: #27272a;
    --border-glow: rgba(212, 135, 78, 0.3);
    --red-alert: #ef4444;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Atmosphere */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 50% 15%, rgba(212, 135, 78, 0.06) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Fade-in animation for scroll sections */
.fade-target {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-target.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ====== HEADER ====== */
header {
    width: 100%;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(12px);
    background: rgba(6, 6, 8, 0.85);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: 0.1em;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: none;
    outline: none;
    box-shadow: 0 0 12px rgba(212, 135, 78, 0.25);
    background: transparent;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: 0.7;
}

.logo-badge {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid var(--red-alert);
    color: var(--red-alert);
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* ====== HERO SECTION ====== */
.hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 2rem auto;
        text-align: center;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--accent-glow);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 135, 78, 0.3);
}

@media (max-width: 968px) {
    .hero-tag {
        align-self: center;
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--text-primary);
    background: linear-gradient(135deg, #ffffff 60%, var(--text-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.25rem;
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Bullets List */
.bullets-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.bullets-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-primary);
    text-align: left;
}

.bullet-icon {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* CTA Container */
.cta-box {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    color: #000000;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--accent-glow);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.18);
    transform: rotate(30deg);
    animation: shine 5s infinite linear;
}

@keyframes shine {
    0% { left: -60%; }
    12% { left: 130%; }
    100% { left: 130%; }
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 135, 78, 0.35);
    background: linear-gradient(135deg, #e8a06a 0%, var(--accent) 100%);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
    padding: 0.5rem 0;
}

.btn-secondary:hover {
    border-bottom-color: var(--accent);
}

.cta-guarantee {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

/* Image Visual Column */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 135, 78, 0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 40px rgba(212, 135, 78, 0.08);
    transition: transform 0.5s ease;
    max-width: 400px;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-glow {
    position: absolute;
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(212, 135, 78, 0.1) 0%, transparent 65%);
    z-index: -1;
    top: -15%;
    left: -15%;
}

.image-container:hover {
    transform: translateY(-6px) rotate(0.5deg);
    border-color: var(--border-glow);
}

/* ====== STATS BANNER ====== */
.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-banner {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(15, 16, 21, 0.5);
    padding: 2rem;
    display: flex;
    justify-content: space-around;
    border-radius: 12px;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .stats-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.stat-item h3 {
    font-size: 2.25rem;
    color: var(--accent);
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 0.25rem;
}

/* ====== FOUR CASES VISUAL SECTION ====== */
.cases-visual-section {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.cases-visual-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .cases-visual-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.cases-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 135, 78, 0.15);
    box-shadow: 0 16px 50px rgba(0,0,0,0.6);
}

.cases-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.cases-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
    pointer-events: none;
}

.cases-visual-text h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.cases-visual-text p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ====== INTERACTIVE PREVIEW SECTION ====== */
.preview-section {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
    text-align: center;
}

.preview-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preview-subtitle {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.preview-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.85rem 1.75rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--accent-glow);
    border-color: var(--accent);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(212, 135, 78, 0.1);
}

.preview-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    text-align: left;
    min-height: 350px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.6);
}

.preview-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.preview-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pane-badge {
    background: rgba(212, 135, 78, 0.1);
    color: var(--accent);
    border: 1px solid rgba(212, 135, 78, 0.3);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.preview-pane h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.preview-pane p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.leak-box {
    background: rgba(0, 0, 0, 0.4);
    border-left: 3px solid var(--accent);
    padding: 1.25rem;
    border-radius: 0 6px 6px 0;
    font-style: italic;
    color: #e5e7eb;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ====== FEATURES GRID ====== */
.features-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ====== VERIFICATION SECTION ====== */
.verification-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.verification-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .verification-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.verification-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(212, 135, 78, 0.1);
    box-shadow: 0 16px 50px rgba(0,0,0,0.6);
}

.verification-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.verification-badge-row {
    margin-bottom: 1.5rem;
}

.verification-seal {
    width: 80px;
    height: 80px;
    opacity: 0.85;
}

.verification-text h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.verification-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.verification-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.vcheck {
    color: var(--accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.verification-list li strong {
    display: block;
    font-size: 1rem;
}

.verification-note {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

/* ====== MID CTA SECTION ====== */
.mid-cta-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 135, 78, 0.03) 50%, transparent 100%);
}

.mid-cta-inner {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.mid-cta-badge {
    width: 56px;
    height: 56px;
    opacity: 0.75;
    margin-bottom: 0.5rem;
}

.mid-cta-inner h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    color: var(--text-primary);
}

.mid-cta-inner p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* ====== FAQ SECTION ====== */
.faq-section {
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-title {
    text-align: center;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-icon {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 250px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ====== FINAL CTA ====== */
.final-cta {
    background: linear-gradient(180deg, transparent 0%, rgba(212, 135, 78, 0.03) 100%);
    border-top: 1px solid var(--border);
    padding: 6rem 2rem;
    text-align: center;
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.final-cta h2 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.final-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ====== FOOTER ====== */
footer {
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
    background: #020203;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.disclaimer {
    max-width: 800px;
    margin: 1.5rem auto 0 auto;
    font-size: 0.75rem;
    line-height: 1.5;
}
