/* 
   click2conversion - Premium UI/UX Styles 
   Theme: High-Tech, Dark Mode, Conversion-Focused
*/

:root {
    --bg-dark: #050505;
    --bg-card: #0e0e0e;
    --bg-card-hover: #151515;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    
    /* Vibrant Gradients Aligned with Logo (Blue -> Violet -> Fuchsia Pink) */
    --gradient-primary: linear-gradient(135deg, #4d00ff 0%, #b800ff 50%, #ff00b8 100%);
    --gradient-glow: rgba(184, 0, 255, 0.4);
    
    --accent: #b800ff;
    --accent-green: #ff00b8;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-radius: 16px;
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* Custom Cursor */
body {
    cursor: none; 
}

a, button, input, select, textarea, .faq-trigger, .mobile-menu-btn, .mobile-menu-close, .brand-item {
    cursor: none !important;
}

.custom-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor-follower {
    position: fixed;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cursor-text-svg {
    width: 100%;
    height: 100%;
    animation: rotateCursorText 10s linear infinite;
    transition: transform 0.3s, opacity 0.3s;
}

@keyframes rotateCursorText {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hover state for interactive elements */
.custom-cursor.hover {
    width: 0;
    height: 0;
    background-color: transparent;
}

.custom-cursor-follower.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 0, 184, 0.15);
    backdrop-filter: blur(4px);
}

.custom-cursor-follower.hover .cursor-text-svg {
    transform: scale(0.5);
    opacity: 0;
}

.custom-cursor-follower::after {
    content: "CONVERT";
    position: absolute;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--accent);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.custom-cursor-follower.hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Hide custom cursor on mobile devices */
@media (max-width: 968px) {
    .custom-cursor, .custom-cursor-follower {
        display: none !important;
    }
    body, a, button, input, select, textarea, .faq-trigger, .mobile-menu-btn, .mobile-menu-close, .brand-item {
        cursor: auto !important;
    }
}

/* Typography & Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dot {
    color: var(--accent);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(5, 5, 5, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-main);
}

.cta-btn-small {
    background: var(--border-color);
    color: var(--text-main);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.cta-btn-small:hover {
    background: transparent;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--gradient-glow);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    width: 90%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-close:hover {
    color: var(--accent);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.mobile-link {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--accent);
}

.mobile-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gradient-glow) 0%, rgba(5,5,5,0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.top-left { top: -200px; left: -200px; }
.bottom-right { bottom: -200px; right: -200px; }
.center { top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0.5; }

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.badge {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.8s ease-out;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-green);
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    animation: slideUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out 0.3s both;
}

.cta-btn-main {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 65, 108, 0.2);
}

.cta-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 65, 108, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--text-muted);
}

/* Trust Bar */
.trust-bar {
    animation: slideUp 0.8s ease-out 0.4s both;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    width: 100%;
}

.trust-bar p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.slider-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
    /* Fade edges to blend into background */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.slider-track {
    display: flex;
    width: calc(200px * 12); /* Width of all slides combined */
    animation: scroll 20s linear infinite;
}

.slide {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #888;
    transition: var(--transition);
}

.slide i {
    font-size: 24px;
    color: #666;
    transition: var(--transition);
}

.slide:hover {
    color: var(--text-main);
}

.slide:hover i {
    color: var(--accent);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); } /* Scroll exactly half the track length */
}

/* Brands Section */
.brands-section {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 100%;
}

.brand-item img {
    max-height: 40px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.55;
    filter: contrast(0.1);
    transition: var(--transition);
}

.brand-item:hover img {
    opacity: 1;
    filter: contrast(0.1); /* Keeps the exact same contrast style on hover */
    transform: scale(1.1); /* Beautiful smooth grow effect */
}

