/* Premium Narrative Theme Variables */
:root {
    /* Colors - Using HSL for better control and harmony */
    --bg-dark: 222 47% 4%;
    --bg-card: 222 47% 7%;
    --bg-card-hover: 222 47% 10%;
    
    --text-primary: 210 40% 98%;
    --text-secondary: 215 20% 65%;
    --text-muted: 215 16% 47%;
    
    --primary: 263 70% 50%;
    --primary-light: 263 70% 65%;
    --primary-dark: 263 70% 40%;
    
    --accent: 191 91% 50%;
    --accent-secondary: 326 100% 60%;
    
    --gradient-hero: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--accent-secondary)) 100%);
    --gradient-text: linear-gradient(135deg, hsl(var(--primary-light)) 0%, hsl(var(--accent)) 100%);
    --gradient-surface: linear-gradient(180deg, hsla(var(--bg-card), 0.5) 0%, hsla(var(--bg-dark), 0.8) 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 8rem;
    
    /* Effects */
    --glass-bg: hsla(var(--bg-card), 0.4);
    --glass-border: hsla(var(--text-primary), 0.08);
    --glass-blur: 12px;
    
    --shadow-premium: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px -10px hsla(var(--primary), 0.4);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    
    --transition-base: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Add this to your style.css to prepare for the scroll triggers */
.ambient-lights {
    position: fixed; /* Ensures lights stay behind as you scroll */
    z-index: -1;
    will-change: transform; /* Optimizes for GSAP/Scroll animations */
}

[data-reveal] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-reveal].active {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: hsl(var(--bg-dark));
    color: hsl(var(--text-primary));
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: default;
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-text);
    z-index: 1000;
    transition: width 0.1s linear;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

a {
    transition: var(--transition-base);
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Utility Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-hero);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px hsla(var(--primary), 0.5);
}

.btn-secondary {
    background: hsla(var(--text-primary), 0.05);
    color: hsl(var(--text-primary));
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: hsla(var(--text-primary), 0.1);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: hsla(var(--primary), 0.15);
    color: hsl(var(--primary-light));
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid hsla(var(--primary), 0.2);
    margin-bottom: 2rem;
}

.label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: hsl(var(--accent));
    margin-bottom: 1rem;
    display: block;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: hsla(var(--bg-dark), 0.8);
    backdrop-filter: blur(20px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: hsl(var(--text-secondary));
}

.nav-links a:hover {
    color: white;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    transition: var(--transition-base);
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transition: var(--transition-slow);
}

[data-reveal="up"] { transform: translateY(60px); }
[data-reveal="down"] { transform: translateY(-60px); }
[data-reveal="left"] { transform: translateX(60px); }
[data-reveal="right"] { transform: translateX(-60px); }
[data-reveal="scale"] { transform: scale(0.9); }

[data-reveal].active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Ambient Background Lights */
.ambient-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.light {
    position: absolute;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: pulse 10s ease-in-out infinite;
}

.light-1 {
    top: -10%;
    right: -10%;
    background: hsl(var(--primary));
}

.light-2 {
    bottom: -10%;
    left: -10%;
    background: hsl(var(--accent));
}

.light-3 {
    top: 40%;
    left: 30%;
    background: hsl(var(--accent-secondary));
    width: 30vw;
    height: 30vw;
    animation-delay: -5s;
}

/* Sections Common */
section {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: hsl(var(--text-secondary));
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    background-image: 
        linear-gradient(to bottom, hsla(var(--bg-dark), 0.8), hsla(var(--bg-dark), 0.95)),
        url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: hsl(var(--text-secondary));
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    width: fit-content;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid hsl(var(--bg-dark));
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: hsl(var(--bg-card));
    position: relative;
    z-index: 1;
}

.avatar:first-child { margin-left: 0; }

.social-proof p {
    font-size: 0.95rem;
    color: hsl(var(--text-secondary));
}

.social-proof strong {
    color: hsl(var(--text-primary));
}

/* Hero Image & Parallax */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: rotateY(0) rotateX(0);
}

.ebook-mockup {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5),
                0 18px 36px -18px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.floating-card {
    position: absolute;
    padding: 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
    min-width: 180px;
    box-shadow: var(--shadow-premium);
}

.card-1 {
    top: 10%;
    right: -60px;
}

