/* Base Styles */
:root {
    --primary-color: #3ba7e7;
    --primary-dark: #2a96d6;
    --primary-light: #5cb7ed;
    --bg-color: #0a0a0a;
    --bg-color-light: #121212;
    --bg-color-lighter: #1a1a1a;
    --text-color: #ffffff;
    --text-color-muted: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --gradient-dark-purple: linear-gradient(135deg, #0a0a0a 0%, #1a0a20 50%, #0a0a0a 100%);
    --gradient-dark-red: linear-gradient(135deg, #0a0a0a 0%, #200a0a 50%, #0a0a0a 100%);
    --magic-color: #ffb700;
    --pattern-overlay: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    --pattern-size: 30px 30px;
    --pattern-opacity: 0.3;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--gradient-dark-purple);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
}

/* Grid Pattern Background */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(59, 167, 231, 0.05) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(59, 167, 231, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
}

/* Button Styles */
.primary-cta {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(59, 167, 231, 0.5);
    position: relative;
    overflow: hidden;
}

.primary-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(59, 167, 231, 0.7);
}

.primary-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.primary-cta:hover::before {
    opacity: 1;
}

.secondary-cta {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid white;
}

.secondary-cta:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(59, 167, 231, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(59, 167, 231, 0.3);
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(59, 167, 231, 0.5);
}

.text-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 20px;
}

.text-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-color);
}

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

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

.logo a:hover .logo-image {
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    font-weight: 500;
    position: relative;
}

.nav-menu li a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu li a:not(.cta-button):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin-bottom: 5px;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-dark-purple);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(59, 167, 231, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: -1;
}

.headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.subheadline {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.tagline {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    margin-bottom: 60px;
}

/* Floating Cards */
.floating-cards {
    position: relative;
    height: 500px;
    margin-top: 60px;
}

.card {
    position: absolute;
    width: 280px;
    height: 550px;
    background-color: rgba(20, 20, 30, 0.6);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(59, 167, 231, 0.1), transparent);
    z-index: 1;
}

.card-content {
    padding: 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.card-thumbnail:hover {
    transform: scale(1.05);
}

/* Mockup Styles */
.mockup-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mockup-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    margin-top: 15px;
    opacity: 0.9;
}

/* Mockup 1 - Phone */
.mockup-phone {
    width: 180px;
    height: 320px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.mockup-video {
    width: 100%;
    height: 70%;
    background: linear-gradient(45deg, #3ba7e7, #5cb7ed);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.mockup-play-button {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #3ba7e7;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.mockup-controls {
    height: 30%;
    padding: 10px;
    background: #111;
}

.mockup-progress {
    height: 4px;
    background: #333;
    border-radius: 2px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.mockup-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: #3ba7e7;
    border-radius: 2px;
}

.mockup-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #ccc;
}

/* Mockup 2 - Studio */
.mockup-studio {
    width: 180px;
    height: 320px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

/* Footer Styles */
.footer {
    background-color: var(--bg-color-lighter);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    max-width: 150px;
}

.footer-contact-details p {
    margin-bottom: 10px;
    color: var(--text-color-muted);
}

.footer-contact-details i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color-muted);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-socials a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-socials a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-color-muted);
}

/* Pre-call Page Styles */
.pre-call-container {
    max-width: 800px;
    margin: 80px auto;
    padding: 40px 20px;
    text-align: center;
}

.main-heading {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 40px;
}

.instruction-step {
    font-style: italic;
    color: #3ba7e7;
    font-size: 16px;
    margin: 30px 0 15px;
}

.video-wrapper {
    max-width: 600px;
    margin: 0 auto 30px;
    background-color: #000;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.pre-call-button {
    display: inline-block;
    background-color: #3ba7e7;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;
    max-width: 350px;
    width: 100%;
}

.pre-call-button:hover {
    background-color: #2a96d6;
}

.button-main-text {
    display: block;
    font-size: 18px;
    font-weight: bold;
}

.button-sub-text {
    display: block;
    font-size: 12px;
    margin-top: 5px;
}
/* Remove stray closing brace */