/* Proof Over Promises Section */
.proof-section {
    padding: 100px 0;
    background: radial-gradient(circle at 10% 50%, rgba(184, 0, 255, 0.08) 0%, rgba(5, 5, 5, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 60px;
    align-items: center;
}

.proof-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proof-title {
    font-size: 46px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.proof-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 440px;
}

.proof-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 50px;
}

.proof-stats-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.proof-stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-num {
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -1.5px;
    display: inline-block;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    max-width: 200px;
}

.proof-vertical-divider {
    width: 1px;
    height: 160px;
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive proof styles */
@media (max-width: 968px) {
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .proof-stats-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: start;
    }
    .proof-vertical-divider {
        display: none;
    }
    .proof-stats-col {
        gap: 25px;
    }
    .stat-num {
        font-size: 36px;
    }
    .stat-label {
        font-size: 12px;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background: #080808;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.solutions-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.specialist-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pill-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.solutions-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.solutions-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
}

.book-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--gradient-primary);
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    color: #000;
    transition: var(--transition);
}

.book-call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 0, 255, 0.35);
}

.solutions-right {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 4px 0;
}

.solution-icon-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 10px;
    flex-shrink: 0;
    transition: var(--transition);
}

.solution-item:hover .solution-icon-circle {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 15px rgba(184, 0, 255, 0.4);
}

.solution-item-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-main);
}

@media (max-width: 968px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .solutions-right {
        padding: 30px 20px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #000;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    display: flex;
    flex-direction: column;
}

.faq-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 16px 0;
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    text-align: left;
    color: var(--text-main);
    font-family: var(--font-main);
    font-size: 17px;
    font-weight: 600;
    transition: var(--transition);
}

.faq-trigger:hover {
    color: var(--accent);
}

.faq-question {
    padding-right: 20px;
    line-height: 1.4;
}

.faq-icon-wrapper {
    font-size: 14px;
    color: var(--text-muted);
    transform: rotate(-45deg);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-trigger:hover .faq-icon-wrapper {
    color: var(--accent);
}

.faq-item.active .faq-icon-wrapper {
    transform: rotate(45deg);
    color: var(--accent);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    padding: 8px 0 20px;
}

.whatsapp-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 100px;
}

.avatar-block {
    margin-bottom: 24px;
}

.avatar-circle {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(184, 0, 255, 0.12);
    border: 1px solid rgba(184, 0, 255, 0.25);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.whatsapp-card-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: #ccff33;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(204, 255, 51, 0.2);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 255, 51, 0.4);
}

.whatsapp-btn i {
    font-size: 18px;
}

@media (max-width: 968px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .whatsapp-card {
        position: static;
        padding: 30px 20px;
    }
}

/* Services */
.services {
    padding: 100px 0;
    background: #080808;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(255,255,255,0.15);
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* ROI Calculator Section */
.roi-section {
    padding: 100px 0;
    background: #050505;
}

.roi-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

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

.input-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-header label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}

.value-display {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    background: rgba(184, 0, 255, 0.05);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(184, 0, 255, 0.15);
}

/* Custom Slider Styling */
.roi-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 10px;
    background: #1f1f1f;
    outline: none;
    transition: var(--transition);
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(184, 0, 255, 0.5);
    transition: var(--transition);
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Outputs Card */
.roi-result-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.metrics-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.metric-comparison-col {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
}

.metric-comparison-col.optimized {
    background: rgba(255, 0, 184, 0.02);
    border-color: rgba(255, 0, 184, 0.15);
}

.comparison-header-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.comparison-header-label.green {
    color: var(--accent-green);
    border-bottom-color: rgba(255, 0, 184, 0.15);
}

.comp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.comp-label {
    color: var(--text-muted);
}

.comp-val {
    font-weight: 700;
    color: var(--text-main);
    font-size: 15px;
}

.comp-val.green {
    color: var(--accent-green);
}

.roi-divider-line {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 25px 0;
}

.lift-container {
    text-align: center;
    padding: 15px 0;
}

.lift-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.lift-value {
    display: block;
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 12px;
}

