:root {
    --bg-color: #030305;
    --glass-bg: rgba(20, 20, 25, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    
    --gold-light: #fbeea0;
    --gold: #d4af37;
    --gold-dark: #b08d28;
    
    --kiwify: #37d35b;
    --kiwify-hover: #2cb74e;
    --hotmart: #f04e23;
    
    --accent-glow: rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1, h2, h3, h4, .logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Background Ambient Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.5;
    animation: floatOrb 20s infinite alternate;
    pointer-events: none;
}
.orb-1 {
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, rgba(3,3,5,0) 70%);
}
.orb-2 {
    top: 40%;
    right: -20%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 0, 102, 0.15) 0%, rgba(3,3,5,0) 70%); /* Magenta Belezeen */
    animation-delay: -5s;
}
.orb-3 {
    bottom: -10%;
    left: 20%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, rgba(3,3,5,0) 70%);
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(5%, 10%) scale(1.1); }
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gold {
    color: var(--gold);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}
/* Mouse follow glow effect on cards */
.glass-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}
.glass-card:hover::before {
    opacity: 1;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.5rem 0;
}
.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.logo {
    font-size: 0.85rem;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: inherit;
}
.logo span {
    color: var(--gold);
}
.nav-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.nav-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 15px rgba(212,175,55,0.4);
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    .nav-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
        margin: 0;
    }

    .logo {
        font-size: 1.2rem;
        white-space: nowrap;
        flex-shrink: 1;
    }
    .nav-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 1rem;
        gap: 0.5rem;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 4rem;
    display: flex;
    align-items: center;
}
.hero-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.hero-content {
    flex: 1.2;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Trust icons layout */
.trust-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}
.trust-item {
    text-align: center;
}
.hero h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

/* Primary Button with dynamic glowing effect */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #050505;
    padding: 1.2rem 2.8rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-4px);
}
.btn-primary:active {
    transform: translateY(2px) scale(0.98);
}
.btn-primary-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
    mix-blend-mode: overlay;
}
.btn-primary:hover .btn-primary-glow {
    opacity: 1;
    transform: scale(1);
    animation: moveGlow 3s infinite linear;
}

@keyframes moveGlow {
    0% { transform: rotate(0deg) translate(20px) rotate(0deg); }
    100% { transform: rotate(360deg) translate(20px) rotate(-360deg); }
}

.trust-icons {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}
.trust-item span {
    font-size: 0.85rem;
    color: #e2e8f0;
    line-height: 1.3;
}

/* Image Mockup modern container */
.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}
.mockup-container {
    padding: 1rem;
    border-radius: 20px;
    position: relative;
    transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(212,175,55,0.2);
    overflow: visible;
    max-width: 380px;
    margin: 30px auto;
}
.mockup-container:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg) translateY(-8px);
}
.mockup-container img {
    width: 100%;
    max-width: 340px;
    border-radius: 12px;
    display: block;
    opacity: 1 !important;
    transform: none !important;
    max-width: 100% !important;
}
.floating-badge {
    position: absolute;
    background: rgba(3,3,5,0.9);
    border: 1px solid var(--gold);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 10;
}
.badge-top {
    top: -20px;
    right: -30px;
    color: var(--gold);
}
.badge-bottom {
    bottom: -20px;
    left: -30px;
}

/* Global Sections */
section {
    padding: 8rem 0;
    position: relative;
}
.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}
.section-title.text-left {
    text-align: left;
    margin-bottom: 1.5rem;
}

/* Problems Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.problem-card {
    padding: 3rem 2rem;
    text-align: left;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.problem-card.p-0 {
    padding: 0;
    overflow: hidden;
}
.problem-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 17px;
}
.problem-card.relative {
    position: relative;
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(3,3,5,0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: #fff;
    border-radius: 17px;
}
.card-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gold);
}
.card-overlay p {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.9;
}
.problem-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255,255,255,0.15);
}
.error-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 71, 87, 0.2);
}
.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.problem-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Problem cards background images removed to prevent text overlap and support responsive HTML text */



/* Solution Layout */
.solution-layout {
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}
.solution-content {
    flex: 1.2;
    padding: 4rem;
}
.solution-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}
.modern-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.modern-list li {
    display: flex;
    gap: 1.5rem;
}
.list-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.list-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #fff;
}
.list-text span {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.solution-image-container {
    flex: 1;
    position: relative;
    height: 100%;
    min-height: 600px;
}
.solution-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--glass-bg) 0%, transparent 50%);
}

/* Sneak Peek Section (Visão por Dentro) */
.sneak-peek-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.peek-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border-color: rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}
.peek-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.5);
}
.peek-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--glass-border);
}
.peek-caption {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.peek-caption i {
    color: var(--gold);
}
.peek-highlight {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--magenta, #ff0066);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 0, 102, 0.4);
    z-index: 2;
}
.sneak-peek-subtext {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* Visual Break Highlight */
.bg-highlight {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 0, 102, 0.05) 100%);
    position: relative;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.5);
}
.bg-highlight::before, .bg-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.bg-highlight::before {
    top: 0;
}
.bg-highlight::after {
    bottom: 0;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.testimonial-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}
