:root {
    /* Color Palette */
    --bg-color: #0B0F1A;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8C1;
    --accent-primary: #4F8CFF;
    --accent-secondary: #8A5CFF;
    --highlight: #00E5FF;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    --gradient-text: linear-gradient(90deg, #FFFFFF, #B0B8C1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Satoshi', sans-serif;
    /* Fallback to sans-serif if not loaded */

    /* Spacing */
    --section-padding: 8rem 2rem;
    --container-width: 1200px;
}

/* Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 700;
    font-size: 2.5rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 140, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 140, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-secondary:hover {
    background: rgba(79, 140, 255, 0.1);
    transform: translateY(-2px);
}

/* Glassmorphism Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: padding 0.3s, background 0.3s;
}

header.scrolled {
    padding: 1rem 0;
    background: rgba(11, 15, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-secondary);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Section Common */
section {
    padding: var(--section-padding);
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    /* account for fixed header */
    overflow: hidden;
}

#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    /* Behind content but above bg */
    pointer-events: none;
}

/* Contact Page Styles */
.contact-page {
    position: relative;
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

/* CTA Section */
#cta {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.cta-container {
    padding: 5rem 2rem;
    max-width: 1000px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(11, 15, 26, 0.8), rgba(20, 25, 40, 0.9));
    /* Premium border gradient */
    background-origin: border-box;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(45deg, transparent, var(--accent-primary), var(--accent-secondary), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-container p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.cta-pulse {
    font-size: 1.1rem;
    padding: 1rem 3rem;
    box-shadow: 0 0 20px rgba(79, 140, 255, 0.4);
    animation: btn-pulse 2s infinite;
}

@keyframes btn-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(79, 140, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(79, 140, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(79, 140, 255, 0);
    }
}

@media (max-width: 768px) {
    .cta-container h2 {
        font-size: 2rem;
    }

    .cta-container {
        padding: 3rem 1.5rem;
    }
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-form-wrapper {
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(11, 15, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight);
    box-shadow: 0 0 15px rgba(79, 140, 255, 0.2);
    background: rgba(11, 15, 26, 0.8);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.2) 0%, rgba(11, 15, 26, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulse-glow 10s infinite alternate;
}

@keyframes pulse-glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(79, 140, 255, 0.1);
    border: 1px solid rgba(79, 140, 255, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

#hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* AI Orb Animation */
/* Neural Core Animation */
.neural-core-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.core-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(79, 140, 255, 0.4) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulse-core 4s infinite alternate;
}

.central-node {
    width: 120px;
    height: 120px;
    background: transparent;
    border-radius: 50%;
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Box shadow handled by image glow or outer rings */
}

.bot-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(79, 140, 255, 0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.node-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--accent-primary);
    animation: ripple 2s infinite linear;
}

.orbital-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(79, 140, 255, 0.2);
    box-shadow: 0 0 10px rgba(79, 140, 255, 0.1);
}

.ring-1 {
    width: 260px;
    height: 260px;
    border-top-color: var(--accent-primary);
    border-bottom-color: transparent;
    animation: rotate-3d 8s linear infinite;
}

.ring-2 {
    width: 360px;
    height: 360px;
    border: 1px dashed rgba(138, 92, 255, 0.3);
    border-left-color: var(--accent-secondary);
    /* Highlight */
    animation: rotate-3d-rev 12s linear infinite;
}

.ring-3 {
    width: 440px;
    height: 440px;
    border: 1px dotted rgba(255, 255, 255, 0.1);
    animation: rotate-flat 20s linear infinite;
}

.satellite {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--highlight);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--highlight);
}

.sat-1 {
    top: 0;
    left: 50%;
    transform-origin: 0 220px;
    /* Radius of ring 3 */
    animation: orbit 20s linear infinite;
}

.sat-2 {
    top: 50%;
    left: 0;
    transform-origin: 220px 0;
    animation: orbit 15s linear infinite reverse;
}

.sat-3 {
    top: 20%;
    left: 20%;
    background: var(--accent-secondary);
    transform-origin: 150px 150px;
    animation: orbit 10s linear infinite;
}

@keyframes pulse-core {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
    }
}