.lift-subtext {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials Slider */
.testimonials {
    padding: 100px 0;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 40px;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    min-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    scroll-snap-align: center;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(184, 0, 255, 0.3);
}

.stars {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
    color: #e0e0e0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--border-color);
    overflow: hidden;
}

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

.client-details h4 {
    font-size: 16px;
    font-weight: 700;
}

.client-details p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Process / About */
.process {
    padding: 100px 0;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-desc {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    font-family: monospace;
}

.step-text h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-text p {
    color: var(--text-muted);
    font-size: 15px;
}

/* Glass Panel Mockup */
.glass-panel {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff5f56;
    margin-right: 6px;
}
.dots span:nth-child(2) { background: #ffbd2e; }
.dots span:nth-child(3) { background: #27c93f; }

.panel-header .title {
    font-size: 14px;
    font-weight: 600;
    color: #888;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.metric .label {
    color: var(--text-muted);
    font-size: 15px;
}

.metric .value {
    font-size: 20px;
    font-weight: 700;
}

.value.green {
    color: var(--accent-green);
}

.chart-mockup {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    height: 100px;
    margin-top: 30px;
    padding-top: 20px;
}

.bar {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
}

.bar:hover {
    background: rgba(255,255,255,0.3);
}

/* Custom Contact / Quote Form Section */
.cta-section {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 50%, rgba(184, 0, 255, 0.08) 0%, rgba(5, 5, 5, 1) 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.agency-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.contact-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 36px;
}

.contact-metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.contact-metric-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.c-metric-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-main);
}

.c-metric-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 40px;
    color: #111111;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.form-card-title {
    font-size: 28px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.form-card-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 32px;
    line-height: 1.4;
}

.lead-form-new {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row-new {
    display: flex;
    gap: 20px;
}

.input-group-new {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.input-group-new label {
    font-size: 13px;
    font-weight: 700;
    color: #333333;
}

.input-group-new input, 
.input-group-new select, 
.input-group-new textarea {
    width: 100%;
    padding: 14px 18px;
    background: #f5f5f7;
    border: 1px solid #e5e5ea;
    border-radius: 10px;
    color: #111111;
    font-family: var(--font-main);
    font-size: 14px;
    outline: none;
    transition: var(--transition);
}

.input-group-new input::placeholder, 
.input-group-new textarea::placeholder {
    color: #a1a1a6;
}

.input-group-new input:focus, 
.input-group-new select:focus, 
.input-group-new textarea:focus {
    border-color: var(--accent);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(184, 0, 255, 0.1);
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    box-shadow: 0 4px 15px rgba(184, 0, 255, 0.2);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 0, 255, 0.4);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form-card {
        padding: 35px 25px;
    }
    .form-row-new {
        flex-direction: column;
        gap: 20px;
    }
}

/* What If Section */
.what-if-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 0%, rgba(184, 0, 255, 0.05) 0%, rgba(5, 5, 5, 1) 70%);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.what-if-header {
    text-align: center;
    margin-bottom: 50px;
}

.what-if-header .section-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.what-if-header .section-subtitle {
    font-size: 20px;
    color: var(--text-muted);
}

.what-if-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.what-if-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.what-if-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

.what-if-tab.active {
    background: var(--text-main);
    color: var(--bg-dark);
    border-color: var(--text-main);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.what-if-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.what-if-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-if-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    position: relative; /* Takes up flow space when active */
}

.what-if-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    display: block;
}

@media (max-width: 968px) {
    .what-if-header .section-title {
        font-size: 36px;
    }
}
@media (max-width: 768px) {
    .what-if-section { padding: 60px 0; }
    .what-if-tabs { gap: 10px; }
    .what-if-tab { padding: 10px 20px; font-size: 14px; }
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    background: #000;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 16px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-link:hover {
    color: var(--accent);
    border-color: rgba(184, 0, 255, 0.2);
    background: rgba(184, 0, 255, 0.03);
    transform: translateY(-2px);
}

.footer-links {
    display: flex;
    justify-content: space-around;
}

.link-group h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--accent);
}

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

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 184, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 0, 184, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 184, 0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 968px) {
    .hero-title { font-size: 56px; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: 1fr; }
    .process-wrapper { grid-template-columns: 1fr; }
    .roi-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-links { justify-content: space-between; margin-top: 40px; }
}

