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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #0F1419;
    color: #E8F4FD;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #5E17EB 0%, #3D0B94 50%, #2A0A6B 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(0, 194, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(255, 55, 95, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-brand {
    display: flex;
    align-items: center;
    position: absolute;
    top: -1rem;
    left: 2rem;
    z-index: 2;
    gap: 0.75rem;
}

.brand-logo {
    width: 32px;
    height: 32px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 700;
    color: #E8F4FD;
    letter-spacing: -0.02em;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
    padding-top: 4rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #E8F4FD;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #C1D5E0;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, #5E17EB 0%, #7C3AED 100%);
    color: #E8F4FD;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(94, 23, 235, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.4);
}

.cta-link {
    color: #C1D5E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #E8F4FD;
}

.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1c1c1e, #2c2c2e);
    border-radius: 42px;
    padding: 8px;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 8px 40px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 6px;
    background: #1c1c1e;
    border-radius: 3px;
    z-index: 10;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 138px;
    height: 30px;
    background: #1c1c1e;
    border-radius: 15px;
    z-index: 9;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.app-screenshot {
    width: 100%;
    height: 100%;
    background-image: url('screenshots/homescreen.webp'), url('screenshots/homescreen.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
    will-change: transform;
}

.calendar-integration {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0F1419 0%, #1A2332 50%, #0F1419 100%);
    position: relative;
}

.calendar-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(94, 23, 235, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.calendar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.calendar-screenshots {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.screenshot-container {
    transform: rotate(-2deg);
}

.screenshot-container:nth-child(2) {
    transform: rotate(2deg) translateY(2rem);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.2), rgba(0, 194, 255, 0.2));
    border: 1px solid rgba(94, 23, 235, 0.3);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00C2FF;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: #E8F4FD;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.section-description-reports, .section-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #C1D5E0;
    margin-bottom: 3rem;
    max-width: 500px;
}

.section-description-reports {
    margin: 0 auto;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #5E17EB, #7C3AED);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #E8F4FD;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E8F4FD;
    margin-bottom: 0.5rem;
}

.feature-desc {
    font-size: 1rem;
    color: #8FA8B8;
    line-height: 1.5;
}

.calendar-screen-1 {
    width: 100%;
    height: 100%;
    background-image: url('screenshots/events.webp'), url('screenshots/events.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
}

.calendar-screen-2 {
    width: 100%;
    height: 100%;
    background-image: url('screenshots/live.webp'), url('screenshots/live.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
}

@media (max-width: 768px) {
    .calendar-integration {
        padding: 4rem 0;
    }
    
    .calendar-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .calendar-screenshots {
        order: 2;
    }
    
    .calendar-text {
        order: 1;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-description {
        max-width: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-brand {
        position: static;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        max-width: none;
    }
    
    .phone-mockup {
        width: 240px;
        height: 500px;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

.daily-reports {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0F1419 0%, #243447 50%, #0F1419 100%);
    position: relative;
}

.daily-reports::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 55, 95, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.reports-content {
    position: relative;
    z-index: 1;
}

.reports-text {
    text-align: center;
    margin-bottom: 4rem;
}

.reports-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.report-screenshot {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.report-info {
    max-width: 280px;
    text-align: center;
}

.report-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8F4FD;
    margin-bottom: 1rem;
    text-align: center;
}

.report-description {
    font-size: 1rem;
    color: #8FA8B8;
    line-height: 1.6;
    text-align: center;
}

.report-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A2332, #243447);
    border-radius: 36px;
    border: 1px solid #2D4A5C;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sleep-screen {
    background-image: url('screenshots/sleep.webp'), url('screenshots/sleep.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
}

.cardio-screen {
    background-image: url('screenshots/cardio.webp'), url('screenshots/cardio.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
}

.muscle-screen {
    background-image: url('screenshots/muscle.webp'), url('screenshots/muscle.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 36px;
}

@media (max-width: 768px) {
    .daily-reports {
        padding: 4rem 0;
    }
    
    .reports-screenshots {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.privacy-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0F1419 0%, #1A2332 100%);
    position: relative;
}

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(94, 23, 235, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.privacy-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.privacy-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #E8F4FD;
}

.privacy-content-item {
    flex: 1;
}

.privacy-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #E8F4FD;
    margin-bottom: 0.5rem;
}

.privacy-desc {
    font-size: 1rem;
    color: #8FA8B8;
    line-height: 1.5;
}

.privacy-cta {
    margin-top: 1rem;
}

.privacy-link {
    color: #00C2FF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.privacy-link:hover {
    border-bottom-color: #00C2FF;
}

.privacy-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.apple-health-integration {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.health-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF375F, #DC2626);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E8F4FD;
    box-shadow: 0 10px 30px rgba(255, 55, 95, 0.3);
}

.integration-arrow {
    color: #8FA8B8;
    opacity: 0.6;
}

.dynaflow-icon {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(94, 23, 235, 0.3);
}

.logo-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5E17EB, #7C3AED);
    position: relative;
}

.logo-gradient::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 20%, transparent 70%);
    border-radius: 50%;
}

.data-flow-description {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.flow-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #E8F4FD;
}

.step-desc {
    font-size: 0.9rem;
    color: #8FA8B8;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    background: rgba(0, 0, 0, 0.7);
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: linear-gradient(135deg, #0D1117 0%, #161B22 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(94, 23, 235, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
    transform: scale(1);
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #8B949E;
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #E8F4FD;
}

.modal-content {
    text-align: center;
}

.modal-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 30px;
}

.modal-phone {
    flex-shrink: 0;
}

.phone-mockup-small {
    width: 180px;
    height: 370px;
    background: linear-gradient(145deg, #1c1c1e, #2c2c2e);
    border-radius: 35px;
    padding: 8px;
    position: relative;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-mockup-small::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

.phone-screen-small {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 27px;
    overflow: hidden;
    position: relative;
}

.app-screenshot-small {
    width: 100%;
    height: 100%;
    background-image: url('screenshots/homescreen.webp'), url('screenshots/homescreen.png');
    background-size: cover;
    background-position: center;
}

.modal-text {
    flex: 1;
    text-align: left;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E8F4FD;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #E8F4FD 0%, #C7E9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-description {
    font-size: 1.25rem;
    color: #8B949E;
    margin-bottom: 30px;
    line-height: 1.6;
}

.modal-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #C7E9FF;
    font-size: 1rem;
}

.benefit-item svg {
    color: #5E17EB;
    flex-shrink: 0;
}

.modal-pricing {
    margin-bottom: 30px;
}

.price-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
}

.price-original {
    font-size: 1.5rem;
    color: #6B7280;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-beta {
    font-size: 2rem;
    font-weight: 800;
    color: #5E17EB;
    background: linear-gradient(135deg, #5E17EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-label {
    font-size: 0.95rem;
    color: #8B949E;
    text-align: center;
    margin: 0;
}

.modal-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.modal-button-primary {
    background: linear-gradient(135deg, #5E17EB 0%, #7C3AED 100%);
    color: #E8F4FD;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(94, 23, 235, 0.3);
}

.modal-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(94, 23, 235, 0.4);
}

.modal-note {
    font-size: 0.9rem;
    color: #6B7280;
    margin: 0;
}

.modal-terms {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 148, 158, 0.2);
}

.terms-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #8B949E;
    margin: 0;
}

.terms-item svg {
    flex-shrink: 0;
    color: #5E17EB;
}

.terms-item.iphone-only {
    color: #C7E9FF;
    font-weight: 500;
}

.terms-item.iphone-only svg {
    color: #C7E9FF;
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 4rem 0;
    }
    
    .privacy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .apple-health-integration {
        gap: 1rem;
    }
    
    .health-icon,
    .dynaflow-icon {
        width: 80px;
        height: 80px;
    }
    
    .app-logo {
        width: 60px;
        height: 60px;
    }
    
    .data-flow-description {
        gap: 2rem;
    }
    
    /* Modal responsive styles */
    .modal-container {
        padding: 30px 20px;
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-hero {
        flex-direction: column;
        gap: 30px;
    }
    
    .phone-mockup-small {
        width: 150px;
        height: 310px;
    }
    
    .modal-text {
        text-align: center;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-description {
        font-size: 1.1rem;
    }
    
    .modal-benefits {
        text-align: left;
        max-width: 300px;
        margin: 0 auto 30px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .modal-button-primary {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .price-original {
        font-size: 1.2rem;
    }
    
    .price-beta {
        font-size: 1.6rem;
    }
    
    .modal-terms {
        gap: 10px;
    }
    
    .terms-item {
        font-size: 0.85rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-policy-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F1419 0%, #1A1F2E 100%);
}

.privacy-header {
    background: rgba(94, 23, 235, 0.08);
    border-bottom: 1px solid rgba(94, 23, 235, 0.2);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #C1D5E0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #00C2FF;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 28px;
    height: 28px;
}

.header-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #E8F4FD;
    letter-spacing: -0.02em;
}

.privacy-policy-content {
    padding: 4rem 0;
}

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

.policy-title {
    font-size: 3rem;
    font-weight: 800;
    color: #E8F4FD;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5E17EB 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-date {
    font-size: 1rem;
    color: #8F9BA8;
    margin-bottom: 3rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E8F4FD;
    margin-bottom: 1.25rem;
    padding-top: 1rem;
}

.policy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.25rem 0;
}

.policy-section li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #FFFFFF;
}

.policy-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #5E17EB 0%, #00C2FF 100%);
    border-radius: 50%;
}

.policy-section strong {
    color: #E8F4FD;
    font-weight: 600;
}

.policy-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(94, 23, 235, 0.2);
    text-align: center;
}

.footer-note {
    font-size: 0.95rem;
    color: #8F9BA8;
    margin-bottom: 2rem;
}

.footer-cta {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #5E17EB 0%, #3D0B94 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(94, 23, 235, 0.3);
}
