:root {
    --bg-main: #fcfbff;
    --bg-secondary: #f2f1f6;
    --text-primary: #121212;
    --text-secondary: #6e6e73;
    --accent-orange: #ff8c69;
    --accent-purple: #9089fc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    --card-bg: linear-gradient(135deg, #e2e0ee 0%, #f2f1f6 100%);
    --card-radius: 40px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img, svg {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-circle img {
    width: 32px;
    height: 32px;
    /* Removed brightness filter to keep original colors if any, or making it pop more */
    filter: none;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-links a.active, .nav-links a:hover {
    opacity: 1;
}

.nav-download {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-store-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #333;
    color: white;
    border-radius: 10px;
    transition: transform 0.2s, background 0.2s;
    text-decoration: none;
}

.nav-store-link.play {
    background: #d1d1eb;
    color: #333;
}

.nav-store-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero Section */
.hero-new {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.hero-main-card {
    background: var(--card-bg);
    border-radius: var(--card-radius);
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-content-area h1 {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 2rem;
}

.highlight {
    font-weight: 300;
    font-style: italic;
}

.hero-content-area p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 450px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-get-started {
    background: #333;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.btn-download-app {
    border: 2px solid #ccc;
    color: var(--text-secondary);
    padding: 1rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
}

.hero-partners {
    display: flex;
    gap: 2rem;
    opacity: 0.4;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Mockup Area */
.hero-mockup-area {
    position: relative;
    height: 100%;
}

.mockup-stack {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-card {
    position: absolute;
    width: 250px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    background: white;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mockup-card img {
    width: 100%;
    display: block;
}

.card-1 {
    z-index: 1;
    transform: translateX(-120px) rotate(-15deg) scale(0.9);
    opacity: 0.6;
}

.card-2 {
    z-index: 2;
    transform: translateX(-40px) rotate(-8deg);
}

.card-3 {
    z-index: 3;
    transform: translateX(80px) rotate(8deg);
}

.hero-main-card:hover .card-1 { transform: translateX(-160px) rotate(-20deg) scale(0.85); }
.hero-main-card:hover .card-2 { transform: translateX(-60px) rotate(-10deg) scale(1.05); }
.hero-main-card:hover .card-3 { transform: translateX(120px) rotate(12deg) scale(1.1); }

/* Bottom Features */
.bottom-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}



.feature-small-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: #a8dba8;
    color: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

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

.stats-grid-wrapper {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.stats-card {
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-width: 160px; /* Ensure cards don't get too squashed */
}

.orange-card {
    background-color: var(--accent-orange);
    color: white;
}

.stat-main {
    font-size: 2.5rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stats-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.small-white {
    background: white;
    flex: 1;
}

.small-gray {
    background: #e5e5e5;
    flex: 1;
}

.stat-num {
    font-size: 1.5rem;
    font-weight: 800;
}

.availability-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.availability-card p {
    font-weight: 600;
    color: var(--text-secondary);
}

.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-link {
    background: #333;
    color: white;
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
}

.store-link.play {
    background: #d1d1eb;
    color: #333;
}

/* Section Shared Styles */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(144, 137, 252, 0.1);
    color: var(--accent-purple);
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 600px;
}

/* About Section */
.about-section {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.about-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.about-icon.purple { background: #f0efff; color: var(--accent-purple); }
.about-icon.orange { background: #fff4f1; color: var(--accent-orange); }
.about-icon.green { background: #effff0; color: #4db34d; }

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

/* App Section */
.app-section {
    padding: 4rem 0;
}

.app-cta-card {
    background: #111;
    color: white;
    border-radius: 40px;
    padding: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.app-cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.app-cta-content p {
    opacity: 0.7;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.app-features-list {
    list-style: none;
    margin-bottom: 3rem;
}

.app-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.app-features-list li svg {
    color: var(--accent-orange);
}

.app-cta-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.floating-mobile {
    position: absolute;
    width: 280px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%) rotate(5deg);
}

.floating-mobile.secondary {
    width: 240px;
    z-index: 1;
    transform: translate(-80%, -30%) rotate(-10deg);
    opacity: 0.5;
}

@media (max-width: 480px) {
    .floating-mobile {
        width: 180px;
    }
    .floating-mobile.secondary {
        width: 150px;
    }
}

/* Features Detailed (Bento Grid) */
.features-detailed {
    padding: 8rem 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
}

.bento-item {
    background: var(--bg-secondary);
    border-radius: 30px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s ease, background 0.3s ease;
    overflow: hidden;
}

.bento-item:hover {
    transform: scale(0.98);
    background: #e8e7ed;
}

.bento-item.large {
    grid-column: span 2;
    background: var(--accent-purple);
    color: white;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.bento-item.large h3 { font-size: 2.5rem; margin-bottom: 1rem; }
.bento-item.large p { opacity: 0.8; font-size: 1.1rem; }

.bento-item.wide {
    grid-column: span 2;
}

.bento-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.bento-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.bento-item.large p { color: white; }

.ai-sparkle {
    font-size: 8rem;
    opacity: 0.2;
}

/* Animations Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: If JS fails or takes too long, we want content visible */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}

.no-js .scroll-reveal {
    opacity: 1;
    transform: none;
}

/* Responsive Extensions */
@media (max-width: 1024px) {
    .hero-main-card {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 3rem;
        text-align: center;
    }

    .hero-content-area h1 {
        font-size: 3.5rem;
    }
    
    .hero-content-area p {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }
    
    .hero-partners {
        justify-content: center;
    }

    /* Mockup adjustments for tablet/mobile */
    .mockup-stack {
        height: 400px;
        transform: scale(0.9);
    }
    
    .about-grid { grid-template-columns: 1fr; }
    
    /* App Section Fixes */
    .app-cta-card { 
        grid-template-columns: 1fr; 
        padding: 4rem 1.5rem; 
        align-items: center;
        text-align: center;
    }

    .app-cta-content {
        z-index: 10;
        position: relative;
    }
    
    .app-features-list {
        display: inline-block;
        text-align: left;
    }

    .app-cta-visual { 
        width: 100%;
        min-height: 350px;
        margin-top: -2rem; /* Pull up slightly */
    }

    .floating-mobile {
        width: 180px;
        top: 50%;
        left: 50%;
        transform: translate(-30%, -40%) rotate(5deg);
    }
    
    .floating-mobile.secondary {
        width: 160px;
        transform: translate(-70%, -20%) rotate(-10deg);
        opacity: 0.4;
    }
    
    .section-header h2 { font-size: 2.2rem; }
    
    .hero-main-card {
        min-height: auto;
        padding: 4rem 1.5rem;
    }

    .hero-content-area h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content-area p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-get-started, .btn-download-app {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-partners {
        margin-top: 3rem;
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
    }
    
    .mockup-stack {
        height: 300px;
        margin-top: 2rem;
    }

    .mockup-card {
        width: 180px;
    }

    .card-1 { transform: translateX(-80px) rotate(-15deg) scale(0.8); }
    .card-2 { transform: translateX(-20px) rotate(-5deg); }
    .card-3 { transform: translateX(60px) rotate(8deg); }

    .bento-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: auto; 
    }
    
    .bento-item.large, .bento-item.wide { 
        grid-column: span 1; 
    }

    .bento-item.large {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 3rem 2rem;
    }

    .bento-item.large h3 {
        font-size: 2rem;
    }

    .ai-sparkle {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-main);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.3s ease-in-out;
        z-index: 1000;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-download {
        display: none;
        position: fixed;
        bottom: 3rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1001;
        width: auto;
    }

    .nav-download.active {
        display: flex;
    }
    
    .bottom-features {
        flex-direction: column;
        align-items: stretch; /* Stack items full width or centered */
    }
    
    .stats-grid-wrapper {
        flex-direction: column;
        width: 100%;
    }

    .stats-card.orange-card {
        width: 100%;
    }
    
    .feature-small-card, .availability-card {
        justify-content: center; 
        text-align: center;
        width: 100%;
    }
    
    .hero-content-area h1 {
        font-size: 2.8rem;
    }
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: #f8f9fa;
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.step-card {
    background: white;
    padding: 3.5rem;
    border-radius: 35px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.02);
    position: relative;
    transition: all 0.4s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: 2rem;
    right: 2.5rem;
    font-size: 4rem;
    font-weight: 900;
    opacity: 0.05;
    color: var(--accent-purple);
}

.step-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 10rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
}

.testimonial-card {
    background: #fcfbff;
    padding: 3rem;
    border-radius: 40px;
    border: 1px solid rgba(144, 137, 252, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-purple);
    background: white;
    box-shadow: 0 15px 40px rgba(144, 137, 252, 0.1);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 8px 20px rgba(144, 137, 252, 0.3);
}

.user-info h4 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.user-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
}

/* FAQ Section */
.faq-section {
    padding: 10rem 0;
    background: #fcfbff;
}

.faq-accordion {
    max-width: 800px;
    margin: 5rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-answer {
    padding: 0 2.5rem 2rem;
    display: none;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

@media (max-width: 1024px) {
    .process-steps-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* Modern Footer with Premium Styling */
.modern-footer {
    padding: 0;
    background: #09090b; /* Deep rich black */
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
}

/* Subtle background pattern */
.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.02) 1px, transparent 0),
        radial-gradient(circle at 50% 0%, rgba(144, 137, 252, 0.05) 0%, transparent 50%);
    background-size: 40px 40px, 100% 100%;
    pointer-events: none;
}

.footer-cta {
    transform: translateY(-50%);
    margin-bottom: -4rem;
}

.cta-inner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 5rem 4rem;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.cta-inner::after {
    content: '●';
    position: absolute;
    font-size: 300px;
    color: rgba(144, 137, 252, 0.1);
    top: -100px;
    right: -100px;
    line-height: 1;
    pointer-events: none;
}

.cta-inner h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.cta-inner p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-actions .btn-primary {
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.cta-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.cta-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 6rem;
    padding: 10rem 0 6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 800;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.footer-brand .footer-logo img {
    width: 48px;
    filter: drop-shadow(0 0 10px rgba(144, 137, 252, 0.3));
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
}

.footer-socials a {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-socials a:hover {
    background: var(--accent-purple);
    color: #ffffff;
    transform: translateY(-8px) rotate(12deg);
    box-shadow: 0 15px 30px rgba(144, 137, 252, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-links-group h4 {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    color: #ffffff;
    opacity: 0.9;
}

.footer-links-group a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.footer-links-group a:hover {
    color: #ffffff;
    transform: translateX(8px);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    padding: 4rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 3rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Responsive Footer refinements */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        padding-top: 12rem;
    }
}

@media (max-width: 768px) {
    .cta-inner {
        padding: 4rem 2rem;
        border-radius: 30px;
    }
    
    .cta-inner h2 {
        font-size: 2.25rem;
    }
    
    .cta-inner p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
        gap: 3.5rem;
    }
    
    .footer-brand .footer-logo {
        justify-content: center;
    }
    
    .footer-brand p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-links-group a {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 3rem 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 2rem;
    }
}
