/* 
/*
   Premium Design System
   Theme: Emotional Clarity (Deep Blue, Teal, Glassmorphism)
*/

:root {
    /* Colors */
    --primary: #0f172a;
    /* Deep Slate/Blue */
    --accent: #0d9488;
    /* Teal */
    --accent-glow: rgba(13, 148, 136, 0.4);
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-body: #f1f5f9;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --section-spacing: 5rem;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: url('assets/bg_abstract.png');
    background-size: cover;
    background-attachment: fixed;
    background-blend-mode: soft-light;
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: transparent;
    /* Fallback if noise image missing */
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

.text-danger {
    color: #dc2626;
}

.highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-glow);
    z-index: -1;
    border-radius: 4px;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(13, 148, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(13, 148, 136, 0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 1s ease-out forwards;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    5% {
        transform: scale(1.05);
    }

    10% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.05);
    }

    20% {
        transform: scale(1);
    }

    100% {
        transform: scale(1);
    }
}

.btn-heartbeat {
    animation: heartbeat 4s ease-in-out infinite;
    transform-origin: center;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo .dot {
    color: var(--accent);
    font-size: 2rem;
    line-height: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-sm {
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--primary);
}

.btn-sm:hover {
    background: var(--primary);
    color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.btn-glow {
    animation: pulse-glow 2s infinite;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px var(--accent-glow);
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Nav spacing */
    position: relative;
    /* Hero gradient overlay for text readability */
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-text .lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(13, 148, 136, 0.3);
}

/* Premium Image Styling */
.image-wrapper-hero {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.15);
}

.premium-image-frame {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.shadow-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Sections */
.section {
    padding: var(--section-spacing) 0;
}

/* Identification */
.identification .card-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
}

.warning-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fee2e2;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    transition: transform 0.3s ease;
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    border-color: var(--accent);
}

.feature-card .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Who is this (Dark Mode) */
.dark-mode {
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.dark-mode::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/bg_abstract.png');
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.dark-mode h2 {
    color: white;
    margin-bottom: 2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.premium-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
}

.check-icon {
    color: var(--accent);
}

/* Offer (Dual Grid) */
.offer {
    text-align: center;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    /* Align cards vertically in center */
    margin-top: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    width: 100%;
    max-width: 380px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Fix for Badge Cutoff */
.pricing-card.glass-card {
    overflow: visible;
    /* Override global glass-card overflow */
}

/* Simple Card */
.pricing-card.simple {
    border: 1px solid #e2e8f0;
    z-index: 1;
}

/* Complete/Popular Card */
.pricing-card.complete {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    /* Slight emphasized size */
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.25);
}

.pricing-card.complete:hover {
    transform: scale(1.08);
}

.best-offer-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0ea5e9;
    /* Vivid Blue from reference */
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(14, 165, 233, 0.3);
}

/* Card Internals */
.pricing-header h3 {
    font-family: var(--font-body);
    /* More modern look for offer */
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.pricing-card.complete .pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.price-display {
    margin: 1.5rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.price-anchor {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.price-final {
    color: #0ea5e9;
    /* Blue like reference */
    font-weight: 800;
}

.price-final .currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 2px;
}

.price-final .amount {
    font-size: 3.5rem;
    line-height: 1;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.4;
}

.pricing-features li i {
    color: #0ea5e9;
    /* Checkmark color */
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Button Styles for Cards */
.btn-outline {
    display: block;
    width: 100%;
    padding: 1rem;
    border: 2px solid #0ea5e9;
    color: #0ea5e9;
    background: transparent;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #0ea5e9;
    color: white;
}

.pricing-card.complete .btn-primary {
    background: #0ea5e9;
    border-radius: 8px;
    font-weight: 700;
}

.pricing-card.complete .btn-primary:hover {
    background: #0284c7;
}

.guarantee-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mobile Offer Stack */
@media (max-width: 768px) {
    .pricing-container {
        flex-direction: column;
        gap: 3rem;
    }

    .pricing-card.complete {
        transform: scale(1);
        order: -1;
        /* Show best offer first on mobile */
    }

    .pricing-card.complete:hover {
        transform: scale(1);
    }
}

/* Reveal Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {

    .hero-grid,
    .split-layout,
    .identification .card-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    /* Reorder for mobile: Image top or bottom? */
    .warning-icon {
        margin: 0 auto;
    }
}

/* Closing max-width: 768px */

/* =========================================
   Premium Sections (Testimonials, Author, FAQ)
   ========================================= */

.footer {
    text-align: center;
    padding: 4rem 0 2rem;
    background: transparent;
    margin-top: 4rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* FAQ Styles - Minimalist & Delicate */
.faq-list {
    display: flex;
    flex-direction: column;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item[open] {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-question {
    padding: 1.25rem 0.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #e2e8f0;
    /* Light text for dark mode */
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    position: relative;
    z-index: 10;
    /* Ensure it floats above any potential overlaps */
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

details[open] .faq-question::after {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-answer {
    padding: 0 0.5rem 1.5rem;
    color: #94a3b8;
    /* Muted text */
    line-height: 1.6;
    font-size: 0.95rem;
    animation: fade-in-up 0.3s ease-out;
}

/* Testimonials - Elevation & Polish */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.15);
}

.stars {
    color: #fbbf24;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.7;
}

.user-info {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1rem;
}

.user-info strong {
    color: var(--primary);
    font-weight: 700;
}

/* Author Section - Glass Panel */
.author-sect {
    position: relative;
    z-index: 2;
}

.author-box {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    /* Glass feel */
    backdrop-filter: blur(20px);
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.author-img {
    width: 280px;
    height: 320px;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 20px 20px 0px rgba(13, 148, 136, 0.1);
    /* Stylized shadow */
}

.author-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.author-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .author-box {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .author-img {
        width: 100%;
        max-width: 300px;
        height: 300px;
        box-shadow: none;
    }
}

.bonus-value {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-left: 0.5rem;
    font-weight: 400;
}

/* Guarantee Section specific */
.guarantee-sect {
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    padding: 4rem 0;
    border-top: 1px solid #ccfbf1;
    border-bottom: 1px solid #ccfbf1;
}

.guarantee-badge {
    width: 80px;
    height: 80px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 25px -5px rgba(13, 148, 136, 0.4);
    animation: pulse-glow 3s infinite;
}

.guarantee-badge i {
    width: 40px;
    height: 40px;
}

.guarantee-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto 0.5rem;
}

.text-sm {
    font-size: 0.9rem !important;
}