:root {
    /* Colors - Theme 2.0: Deep Space Neon */
    --primary: #7c3aed;
    /* Electric Violet */
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --secondary: #06b6d4;
    /* Cyan */
    --accent: #f472b6;
    /* Pink */
    --success: #10b981;

    --bg-primary: #020617;
    /* Deepest Slate */
    --bg-secondary: #0f172a;
    /* Dark Slate */
    --bg-tertiary: #1e293b;

    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;

    --border: #1e293b;
    --shadow: rgba(0, 0, 0, 0.5);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Effects */
    --blur-sm: blur(8px);
    --blur-md: blur(16px);
    --blur-lg: blur(24px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: var(--blur-md);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    font-size: 32px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: var(--blur-sm);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    color: var(--primary-light);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: var(--blur-md);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
    box-shadow: 0 8px 32px var(--shadow);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.card-title {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.card-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services Section */
.services {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 16px 48px var(--shadow);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.service-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    margin-right: 12px;
    color: var(--success);
    font-weight: bold;
}

.service-price {
    color: var(--primary-light);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-display);
}

.service-price small {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}


.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* About Section */
.about {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-description {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-grid {
    display: grid;
    gap: 32px;
}

.team-card {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: 0 12px 36px var(--shadow);
}

.team-avatar {
    margin-bottom: 24px;
}

.avatar-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: white;
}

.team-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-role {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 16px;
}

.team-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.contact-item:hover {
    color: var(--primary-light);
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
}

.method-icon {
    font-size: 40px;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.method-content h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 8px;
}

.method-content p {
    color: var(--text-secondary);
    margin: 4px 0;
}

.method-content a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-content a:hover {
    color: var(--primary-light);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: var(--blur-sm);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success.active {
    display: block;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 24px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 32px;
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-description {
    color: var(--text-secondary);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 968px) {

    .hero-content,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-visual {
        height: 400px;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: var(--blur-lg);
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero Section Mobile Fixes */
    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-visual {
        display: none;
    }

    /* Service Header Mobile Fixes */
    .service-header {
        padding: 120px 0 60px;
    }

    .service-header .hero-title {
        font-size: 32px;
    }

    .service-header .price-tag {
        font-size: 48px !important;
    }

    .service-header .hero-description {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Grid Fixes */
    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    /* Section Title Fixes */
    .section-title {
        font-size: 32px;
    }

    /* Offer Banner Mobile Fixes */
    .offer-banner {
        padding: 40px 24px;
    }

    .offer-title {
        font-size: 36px;
    }

    .offer-subtitle {
        font-size: 18px;
    }

    .price-tag {
        font-size: 56px;
    }

    .price-tag span {
        font-size: 20px;
    }

    :root {
        --section-padding: 60px;
    }
}

/* Extra Small Devices (phones, less than 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Typography */
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-header .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }

    /* Stats */
    .stat-number {
        font-size: 36px;
    }

    /* Service Cards */
    .service-card {
        padding: 24px;
    }

    .service-icon {
        font-size: 48px;
    }

    .service-title {
        font-size: 20px;
    }

    /* Offer Banner */
    .offer-banner {
        padding: 32px 20px;
    }

    .offer-title {
        font-size: 28px;
    }

    .offer-subtitle {
        font-size: 16px;
    }

    .price-tag {
        font-size: 48px;
    }

    .service-header .price-tag {
        font-size: 40px !important;
    }

    .price-tag span {
        font-size: 16px;
        display: block;
        margin-bottom: 8px;
    }

    /* Cards */
    .feature-card,
    .testimonial-card,
    .team-card {
        padding: 24px;
    }

    /* Navigation */
    .nav-content {
        padding: 16px 0;
    }

    .logo {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 24px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 32px;
    }

    .footer-content {
        gap: 32px;
        margin-bottom: 40px;
    }

    /* Badge */
    .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Section Padding */
    :root {
        --section-padding: 48px;
    }

    .service-header {
        padding: 100px 0 48px;
    }
}

/* Offer Badge & Animations */
.offer-badge-container {
    margin-bottom: 24px;
    display: inline-block;
}

.offer-pill {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    color: var(--success);
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.offer-pill::before {
    content: '🔥';
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.offer-banner {
    background: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.offer-banner-content {
    position: relative;
    z-index: 1;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.offer-subtitle {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.price-tag {
    font-size: 80px;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    display: block;
    margin-bottom: 32px;
    font-family: var(--font-display);
}

.price-tag span {
    font-size: 32px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.flash-sale-timer {
    display: inline-block;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: var(--section-padding) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Process Section */
.process {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
    gap: 20px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-light);
    box-shadow: 0 0 0 8px var(--bg-primary);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    position: relative;
}

.testimonial-quote {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding) 0;
    background: var(--bg-primary);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.05);
}

.accordion-header {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.accordion-icon {
    font-size: 24px;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.accordion-content {
    padding: 0 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: none;
}

.accordion-item.active .accordion-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
        padding-left: 20px;
    }

    .process-steps::before {
        left: 60px;
        top: 0;
        bottom: 0;
        width: 2px;
        height: auto;
    }

    .process-step {
        display: flex;
        gap: 24px;
        text-align: left;
        align-items: flex-start;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }
}

/* --- Ultra-Premium UI Additions --- */

/* 1. Branded Preloader */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    /* Safety net: Ensure it doesn't block forever if JS fails */
    animation: fadeOutSafety 0.5s ease 4s forwards;
    pointer-events: all;
    /* Blocks clicks initially */
}

/* Allow clicks to pass through after animation */
.preloader.fade-out {
    pointer-events: none;
}

@keyframes fadeOutSafety {
    to {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: loaderPulse 2s infinite;
}

.loader-logo {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* 2. Custom Glowing Cursor */
@media (hover: hover) and (pointer: fine) {

    .cursor-dot,
    .cursor-outline {
        position: fixed;
        top: 0;
        left: 0;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        z-index: 9998;
        pointer-events: none;
    }

    .cursor-dot {
        width: 8px;
        height: 8px;
        background: white;
    }

    .cursor-outline {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    body:hover .cursor-outline {
        opacity: 1;
    }

    /* Interactive State */
    body.hovering .cursor-outline {
        width: 60px;
        height: 60px;
        background-color: rgba(99, 102, 241, 0.1);
        border-color: var(--primary-light);
    }
}

/* 3. 3D Tilt Card Base Styles */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-content {
    transform: translateZ(20px);
}

/* 4. Animated Hero Background Mesh */
.hero-bg {
    background:
        radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(245, 158, 11, 0.15) 0px, transparent 50%);
    animation: gradientMesh 15s ease infinite alternate;
    background-size: 200% 200%;
}

@keyframes gradientMesh {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

/* Enhanced Glassmorphism for Cards */
.feature-card,
.service-card,
.testimonial-card,
.team-card,
.process-step {
    backdrop-filter: blur(12px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border: 1px solid rgba(255, 255, 255, 0.125);
}

/* 9. Trusted By Marquee */
/* 9. Trusted By Marquee */
.trusted-by {
    padding: 60px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    /* Critical for single line */
}

.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.marquee-track {
    display: inline-flex;
    /* Ensure horizontal calculation */
    gap: 80px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.company-logo {
    opacity: 0.5;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) brightness(0.8);
    /* Muted monochrome */
    font-size: 24px;
    font-weight: 600;
    color: var(--text-secondary);
}

.company-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1);
    /* Restore color */
    color: var(--text-primary);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.company-logo svg {
    height: 40px;
    width: auto;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .company-logo {
        font-size: 20px;
    }
}