.mockup-mic {
    width: 60px;
    height: 60px;
    background: linear-gradient(145deg, #666, #888);
    border-radius: 50%;
    position: relative;
}

.mockup-mic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
}

.mockup-waveform {
    display: flex;
    align-items: end;
    gap: 3px;
    height: 80px;
}

.wave-bar {
    width: 8px;
    background: #3ba7e7;
    border-radius: 4px;
    animation: wave 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(1) { height: 20px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 40px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 60px; animation-delay: 0.2s; }
.wave-bar:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.wave-bar:nth-child(5) { height: 45px; animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

.mockup-controls-studio {
    display: flex;
    gap: 20px;
    align-items: center;
}

.record-btn, .play-btn-studio {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.record-btn {
    background: #ff4444;
    animation: pulse 2s infinite;
}

.play-btn-studio {
    background: #3ba7e7;
    color: white;
    font-size: 14px;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
}

/* Mockup 3 - Distribution */
.mockup-distribution {
    width: 180px;
    height: 320px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.mockup-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: #3ba7e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2;
}

.mockup-platforms {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.platform {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
    color: white;
}

.platform.yt { top: 20px; left: 50%; transform: translateX(-50%); background: #ff0000; }
.platform.ig { top: 40px; right: 30px; background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform.tk { top: 80px; right: 20px; background: #000000; }
.platform.ln { top: 120px; right: 30px; background: #0077b5; }
.platform.tw { bottom: 80px; right: 20px; background: #1da1f2; }
.platform.fb { bottom: 40px; right: 30px; background: #1877f2; }

.mockup-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.mockup-arrows::before,
.mockup-arrows::after {
    content: '';
    position: absolute;
    border: 1px solid #3ba7e7;
    border-radius: 50%;
    opacity: 0.3;
}

.mockup-arrows::before {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.mockup-arrows::after {
    width: 140px;
    height: 140px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.card-1 {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 3;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    left: calc(50% - 220px);
    top: 40px;
    transform: scale(0.9) rotate(-8deg);
    z-index: 2;
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    left: calc(50% + 140px);
    top: 60px;
    transform: scale(0.85) rotate(8deg);
    z-index: 1;
    animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    50% { transform: translateX(-50%) translateY(-20px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: scale(0.9) translateY(0) rotate(-8deg); }
    50% { transform: scale(0.9) translateY(-25px) rotate(-12deg); }
}

@keyframes float3 {
    0%, 100% { transform: scale(0.85) translateY(0) rotate(8deg); }
    50% { transform: scale(0.85) translateY(-30px) rotate(12deg); }
}

/* Social Proof Section */
.social-proof {
    background: var(--gradient-dark-purple);
    text-align: center;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.social-proof::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--pattern-overlay);
    background-size: var(--pattern-size);
    opacity: var(--pattern-opacity);
    z-index: -1;
}

.social-proof-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.client-videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.client-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 9/16;
}

.client-video:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(59, 167, 231, 0.3);
}

.client-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    pointer-events: none;
}

.client-video:hover .video-overlay {
    transform: translateY(0);
}

.client-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.video-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .client-videos {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 350px;
    }
    
    .client-video {
        aspect-ratio: 9/16;
    }
    
    .video-overlay {
        padding: 15px;
    }
    
    .problem-points {
        flex-direction: column;
        gap: 25px;
    }
    
    .problem-point {
        padding: 30px 20px;
    }
    
    .problem-point p {
        font-size: 1.05rem;
    }
    
    .logo-image {
        height: 32px;
    }
    
    .footer-logo .logo-image {
        height: 40px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .client-videos {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }
}

/* Problem Section */
.problem {
    background: linear-gradient(135deg, #0a0a14 0%, #1a0a20 50%, #200a14 100%);
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 167, 231, 0.15) 0%, transparent 60%);
    z-index: 0;
}

.problem::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    z-index: 0;
}

.problem-points {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.problem-point {
    flex: 1;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.problem-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #6c5ce7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.problem-point:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(59, 167, 231, 0.3);
}

.problem-point:hover::before {
    opacity: 1;
}

.problem-point .icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.problem-point:hover .icon {
    transform: scale(1.2);
}

.problem-point p {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.5;
    padding: 0 10px;
}

/* USP Section */
.usp {
    background: var(--gradient-dark-purple);
    position: relative;
    overflow: hidden;
}

.usp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 167, 231, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(59, 167, 231, 0.2) 0%, transparent 25%);
    background-size: 100% 100%;
    opacity: 1;
    z-index: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.feature {
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    background-color: rgba(59, 167, 231, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: var(--text-color-muted);
}

.testimonial-mini {
    background-color: var(--bg-color-lighter);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.testimonial-mini::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial-mini p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-color-muted);
}

/* How It Works Section */
.how-it-works {
    background: var(--gradient-dark-purple);
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(255, 183, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 183, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    z-index: 0;
}

.magic-subtitle {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    max-width: 700px;
    margin: 0 auto 50px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
}





.process-steps {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.step:nth-child(odd) {
    justify-content: flex-start;
}

.step:nth-child(even) {
    justify-content: flex-end;
}

.step-content {
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    width: 45%;
    z-index: 2;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(59, 167, 231, 0.7);
    z-index: 3;
}

.step-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 60px;
    width: 60px;
    background-color: rgba(59, 167, 231, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
    color: var(--text-color-muted);
}

/* Testimonial Carousel */
.testimonials {
    background: var(--gradient-dark-purple);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-radial-gradient(circle at 0 0, transparent 0, rgba(255, 255, 255, 0.03) 40px), repeating-linear-gradient(rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
    background-size: 100% 100%;
    opacity: 0.3;
    z-index: -1;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto 30px;
    position: relative;
    height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    padding: 0 20px;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-text {
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Video Testimonials */
.video-testimonials {
    margin-top: 50px;
    padding: 0 20px;
}

.video-testimonials-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.video-testimonials .client-videos {
    grid-template-columns: repeat(4, 1fr);
    display: grid;


    align-items: center;
    justify-content: center;
    border-radius: 24px;
}

.video-placeholder video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.video-placeholder i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, rgba(59, 167, 231, 0.95), rgba(30, 144, 255, 0.95));
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(59, 167, 231, 0.5);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-placeholder:hover i {
    transform: translate(-50%, -50%) scale(1.15);
    background: linear-gradient(135deg, rgba(59, 167, 231, 1), rgba(30, 144, 255, 1));
    box-shadow: 0 12px 40px rgba(59, 167, 231, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.video-testimonial-info {
    display: none;
}

.video-testimonial-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-testimonial-info p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Video navigation dots - hidden for auto-sliding layout */
.video-nav-dots {
    display: none;
}

.view-more-testimonials {
    text-align: center;
    margin-top: 30px;
}

.view-more-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #1e90ff);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 167, 231, 0.3);
    border: 2px solid transparent;
}

.view-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 167, 231, 0.4);
    background: linear-gradient(135deg, #1e90ff, var(--primary-color));
    border-color: rgba(255, 255, 255, 0.2);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.control {
    width: 40px;
    height: 40px;
    background-color: var(--bg-color-lighter);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.control:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Comparison Table */
.comparison {
    background: var(--gradient-dark-purple);
    position: relative;
    overflow: hidden;
}

.comparison::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-conic-gradient(rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 5%, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.03) 50%);
    background-size: 100px 100px;
    opacity: 0.3;
    z-index: -1;
}

.table-container {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--bg-color-lighter);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}

.indicator {
    font-size: 1.5rem;
}

.indicator.positive {
    color: var(--primary-color);
}

.indicator.warning {
    color: #ffc107;
}

.indicator.negative {
    color: #dc3545;
}

/* Qualification Section */
.qualification {
    background: var(--gradient-dark-purple);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.qualification::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--pattern-overlay);
    background-size: var(--pattern-size);
    opacity: var(--pattern-opacity);
    z-index: -1;
}

.qualification-list {
    max-width: 600px;
    margin: 0 auto 30px;
}

.qualification-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.qualification-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
}

.qualification-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
}

.qualification-item p {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--text-color-muted);
    font-style: italic;
}

/* Mid-Page CTA */
.mid-cta {
    background: var(--gradient-dark-purple);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.mid-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 167, 231, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(59, 167, 231, 0.2) 0%, transparent 25%);
    background-size: 100% 100%;
    opacity: 1;
    z-index: 0;
}

.mid-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.mid-cta .primary-cta {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    position: relative;
    z-index: 1;
}

.mid-cta .primary-cta:hover {
    background-color: transparent;
    color: white;
}

.guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq {
    background: var(--gradient-dark-purple);
    position: relative;
    overflow: hidden;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), linear-gradient(225deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), linear-gradient(315deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%), linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    opacity: 0.25;
    z-index: -1;
}

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

.accordion-item {
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.accordion-item:hover {
    border-color: var(--primary-color);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.accordion-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer CTA */
.footer-cta {
    background: var(--gradient-dark-purple);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 50% 0%, rgba(59, 167, 231, 0.15) 0%, transparent 50%), radial-gradient(circle at 100% 50%, rgba(59, 167, 231, 0.1) 0%, transparent 50%);
    background-size: 100% 100%;
    opacity: 1;
    z-index: 0;
}

.footer-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Portfolio Showcase Styles */
.portfolio-items-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    padding: 80px 0;
}

.showcase-card {
    background: #0D0D1A;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 320px;
    height: 680px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    align-items: center;
    padding: 20px;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><line x1="0" y1="10" x2="100" y2="10" stroke="rgba(59, 167, 231, 0.2)" stroke-width="1"/><line x1="10" y1="0" x2="10" y2="100" stroke="rgba(59, 167, 231, 0.2)" stroke-width="1"/></svg>');
    background-size: 20px 20px;
}

.card-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
}

.logo-text span:first-child {
    font-weight: 700;
    font-size: 0.9rem;
}

.logo-text span:last-child {
    font-size: 0.7rem;
    color: #3BA7E7;
    letter-spacing: 1px;
}

.card-body {
    flex-grow: 1;
    padding: 0 20px;
}

.before-after-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    gap: 15px;
}

.video-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-label {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.video-placeholder {
    background: #1A1A2E;
    border-radius: 15px;
    width: 120px;
    height: 200px;
}

.video-placeholder.after {
    width: 150px;
    height: 250px;
}

.card-footer {
    padding: 20px;
    color: white;
}

.footer-text p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Card 2 Styles */
.card-2 .card-body {
    padding: 20px 0;
}

.before-after-stacked {
    position: relative;
    height: 100%;
    background: url('thumbnails/blurry-bg.svg') no-repeat center center/cover;
    border-radius: 20px;
}

.video-label-alt {
    position: absolute;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    transform: rotate(-90deg);
    transform-origin: top left;
}

.video-label-alt.before {
    top: 150px;
    left: 10px;
}

.video-label-alt.after {
    top: 300px;
    left: 10px;
}

.main-video-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    aspect-ratio: 9/16;
}

.main-video-wrapper video {
    width: 100%;
    border-radius: 20px;
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0,0,0,0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.card-footer-timeline {
    padding: 15px;
}

.card-footer-timeline img {
    width: 100%;
}

/* Card 3 Styles */
.card-3 .video-label {
    text-transform: capitalize;
}


/* Portfolio Styles */
.portfolio-hero {
    background: var(--gradient-dark-purple);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(59, 167, 231, 0.2) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(59, 167, 231, 0.2) 0%, transparent 25%);
    background-size: 100% 100%;
    opacity: 1;
    z-index: 0;
}

.portfolio-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.portfolio-subtitle {
    font-size: 1.3rem;
    color: var(--text-color-muted);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    padding: 80px 0;
    background: var(--gradient-dark-purple);
}



.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.portfolio-video {
    aspect-ratio: 9/16;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    background-color: var(--bg-color-light);
    transition: var(--transition);
}

.portfolio-video:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%);
    border-radius: 20px;
    margin-top: 40px;
}