@media (max-width: 768px) {
    .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card { min-width: 300px; padding: 30px; }
    .nav-links, .cta-btn-small { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-title { font-size: 42px; }
    .hero-actions { flex-direction: column; width: 100%; }
    .cta-btn-main, .cta-btn-secondary { width: 100%; justify-content: center; text-align: center; }
    .form-row { flex-direction: column; }
    .metrics-comparison-grid { grid-template-columns: 1fr; }
    
    .hero-subtitle { font-size: 16px; margin-bottom: 30px; }
    .badge { font-size: 13px; padding: 6px 12px; }
    
    /* Section Padding Adjustments for Mobile */
    .hero { padding: 120px 0 60px; min-height: auto; }
    .brands-section { padding: 40px 0; }
    .proof-section, .process, .solutions-section, .faq-section, .cta-section, .testimonials { padding: 60px 0; }
}

/* Landing Page Specific Responsiveness */
@media (max-width: 968px) {
    .landing-hero-title {
        font-size: 42px !important;
        letter-spacing: -1px !important;
    }
    .landing-hero {
        padding: 140px 0 60px !important;
    }
    .problem-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .deliverables-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .calc-inputs {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    #calc-result {
        font-size: 38px !important;
    }
}

@media (max-width: 480px) {
    .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .brand-item img { max-width: 100px; }
    .hero-title { font-size: 30px; word-break: break-word; }
    .badge { font-size: 12px; padding: 6px 10px; flex-wrap: wrap; text-align: center; justify-content: center; }
    .landing-hero-title {
        font-size: 34px !important;
    }
    .landing-hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px !important;
    }
    .landing-hero-actions a {
        width: 100%;
        justify-content: center;
    }
}

/* Dedicated Landing Page Styling Reference: app.digitalfueled.com */
.landing-hero-container {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 50%, rgba(184, 0, 255, 0.08) 0%, rgba(5, 5, 5, 1) 100%);
    border-bottom: 1px solid var(--border-color);
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.landing-hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.landing-hero-left .agency-tag {
    margin-bottom: 25px;
}

.landing-hero-left h1 {
    font-size: 54px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    color: #fff;
}

.landing-hero-left p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
}

.landing-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.landing-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 45px 35px;
    transition: var(--transition);
}

.landing-service-card:hover {
    border-color: rgba(184, 0, 255, 0.35);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.landing-service-icon {
    font-size: 32px;
    color: var(--accent-green);
    margin-bottom: 24px;
}

.landing-service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.landing-service-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.landing-features-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.landing-features-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.landing-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.landing-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.landing-feature-item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 4px;
}

.landing-feature-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
}

.portfolio-custom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 968px) {
    .portfolio-custom-grid {
        grid-template-columns: 1fr;
    }
}

.portfolio-card-custom {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.portfolio-card-custom:hover {
    border-color: rgba(184, 0, 255, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-5px);
}

.portfolio-card-custom .stars {
    margin-bottom: 15px;
}

.portfolio-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 24px;
}

.portfolio-author h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.portfolio-author p {
    font-size: 13px;
    color: var(--text-muted);
}

.tech-stack-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}

.tech-stack-item {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.4;
    transition: var(--transition);
    letter-spacing: -0.5px;
}

.tech-stack-item:hover {
    opacity: 1;
    color: var(--text-main);
}

.talk-section {
    padding: 100px 0;
    background: rgba(10, 10, 10, 0.3);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.talk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.talk-bullets {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.talk-bullet-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.talk-bullet-item i {
    color: var(--accent-green);
    font-size: 20px;
}

.talk-contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.talk-contact-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.talk-contact-header p {
    font-size: 14px;
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .landing-hero-left h1 {
        font-size: 42px;
    }
    .landing-services-grid {
        grid-template-columns: 1fr;
    }
    .landing-features-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .talk-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* ==========================================================================
   Creative Portfolio Marquee Styles
   ========================================================================== */
.portfolio-marquee-section {
    padding: 100px 0;
    background: #000;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   Galaxy Cosmic Starfield & Rotating Core Styles
   ========================================================================== */
.galaxy-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* Slowly spinning galaxy core */
.galaxy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    margin-top: -75%;
    margin-left: -75%;
    background: radial-gradient(circle at center, rgba(184, 0, 255, 0.08) 0%, rgba(255, 0, 184, 0.04) 35%, rgba(0, 18, 255, 0.02) 60%, transparent 80%);
    animation: galaxy-rotate 100s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Layer 1: Twinkling & slowly drifting stars */
.galaxy-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.6) 1.5px, transparent 1.5px),
        radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 90% 65%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 10% 75%, rgba(255, 255, 255, 0.5) 2px, transparent 2px),
        radial-gradient(circle at 60% 45%, rgba(255, 255, 255, 0.7) 1px, transparent 1px);
    background-size: 400px 400px;
    animation: stars-drift 120s linear infinite, stars-twinkle 6s ease-in-out infinite alternate;
    opacity: 0.5;
    z-index: 2;
}