.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
}
.stars {
    color: var(--gold);
    font-size: 1.1rem;
    display: flex;
    gap: 5px;
}
.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #e2e8f0;
    line-height: 1.6;
    flex-grow: 1;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}
.client-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
}
.client-desc h4 {
    font-size: 1.1rem;
    color: #fff;
    margin: 0;
}
.client-desc span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.pricing-content {
    flex: 1;
}
.pricing-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.pricing-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    border-color: rgba(212,175,55,0.3);
}
.guarantee-box img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}
.guarantee-box h4 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}
.guarantee-box p {
    margin: 0;
    font-size: 0.9rem;
}

.pricing-card {
    flex: 1;
    max-width: 500px;
    padding: 3px; /* For animated border */
    border: none;
    background: transparent;
}
.animated-border {
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent 0%, var(--gold) 50%, transparent 100%);
    animation: rotateBorder 4s linear infinite;
    z-index: 0;
}
@keyframes rotateBorder {
    100% { transform: rotate(360deg); }
}
.card-inner {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 17px;
    position: relative;
    z-index: 1;
    height: 100%;
}

.pricing-header {
    text-align: center;
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.pricing-header h3 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
}
.pricing-header small {
    display: block;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 500;
    margin-top: 0.5rem;
}
.price-box {
    margin-top: 2rem;
}
.old-price {
    color: #ef4444;
    text-decoration: line-through;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}
.new-price-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--gold);
    line-height: 1;
}
.currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.5rem;
}
.new-price {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 800;
}
.cents {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0.8rem;
}
.pix-price {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.pricing-body {
    padding: 2rem 2rem 1.5rem;
}
.features {
    list-style: none;
    margin-bottom: 2.5rem;
}
.features li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 1rem;
    color: #e2e8f0;
}
.features i {
    font-size: 0.9rem;
}

.btn-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 1.2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.kiwify-btn {
    background: var(--kiwify);
    box-shadow: 0 10px 25px rgba(55, 211, 91, 0.3);
}
.kiwify-btn:hover {
    background: var(--kiwify-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(55, 211, 91, 0.4);
}
.kiwify-btn:active {
    transform: translateY(2px) scale(0.98);
    box-shadow: 0 5px 15px rgba(55, 211, 91, 0.4);
}
.hotmart-btn {
    background: var(--hotmart);
    box-shadow: 0 10px 25px rgba(240, 78, 35, 0.3);
}
.hotmart-btn:hover {
    background: #d8431e;
    transform: translateY(-3px);
}
.secure-msg {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Urgency Bar */
.urgency-bar {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 1.5rem auto 0;
    animation: pulse-glow 2s infinite;
}
.urgency-bar #countdown-timer {
    font-family: 'Outfit', monospace;
    font-size: 1rem;
    font-variant-numeric: tabular-nums;
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
}

/* FAQ Checkout */
.faq-checkout {
    margin-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}
.faq-checkout details {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-checkout summary {
    cursor: pointer;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.faq-checkout summary::-webkit-details-marker { display: none; }
.faq-checkout summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--gold);
    transition: transform 0.2s;
}
.faq-checkout details[open] summary::after {
    transform: rotate(45deg);
}
.faq-checkout details[open] summary {
    background: rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid var(--glass-border);
}
.faq-checkout p {
    padding: 0 1.25rem 1rem;
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 2.5rem 0 1.5rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}
.footer-content {
    text-align: center;
}
.footer-content .logo {
    margin-bottom: 1rem;
}
.footer-content p {
    color: var(--text-main);
    font-size: 0.9rem;
    line-height: 1.6;
}
.disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem !important;
    opacity: 0.8;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-layout, .solution-layout, .pricing-wrapper {
        flex-direction: column;
    }
    .hero {
        text-align: center;
        padding-top: 4rem;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .badge {
        margin: 0 auto 1rem;
    }
    .subtitle {
        margin: 0 auto 2rem;
    }
    .trust-icons {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .hero-image {
        margin-top: 3rem;
    }
    .section-title.text-left {
        text-align: center;
    }
    .solution-image-container {
        min-height: 400px;
        width: 100%;
    }
    .image-overlay {
        background: linear-gradient(to bottom, var(--glass-bg) 0%, transparent 50%);
    }
    .pricing-content {
        text-align: center;
    }
    .guarantee-box {
        text-align: left;
    }
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    .new-price {
        font-size: 4rem;
    }
    .currency {
        font-size: 1.25rem;
    }
    .cents {
        font-size: 1.25rem;
    }
    footer {
        padding: 2rem 0 2rem;
    }
    .footer-content p {
        font-size: 0.85rem;
        color: var(--text-main) !important;
    }
    .disclaimer {
        font-size: 0.7rem !important;
        margin-top: 1rem;
        opacity: 1 !important;
        color: var(--text-muted) !important;
    }
}

/* Scroll Animations */
.scroll-anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}