.portfolio-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.portfolio-cta p {
    font-size: 1.2rem;
    color: var(--text-color-muted);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .portfolio-hero h1 {
        font-size: 2.5rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.1rem;
    }
    
    .portfolio-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    

    
    .portfolio-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .portfolio-hero {
        padding: 100px 0 60px;
    }
    
    .portfolio-hero h1 {
        font-size: 2rem;
    }
    
    .portfolio-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Footer */
.footer {
    background: var(--gradient-dark-purple);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--pattern-overlay);
    background-size: var(--pattern-size);
    opacity: var(--pattern-opacity);
    z-index: -1;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 30px;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(26, 26, 46, 0.3);
    -webkit-overflow-scrolling: touch;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.7) 0%, rgba(26, 26, 46, 0.7) 100%);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.contact-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
}

.contact-item div {
    text-align: left;
}

.contact-item strong {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.contact-item p {
    margin: 0;
    color: var(--text-color-muted);
    font-size: 0.95rem;
}

.footer-contact::-webkit-scrollbar {
    height: 6px;
}

.footer-contact::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.3);
    border-radius: 10px;
}

.footer-contact::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.legal-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.legal-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.separator {
    color: var(--text-color-muted);
    font-weight: 300;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-color-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Privacy Policy Styles */
.privacy-policy-section {
    background: var(--gradient-dark-purple);
    padding: 120px 0 80px;
    min-height: 100vh;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: white;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-color-muted);
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.policy-intro {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(59, 167, 231, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.policy-section h3 {
    font-size: 1.2rem;
    color: white;
    margin: 20px 0 10px;
    font-weight: 600;
}

.policy-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-color-muted);
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    margin-bottom: 8px;
    color: var(--text-color-muted);
    line-height: 1.5;
}

.policy-section code {
    background: rgba(59, 167, 231, 0.2);
    color: var(--primary-light);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.contact-info {
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.5) 0%, rgba(26, 26, 46, 0.5) 100%);
    padding: 20px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    margin-top: 15px;
}