@keyframes rotate-3d {
    0% {
        transform: rotateX(60deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(60deg) rotateZ(360deg);
    }
}

@keyframes rotate-3d-rev {
    0% {
        transform: rotateX(-60deg) rotateZ(360deg);
    }

    100% {
        transform: rotateX(-60deg) rotateZ(0deg);
    }
}

@keyframes rotate-flat {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    #hero h1 {
        font-size: 3rem;
    }

    .neural-core-container {
        width: 300px;
        height: 300px;
        margin-top: 3rem;
    }

    .ring-1 {
        width: 180px;
        height: 180px;
    }

    .ring-2 {
        width: 240px;
        height: 240px;
    }

    .ring-3 {
        width: 290px;
        height: 290px;
    }

    .sat-1 {
        transform-origin: 0 145px;
    }

    .sat-2 {
        transform-origin: 145px 0;
    }
}

/* Trust Section */
#trust {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
    background: linear-gradient(to bottom, var(--bg-color), rgba(255, 255, 255, 0.02));
}

.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.logo-item {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s, transform 0.3s;
    /* Remove filter invert since new logos are already white text */
}

/* Ensure SVGs render correctly */
img[src$=".svg"].logo-item {
    filter: none;
    opacity: 0.6;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}


.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Metric Card Styles */
.metric-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.metric-card h3 {
    font-size: 1.25rem;
    color: var(--text-secondary);
    background: none;
    -webkit-text-fill-color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.metric-card p {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    #hero h1 {
        font-size: 3rem;
    }

    .ai-orb {
        width: 300px;
        height: 300px;
        margin-top: 3rem;
    }

    .ring-3 {
        width: 280px;
        height: 280px;
    }

    .ring-2 {
        width: 220px;
        height: 220px;
    }

    .ring-1 {
        width: 140px;
        height: 140px;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(79, 140, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* How It Works Section */
#how-it-works {
    background: radial-gradient(circle at center, rgba(79, 140, 255, 0.05), transparent 70%);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--bg-color);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--accent-secondary);
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 0 15px rgba(79, 140, 255, 0.3);
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    font-size: 0.95rem;
}

.step-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
    margin-top: 30px;
    /* Align with center of number */
    opacity: 0.3;
}

/* Responsive Process */
@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .step-connector {
        width: 2px;
        height: 50px;
        flex: none;
        margin-top: 0;
    }
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.why-list li span {
    color: var(--highlight);
    font-weight: bold;
}

.feature-highlight {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.1), rgba(138, 92, 255, 0.1));
    border: 1px solid var(--accent-primary);
    text-align: center;
}

/* Use Cases Section */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.use-case-card {
    position: relative;
    height: 250px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background-size: cover;
    background-position: center;
}

/* Placeholder gradients for images */
.use-case-card:nth-child(1) {
    background-image: linear-gradient(to top, #0B0F1A, rgba(11, 15, 26, 0.4)), url('../images/ecommerce.png');
}

.use-case-card:nth-child(2) {
    background-image: linear-gradient(to top, #0B0F1A, rgba(11, 15, 26, 0.4)), url('../images/lead-gen.png');
}

.use-case-card:nth-child(3) {
    background-image: linear-gradient(to top, #0B0F1A, rgba(11, 15, 26, 0.4)), url('../images/support.png');
}

.use-case-card:nth-child(4) {
    background-image: linear-gradient(to top, #0B0F1A, rgba(11, 15, 26, 0.4)), url('../images/data.png');
}

.use-case-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--highlight);
}

.use-case-card:hover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(79, 140, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.uc-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.uc-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #ddd;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testi-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testi-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-primary);
    flex-grow: 1;
}

.client-info h4 {
    margin-bottom: 0.2rem;
    color: var(--accent-primary);
}

.client-info span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* CTA Section */
#cta {
    padding-bottom: 6rem;
}

.cta-box {
    text-align: center;
    background: radial-gradient(circle at center, rgba(79, 140, 255, 0.1), rgba(11, 15, 26, 0.8));
    border: 1px solid var(--accent-primary);
    padding: 4rem 2rem;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #05070c;
    padding: 4rem 0 0;
    border-top: 1px solid var(--glass-border);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
}

.footer-col a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.copyright {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .cta-box h2 {
        font-size: 2rem;
    }
}

.success-alert {
    background: linear-gradient(135deg, rgba(79, 140, 255, 0.15), rgba(138, 92, 255, 0.15));
    border: 1px solid rgba(79, 140, 255, 0.5);
    color: #ffffff;
    padding: 1.2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 0 20px rgba(79, 140, 255, 0.2);
    backdrop-filter: blur(5px);
    animation: fade-in-up 0.6s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding-bottom: 2rem;
}