.card-2 {
    bottom: 15%;
    left: -60px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: hsla(var(--primary), 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-text strong {
    font-size: 1.25rem;
    color: hsl(var(--text-primary));
}

.card-text span {
    font-size: 0.85rem;
    color: hsl(var(--text-secondary));
}

/* Problem Section - Darker Contrast */
.problem-section {
    background: hsl(222 47% 3%);
}

.section-header .section-title {
    margin-bottom: 1rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.problem-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

.problem-card:hover {
    transform: translateY(-8px);
    background: hsl(var(--bg-card-hover));
    border-color: hsla(var(--accent-secondary), 0.3);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.problem-card p {
    color: hsl(var(--text-secondary));
    font-size: 1.05rem;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.5rem;
    color: hsl(var(--text-primary));
    margin-bottom: 3rem;
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.benefits-list li {
    display: flex;
    gap: 1.5rem;
}

.benefits-list svg {
    color: hsl(var(--accent));
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.benefits-list strong {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.benefits-list p {
    color: hsl(var(--text-secondary));
    font-size: 0.95rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: hsl(var(--text-secondary));
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* Features Section */
.features-section {
    background: hsl(222 47% 3%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: hsl(var(--primary));
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: hsla(var(--text-primary), 0.05);
}

.feature-count {
    color: hsl(var(--primary-light));
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Pricing Section */
.pricing-section {
    background: radial-gradient(circle at center, hsla(var(--primary), 0.05), transparent 70%);
}

.pricing-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    padding: 4rem;
    border-radius: var(--radius-xl);
    border: 1px solid hsla(var(--primary), 0.3);
    box-shadow: 0 40px 100px -20px hsla(var(--primary), 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.pricing-header p {
    color: hsl(var(--text-secondary));
    font-size: 1rem;
}

.pricing-badge {
    background: var(--gradient-hero);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
}

.price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 2rem 0 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.25rem;
    color: hsl(var(--text-secondary));
    margin-right: 0.25rem;
}

.amount {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    color: white;
    letter-spacing: -0.04em;
}

.cents {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.25rem;
    color: hsl(var(--text-secondary));
    margin-left: 0.1rem;
}

.price-description {
    color: hsl(var(--text-secondary));
    margin-bottom: 3.5rem;
    font-size: 1.1rem;
}

.pricing-features {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 1.1rem;
}

.pricing-features svg {
    color: hsl(var(--accent));
    width: 24px;
    height: 24px;
}

.guarantee {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.guarantee p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.value-comparison {
    background: hsla(var(--bg-card), 0.3);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-comparison h4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.comparison-item {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: hsl(var(--text-secondary));
    font-size: 1.05rem;
}

.comparison-item:last-of-type {
    border-bottom: none;
}

.comparison-item.highlight {
    color: hsl(var(--accent));
    font-weight: 700;
    font-size: 1.25rem;
    border-top: 1px solid hsla(var(--text-primary), 0.1);
    margin-top: 1rem;
    padding-top: 2rem;
}

.value-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* FAQ Section */
.faq-section {
    background: hsl(222 47% 3%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-base);
}

.faq-item:hover {
    background: hsl(var(--bg-card-hover));
}

.faq-item h4 {
    color: hsl(var(--primary-light));
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.7;
}

/* Final CTA */
.final-cta-section {
    padding: var(--spacing-2xl) 0;
}

.cta-content {
    background: var(--gradient-hero);
    padding: 8rem 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 50px 100px -20px hsla(var(--primary), 0.3);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.1) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content h2 {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

.cta-content .btn {
    background: white;
    color: hsl(var(--primary-dark));
    position: relative;
    z-index: 1;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.cta-content .btn:hover {
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.cta-note {
    font-size: 0.875rem !important;
    margin-top: 1.5rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateY(0); }
    50% { transform: translateY(-20px) rotateY(-5deg); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 5vw;
    }
    
    .hero-content, .solution-content {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .social-proof {
        margin: 0 auto;
    }

    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .card-1 { right: -20px; }
    .card-2 { left: -20px; }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .solution-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-list li {
        text-align: left;
    }

    .stats-grid {
        margin-top: 3rem;
        gap: 1.5rem;
    }

    .stat-card {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .amount {
        font-size: 5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-item {
        padding: 2rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
        z-index: 101;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: hsl(var(--bg-card));
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: var(--transition-slow);
        box-shadow: -10px 0 50px rgba(0,0,0,0.8);
        backdrop-filter: blur(20px);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .value-comparison {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .floating-card {
        min-width: 150px;
        padding: 0.75rem;
    }

    .card-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }

    .amount {
        font-size: 4rem;
    }
}