.contact-info p {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.back-to-home {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(15, 15, 26, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 999;
    border-top: 1px solid var(--border-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.sticky-cta p {
    font-weight: 500;
    margin: 0;
}

.sticky-cta .primary-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .headline {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .process-steps,
    .problem-points {
        flex-direction: column;
        gap: 20px;
    }

    .footer-contact {
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .contact-item {
        padding: 15px;
        gap: 12px;
    }

    .contact-item i {
        font-size: 1.3rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .separator {
        display: none;
    }

    /* Privacy Policy Mobile */
    .privacy-policy-section {
        padding: 100px 0 60px;
    }

    .privacy-content {
        margin: 0 20px;
        padding: 30px 20px;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section h3 {
        font-size: 1.1rem;
    }

    .contact-info {
        padding: 15px;
    }

    .contact-info p {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(15, 15, 26, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    /* Video Testimonials Mobile */
    .video-testimonials {
        padding: 0 10px;
    }

    .video-testimonials-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .video-testimonials .client-videos {
        grid-template-columns: 1fr;
    }

    .video-placeholder {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .video-placeholder i {
        font-size: 20px;
        width: 50px;
        height: 50px;
    }

    .video-nav-dots {
        margin-top: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
        opacity: 1;
    }

    .view-more-testimonials {
        margin-top: 25px;
    }

    .view-more-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .nav-menu li {
        margin-left: 0;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .headline {
        font-size: 2.5rem;
    }

    .subheadline {
        font-size: 1.1rem;
    }

    .cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .floating-cards {
        height: 400px;
    }

    .card {
        width: 240px;
    }

    .card-1 {
        top: 0;
    }

    .card-2 {
        left: 50%;
        top: 140px;
        transform: translateX(-50%) scale(0.9);
    }

    .card-3 {
        left: 50%;
        top: 260px;
        transform: translateX(-50%) scale(0.85);
    }

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

    @keyframes float2 {
        0%, 100% { transform: translateX(-50%) scale(0.9) translateY(0); }
        50% { transform: translateX(-50%) scale(0.9) translateY(-15px); }
    }

    @keyframes float3 {
        0%, 100% { transform: translateX(-50%) scale(0.85) translateY(0); }
        50% { transform: translateX(-50%) scale(0.85) translateY(-15px); }
    }

    .features {
        grid-template-columns: 1fr;
    }

    .testimonial-text {
        font-size: 1.2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .sticky-cta .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .card {
        width: 200px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .accordion-header h3 {
        font-size: 1rem;
    }
}