/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #F7F9FC;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F7F9FC;
}

::-webkit-scrollbar-thumb {
    background: #6A5ACD;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5A4ABD;
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(2rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-delayed {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    height: 2rem;
    width: 2rem;
    color: #6A5ACD;
}

.logo-text {
    color: #111827;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text-mobile {
    display: none;
    color: #111827;
    font-weight: 700;
    font-size: 1.25rem;
}

@media (max-width: 640px) {
    .logo-text {
        display: none;
    }
    .logo-text-mobile {
        display: block;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: #4B5563;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 1rem;
    font-weight: 500;
}

.nav-link:hover {
    color: #6A5ACD;
}

.nav-cta {
    background: #6A5ACD;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
}

.nav-cta:hover {
    background: #5A4ABD;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #111827;
    cursor: pointer;
    transition: color 0.2s ease;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    color: #6A5ACD;
}

.menu-icon,
.close-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.mobile-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    background: none;
    border: none;
    color: #4B5563;
    cursor: pointer;
    transition: color 0.2s ease;
    text-align: left;
    font-size: 1rem;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: #6A5ACD;
}

.mobile-nav-cta {
    background: #6A5ACD;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    font-weight: 600;
}

.mobile-nav-cta:hover {
    background: #5A4ABD;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-sparkles {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.sparkle-container {
    position: relative;
}

.sparkle-icon {
    height: 3rem;
    width: 3rem;
    color: #6A5ACD;
    animation: pulse-glow 2s ease-in-out infinite;
}

.sparkle-dot {
    position: absolute;
    border-radius: 50%;
}

.sparkle-dot-1 {
    top: -0.5rem;
    right: -0.5rem;
    width: 1rem;
    height: 1rem;
    background: #B5A8EF;
    animation: bounce 2s infinite;
}

.sparkle-dot-2 {
    bottom: -0.25rem;
    left: -0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: #6A5ACD;
    animation: pulse-glow 2s ease-in-out infinite;
    animation-delay: 0.3s;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-accent {
    color: #6A5ACD;
    position: relative;
}

.title-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.25rem;
    background: linear-gradient(to right, #6A5ACD, #B5A8EF);
    border-radius: 9999px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.5rem;
    }
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
        gap: 1.5rem;
    }
}

.floating-elements {
    position: relative;
    margin-top: 4rem;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.float-1 {
    top: 0;
    left: 25%;
    width: 5rem;
    height: 5rem;
    background: #B5A8EF;
    animation: float 6s ease-in-out infinite;
}

.float-2 {
    top: 2rem;
    right: 25%;
    width: 3rem;
    height: 3rem;
    background: #6A5ACD;
    opacity: 0.3;
    animation: float-delayed 8s ease-in-out infinite;
    animation-delay: 2s;
}

.float-3 {
    top: -1rem;
    left: 50%;
    width: 2rem;
    height: 2rem;
    background: #B5A8EF;
    opacity: 0.4;
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Buttons */
.btn-primary {
    background: #6A5ACD;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #5A4ABD;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background: transparent;
    color: #6A5ACD;
    border: 2px solid #6A5ACD;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: #6A5ACD;
    color: white;
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #6A5ACD;
    border: 2px solid #6A5ACD;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline:hover {
    background: #6A5ACD;
    color: white;
}

.btn-outline-large {
    background: white;
    color: #6A5ACD;
    border: 2px solid #6A5ACD;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline-large:hover {
    background: #6A5ACD;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #111827;
    transform: scale(1.05);
}

.btn-icon {
    height: 1.25rem;
    width: 1.25rem;
    transition: transform 0.2s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(0.25rem);
}

/* Section styles */
section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 32rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Three Pillars Section */
.pillars {
    background: #F7F9FC;
}

.pillars-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.pillar-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.pillar-icon svg {
    height: 2rem;
    width: 2rem;
}

.pillar-icon-blue {
    background: #EFF6FF;
    color: #2563EB;
}

.pillar-icon-purple {
    background: #F3F4F6;
    color: #6A5ACD;
}

.pillar-icon-green {
    background: #F0FDF4;
    color: #16A34A;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.pillar-description {
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pillar-cta {
    background: none;
    border: none;
    color: #6A5ACD;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pillar-cta:hover {
    color: #5A4ABD;
}

.pillar-cta:hover .btn-icon {
    transform: translateX(0.25rem);
}

/* Featured Section */
.featured {
    background: white;
}

.featured-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #6A5ACD;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.star-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.featured-card {
    background: linear-gradient(135deg, #6A5ACD, #5A4ABD);
    border-radius: 1.5rem;
    padding: 0.25rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-width: 64rem;
    margin: 0 auto;
}

.featured-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.featured-content {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
}

@media (min-width: 640px) {
    .featured-content {
        padding: 3rem;
    }
}

.featured-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.featured-category {
    background: #B5A8EF;
    color: #6A5ACD;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #4B5563;
    font-size: 0.875rem;
}

.clock-icon {
    height: 1rem;
    width: 1rem;
}

.featured-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.3;
}

@media (min-width: 640px) {
    .featured-title {
        font-size: 1.875rem;
    }
}

.featured-description {
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

@media (min-width: 640px) {
    .featured-actions {
        flex-direction: row;
    }
}

.featured-image {
    position: relative;
}

.image-container {
    background: linear-gradient(135deg, #B5A8EF, #6A5ACD);
    border-radius: 1rem;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rating-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: white;
    border-radius: 9999px;
    padding: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-badge .star-icon {
    height: 1rem;
    width: 1rem;
    color: #F59E0B;
}

.rating-badge span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
}

.trending-badge {
    position: absolute;
    bottom: -1rem;
    left: -1rem;
    background: #6A5ACD;
    color: white;
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.trending-badge span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* News Section */
.news {
    background: #F7F9FC;
}

.news-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #6A5ACD;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.trending-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.news-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
}

.news-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.news-category {
    background: #B5A8EF;
    color: #6A5ACD;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.trending-indicator {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #EF4444;
}

.trending-indicator .trending-icon {
    height: 1rem;
    width: 1rem;
}

.trending-indicator span {
    font-size: 0.75rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.news-card:hover .news-title {
    color: #6A5ACD;
}

.news-summary {
    color: #4B5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4B5563;
}

.calendar-icon {
    height: 1rem;
    width: 1rem;
}

.news-date span {
    font-size: 0.875rem;
}

.news-cta {
    background: none;
    border: none;
    color: #6A5ACD;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-cta:hover {
    color: #5A4ABD;
}

.news-cta:hover .btn-icon {
    transform: translateX(0.25rem);
}

.news-all {
    text-align: center;
    margin-top: 3rem;
}

/* Newsletter Section */
.newsletter {
    background: white;
}

.newsletter-card {
    position: relative;
    background: linear-gradient(135deg, #6A5ACD, #5A4ABD);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow: hidden;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .newsletter-card {
        padding: 3rem;
    }
}

.newsletter-bg-elements {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.bg-element {
    position: absolute;
    border-radius: 50%;
    background: white;
}

.bg-element-1 {
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    transform: translate(4rem, -4rem);
}

.bg-element-2 {
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 6rem;
    transform: translate(-3rem, 3rem);
}

.bg-element-3 {
    top: 50%;
    right: 25%;
    width: 4rem;
    height: 4rem;
    opacity: 0.5;
}

.newsletter-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.newsletter-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border-radius: 9999px;
    padding: 1rem;
}

.mail-icon {
    height: 2rem;
    width: 2rem;
    color: white;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .newsletter-title {
        font-size: 2.5rem;
    }
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 28rem;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .form-group {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    border: 0;
    color: #111827;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.email-input::placeholder {
    color: #4B5563;
}

.email-input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.email-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.submit-btn {
    background: white;
    color: #6A5ACD;
    border: none;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #F9FAFB;
    transform: scale(1.05);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.loading-spinner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid #6A5ACD;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.status-message {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message {
    color: #10B981;
}

.error-message {
    color: #EF4444;
}

.check-icon,
.alert-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.trust-indicators {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .trust-indicators {
        flex-direction: row;
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item .check-icon {
    height: 1rem;
    width: 1rem;
}

/* Call to Action Section */
.cta {
    background: #F7F9FC;
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #111827, #1F2937, #374151);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .cta-card {
        padding: 3rem;
    }
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.pattern-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6A5ACD, transparent);
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: #6A5ACD;
    filter: blur(3rem);
}

.pattern-circle-1 {
    top: 25%;
    right: 0;
    width: 16rem;
    height: 16rem;
    opacity: 0.2;
}

.pattern-circle-2 {
    bottom: 0;
    left: 25%;
    width: 12rem;
    height: 12rem;
    background: #B5A8EF;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-bg {
    background: #6A5ACD;
    border-radius: 9999px;
    padding: 1rem;
}

.zap-icon {
    height: 3rem;
    width: 3rem;
    color: white;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-title-accent {
    color: #B5A8EF;
}

.cta-description {
    color: #D1D5DB;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .cta-stats {
        flex-direction: row;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: #B5A8EF;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #9CA3AF;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.users-icon {
    height: 1.25rem;
    width: 1.25rem;
}

.trust-badges {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.trust-text {
    color: #9CA3AF;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0.5;
}

.badge {
    color: white;
    font-weight: 600;
}

.footer {
    margin-top: 4rem;
    text-align: center;
}

.footer-copyright {
    color: #4B5563;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    color: #4B5563;
    font-size: 0.875rem;
}

.footer-link {
    background: none;
    border: none;
    color: #4B5563;
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #6A5ACD;
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible {
    outline: 2px solid #6A5ACD;
    outline-offset: 2px;
}