/* Layer 2: Offset stars drifting in reverse direction */
.galaxy-stars-secondary {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.6) 2px, transparent 2px),
        radial-gradient(circle at 15% 90%, rgba(255, 255, 255, 0.7) 1.5px, transparent 1.5px),
        radial-gradient(circle at 65% 70%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.6) 2.5px, transparent 2.5px);
    background-size: 320px 320px;
    animation: stars-drift-reverse 160s linear infinite, stars-twinkle-secondary 8s ease-in-out infinite alternate;
    opacity: 0.35;
    z-index: 2;
}

/* Star Twinkling Animations */
@keyframes stars-twinkle {
    0% { opacity: 0.3; }
    50% { opacity: 0.6; }
    100% { opacity: 0.4; }
}

@keyframes stars-twinkle-secondary {
    0% { opacity: 0.5; }
    50% { opacity: 0.15; }
    100% { opacity: 0.4; }
}

/* Cosmic Drifting Space Movements */
@keyframes stars-drift {
    0% { background-position: 0 0; }
    100% { background-position: 400px 800px; }
}

@keyframes stars-drift-reverse {
    0% { background-position: 0 0; }
    100% { background-position: -320px -640px; }
}

/* Smooth Galaxy core rotation */
@keyframes galaxy-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.marquee-glow-orb {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.35; /* Increased opacity for gorgeous, rich visibility on all displays */
}

.marquee-glow-orb.orb-1 {
    top: -50px;
    left: 10%;
    background: #ff00b8; /* Rich brand pink-fuchsia */
    animation: orb-float-1 25s ease-in-out infinite alternate;
}

.marquee-glow-orb.orb-2 {
    bottom: -100px;
    right: 15%;
    background: #b800ff; /* Electric brand violet-purple */
    animation: orb-float-2 30s ease-in-out infinite alternate;
}

/* Orb floating & pulsing keyframes (Highly optimized, 100% browser compatible transform animations) */
@keyframes orb-float-1 {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(120px, 80px) scale(1.2) rotate(180deg);
    }
    100% {
        transform: translate(-40px, -30px) scale(0.9) rotate(360deg);
    }
}

@keyframes orb-float-2 {
    0% {
        transform: translate(0, 0) scale(1.1) rotate(0deg);
    }
    50% {
        transform: translate(-100px, -80px) scale(0.85) rotate(-180deg);
    }
    100% {
        transform: translate(30px, 40px) scale(1.1) rotate(-360deg);
    }
}

.marquee-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.marquee-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    position: relative;
    width: 100%;
}

/* Vignette fade layers on left and right edges for clean visual blending */
.marquee-row::before,
.marquee-row::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-row::before {
    left: 0;
    background: linear-gradient(to right, #000 0%, transparent 100%);
}

.marquee-row::after {
    right: 0;
    background: linear-gradient(to left, #000 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    flex-shrink: 0;
    gap: 30px;
    min-width: 100%;
}

/* Scrolling animations */
.marquee-left .marquee-track {
    animation: scroll-left 35s linear infinite;
}

.marquee-right .marquee-track {
    animation: scroll-right 35s linear infinite;
}

/* Pause scroll animation on hover so client can look closely */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    width: 280px;
    height: 280px; /* Perfect square 1:1 aspect ratio for Instagram/Facebook square creatives */
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    background: #111;
}

.marquee-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 15px 40px rgba(255, 0, 122, 0.2);
    z-index: 3;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.marquee-item:hover img {
    transform: scale(1.03);
}

/* Animations Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 15px)); /* Matches half track width plus gap correction */
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(calc(-50% - 15px));
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .marquee-item {
        width: 200px;
        height: 200px; /* Perfect square on mobile as well */
    }
    .marquee-container {
        gap: 20px;
    }
    .marquee-track {
        gap: 20px;
    }
}
