/* Cinematic Redesign Base Styles */
:root {
    --bg-black: #000000;
    --bg-darker: #06090e;
    --bg-panel: #0d1117;
    --bg-panel-hover: #161b22;
    --border-color: rgb(48, 48, 48);
    --border-color-active: rgba(139, 92, 246, 0.4);
    --text-white: #ffffff;
    --text-muted: #8b949e;
    --accent-violet: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-yellow: #f59e0b;
    --accent-red: #ef4444;
    --font-inter: 'Inter', system-ui, -apple-system, sans-serif;
    --easing-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

.cinematic-film-container {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-inter);
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.cinematic-film-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Fill the viewport and zoom/crop to center like object-fit: cover */
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .cinematic-film-container video {
        transform: translate(-67%, -50%);
    }
}

/* Escape Hatch Button */
.pro-escape-hatch {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    padding: 8px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--easing-smooth);
    opacity: 0;
    pointer-events: none;
}

.pro-escape-hatch.visible {
    opacity: 1;
    pointer-events: auto;
}

.pro-escape-hatch:hover {
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(15, 23, 42, 0.85);
    transform: translateY(-2px);
}

/* Pinned Scroll Trigger Section */
.hero-transition-section {
    position: relative;
    width: 100%;
    height: 100vh;
    /* GSAP will add pinSpacing padding automatically */
    background-color: var(--bg-black);
}

.hero-pin-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ============================================ */
/* MOBILE CINEMATIC SECTION                     */
/* ============================================ */
@media (max-width: 768px) {
    .chat-assembly-container {
        width: 95%;
        padding: 0 1.5em;
    }

    .chat-bubble {
        font-size: 13px;
        padding: 12px 16px;
        max-width: 95%;
    }

    .pro-escape-hatch {
        bottom: 16px;
        right: 16px;
        font-size: 10px;
        padding: 6px 12px;
    }
}

.morph-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ==================================================== */
/* VIDEO PLAYER (Shared Object)                         */
/* ==================================================== */

.player-wrapper {
    position: absolute;
    width: 640px;
    height: 360px;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(139, 92, 246, 0.15);
    background-color: #000;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: center center;
}

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

/* Dynamic Face Tracker Overlay */
.face-tracker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    pointer-events: none;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.face-mesh-circle {
    width: 140px;
    height: 140px;
    border: 1px dashed var(--accent-cyan);
    border-radius: 50%;
    animation: rotateMesh 6s linear infinite;
    position: relative;
}

.face-mesh-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.face-mesh-tracker-box {
    position: absolute;
    border: 1px solid var(--accent-cyan);
    width: 100px;
    height: 100px;
    top: calc(50% - 50px);
    left: calc(50% - 50px);
}

.face-mesh-text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 17, 23, 0.85);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--accent-cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

@keyframes rotateMesh {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Chat bubble for player */
.chat-overlay-bubble {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 17, 23, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px;
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 90%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 12;
}

.bubble-tag {
    background: linear-gradient(135deg, var(--accent-violet) 0%, #a855f7 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
}

.bubble-prompt {
    color: rgba(255, 255, 255, 0.95);
    font-size: 13px;
    font-weight: 400;
}

/* Stage 2: Chat Assembly */
.chat-assembly-container {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
    pointer-events: none;
}

.chat-bubble {
    padding: 16px 24px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
    max-width: 85%;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
}

.user-bubble {
    align-self: flex-end;
    background: linear-gradient(135deg, #2a2a35 0%, #1a1a25 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-right-radius: 4px;
}

.ai-bubble {
    align-self: flex-start;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-bottom-left-radius: 4px;
    backdrop-filter: blur(10px);
}

/* ==================================================== */
/* EDITOR CHROME                                        */
/* ==================================================== */

.editor-chrome {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    z-index: 5;
    background-color: #111;
    /* Dark background matching app */
    font-family: 'Inter', sans-serif;
    color: #e0e0e0;
}

.editor-chrome.visible {
    pointer-events: auto;
}

/* Top Navigation Bar */
.editor-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 50px;
    background-color: #1a1a1a;
    border-bottom: 1px solid #333;
}

.top-bar-left .app-logo-icon {
    font-size: 20px;
    color: #fff;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.diamond-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    background: #2a2a2a;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #444;
}

.guide-link {
    font-size: 13px;
    color: #aaa;
    cursor: pointer;
}

.export-button {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: #fff;
    padding: 6px 16px;
    border-radius: 4px;
    border: 1px solid #444;
    /* darker border like the screenshot */
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.export-button i {
    color: #55ff55;
    /* green download icon */
}

.export-button:hover {
    border-color: #55ff55;
    background: rgba(85, 255, 85, 0.1);
}

/* Workspace Panels */
.editor-workspace {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.editor-sidebar-left-container {
    display: flex;
    width: 320px;
    background-color: #151515;
    border-right: 1px solid #333;
    transition: transform 0.3s ease;
    /* For GSAP */
}

.sidebar-icon-strip {
    width: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
    background-color: #111;
    border-right: 1px solid #333;
}

.icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    position: relative;
}

.icon-btn span {
    font-size: 10px;
}

.icon-btn.active {
    color: #fff;
}

.red-dot {
    position: absolute;
    top: -2px;
    right: 4px;
    width: 6px;
    height: 6px;
    background-color: #ff5555;
    border-radius: 50%;
}

.sidebar-info-panel {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.panel-header {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    margin-bottom: 8px;
}

.input-group {
    margin-bottom: 16px;
}

.dark-input,
.dark-textarea {
    width: 100%;
    background-color: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    font-family: inherit;
    font-size: 13px;
    resize: none;
    box-sizing: border-box;
}

.dark-textarea {
    height: 120px;
    line-height: 1.5;
}

/* Middle Viewport */
.editor-view-middle {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #0d1117;
    position: relative;
}

/* Timeline Layout */
.editor-timeline {
    height: 250px;
    background-color: #151515;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.timeline-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 10px;
    color: #ccc;
    font-size: 14px;
}

.controls-left,
.controls-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.time-display {
    font-size: 12px;
    font-family: monospace;
}

.timeline-ruler {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: #666;
    padding: 4px 10px;
    border-bottom: 1px solid #333;
}

.timeline-tracks {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    padding-left: 10px;
    overflow-x: hidden;
}

.timeline-track {
    display: flex;
    align-items: center;
    height: 40px;
}

.clip-audio {
    background: #1a2a2a;
    border: 1px solid #2a5a5a;
    width: 90%;
    height: 100%;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.waveform-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(100, 200, 200, 0.2) 2px, rgba(100, 200, 200, 0.2) 4px);
}

.audio-text {
    position: relative;
    z-index: 1;
    font-size: 11px;
    color: #fff;
    padding-left: 10px;
    white-space: nowrap;
}

.clip-video {
    width: 90%;
    height: 100%;
    border-radius: 4px;
    border: 1px solid #444;
    display: flex;
    overflow: hidden;
}

.video-thumbnails {
    display: flex;
    height: 100%;
}

.thumb-box {
    width: 60px;
    height: 100%;
    background-color: #222;
    background-size: cover;
    background-position: center;
}

.plus {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    background: #111;
    color: #888;
    font-size: 10px;
}

.music-track {
    height: 30px;
}

.add-music {
    font-size: 11px;
    color: #888;
    padding-left: 10px;
}

.playhead-line {
    position: absolute;
    left: 10px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #ff3333;
    z-index: 10;
}

.playhead-handle {
    width: 8px;
    height: 8px;
    background-color: #ff3333;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    left: -3px;
}

/* Right Sidebar */
.editor-sidebar-right {
    width: 300px;
    background-color: #151515;
    border-left: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.right-tabs {
    display: flex;
    border-bottom: 1px solid #333;
}

.right-tabs .tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 500;
    color: #888;
    cursor: pointer;
    background: #111;
}

.right-tabs .tab.active {
    color: #fff;
    background: #1a1a1a;
    border-top: 2px solid #555;
}

.script-content {
    padding: 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #eee;
    height: 100%;
    overflow-y: auto;
}

/* Timeline Tooltips */
.timeline-tooltip-overlay {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    border: 1px solid var(--accent-violet);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
}

.timeline-tooltip-overlay.visible {
    opacity: 1;
}

.timeline-tooltip-overlay::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: #000 transparent transparent;
    display: block;
    width: 0;
}

/* Highlight styles for descent panels */
.panel-highlight-cyan {
    border-color: var(--accent-cyan) !important;
    box-shadow: 0 0 25px rgba(6, 182, 212, 0.15);
}

.panel-highlight-violet {
    border-color: var(--accent-violet) !important;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.15);
}

.panel-highlight-yellow {
    border-color: var(--accent-yellow) !important;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
}

/* Keyframes visual overlay */
.timeline-keyframes-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    padding-left: 200px;
    pointer-events: none;
    opacity: 0;
}

.keyframe-node {
    width: 10px;
    height: 10px;
    background: var(--accent-yellow);
    transform: rotate(45deg);
    border: 1px solid #fff;
    box-shadow: 0 0 8px var(--accent-yellow);
}

/* ==================================================== */
/* SOCIAL PLATFORMS MOCKUPS                             */
/* ==================================================== */

.social-mockups-container {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 15;
}

/* YouTube Mockup structure */
.youtube-mock {
    position: absolute;
    width: 800px;
    height: 520px;
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: scale(0.9);
}

.yt-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 16px;
}

.yt-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.yt-logo i {
    color: #ff0000;
    font-size: 20px;
}

.yt-search-bar {
    flex: 1;
    height: 32px;
    background: #222;
    border: 1px solid #333;
    border-radius: 20px;
}

.yt-workspace {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 16px;
    height: calc(100% - 60px);
}

/* YouTube player inner bounds to overlay video */
.yt-player-target {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 8px;
}

.yt-info {
    margin-top: 12px;
}

.yt-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.yt-meta {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Shorts Mockup structure */
.shorts-mock {
    position: absolute;
    width: 320px;
    height: 560px;
    background: #000;
    border: 4px solid #1f2937;
    border-radius: 36px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: scale(0.9);
    overflow: hidden;
}

.shorts-player-bounds {
    width: 100%;
    height: 100%;
    position: relative;
}

.shorts-overlay-info {
    position: absolute;
    bottom: 24px;
    left: 16px;
    z-index: 20;
    max-width: 80%;
}

.shorts-creator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #fff;
    margin-bottom: 8px;
}

.shorts-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-cyan) 100%);
}

.shorts-title {
    font-size: 12px;
    color: #fff;
    line-height: 1.4;
}

.shorts-actions {
    position: absolute;
    bottom: 24px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    z-index: 20;
}

.shorts-action-btn {
    width: 36px;
    height: 36px;
    background: rgba(30, 41, 59, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    backdrop-filter: blur(4px);
}

/* Final CTA screen */
.final-cta-stage {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    z-index: 18;
    pointer-events: none;
    text-align: center;
    background-color: var(--bg-black);
}

.final-cta-stage.active {
    pointer-events: auto;
}

.final-cta-title {
    font-size: clamp(36px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.04em;
}

.final-cta-subtitle {
    font-size: clamp(16px, 3vw, 22px);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.5;
}

.final-cta-button {
    background: #fff;
    color: #000;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--easing-smooth);
}

.final-cta-button:hover {
    background: #f1f5f9;
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.25);
}

/* Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {
    .hero-transition-section {
        height: auto !important;
    }

    .hero-pin-wrapper {
        position: relative !important;
        height: auto !important;
    }

    .social-mockups-container,
    .final-cta-stage {
        display: none !important;
    }

    .player-wrapper {
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9 !important;
        transform: none !important;
        margin: 20px auto;
    }

    .editor-chrome {
        position: relative !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        grid-template-rows: auto auto auto !important;
        height: auto !important;
    }

    .editor-workspace {
        grid-template-columns: 1fr !important;
        height: auto !important;
    }
}

/* Hide Redundant Original Page Sections */
/* #rizzi-section, */
/* .how-it-works, */
/* #video-carousel-container, */
/* .rizz-insertion-3, */
/* .app-preview-container, */
/* .rizzgen-power-strip-section, */
/* .creative-section, */
/* .platforms, */
/* .social-proof, */
/* .final-cta-section, */
/* .features-container, */
/* .video-grid, */
/* .rizz-insertion-1, */
/* .rizz-insertion-2, */
/* .rizz-insertion-3, */
#rizzgen-studio,
.how-it-works {
    display: none !important;
}

/* Stylized Cinematic Footer */
footer {
    background: black !important;
    border: 1px solid var(--border-color) !important;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
    margin: 0 !important;
    padding: 100px 48px 40px !important;
    position: relative;
    overflow: hidden;
}

.footer-gradient-stretch {
    position: absolute;
    bottom: 0;
    left: 48px;
    right: 48px;
    height: 6px;
    background-color: yellow;
    border-radius: 3px 3px 0 0;
    transform-origin: center center;
    transform: scaleX(0.1);
    z-index: 1;
}

/* Interactive Cursor */

.footer-giant-text {
    position: absolute;
    bottom: -12%;
    left: 50%;
    transform: translate(-50%, 0) scale(0.85);
    font-size: 18vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.035);
    letter-spacing: -0.05em;
    line-height: 1;
    text-transform: lowercase;
    font-family: 'Lilita One', 'Anton SC', 'Sora', sans-serif;
    pointer-events: none;
    z-index: 0;
    width: 100%;
    text-align: center;
    transform-origin: bottom center;
}

footer .container {
    position: relative;
    z-index: 2;
}

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

@media (max-width: 768px) {
    footer {
        margin: 40px 12px 12px !important;
        padding: 60px 24px 20px !important;
        border-top-right-radius: 24px;
        border-top-left-radius: 24px;
    }

    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }


    .footer-gradient-stretch {
        left: 24px;
        right: 24px;
    }

    .footer-giant-text {
        bottom: -1%;
        font-size: 28vw;
    }
}

/* Columns Styles */
footer .footer-brand-col h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-white) !important;
    margin-bottom: 12px;
    font-family: 'Sora', sans-serif;
}

footer .footer-brand-col .footer-tagline {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

footer .footer-brand-col img {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    transition: transform 0.3s ease;
    border-radius: 10px !important;
}

footer .footer-brand-col img:hover {
    transform: scale(1.05);
}

footer h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-white) !important;
    margin-bottom: 24px;
}

footer a {
    display: block;
    font-size: 14px;
    color: var(--text-muted) !important;
    text-decoration: none !important;
    margin-bottom: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
    width: fit-content;
}

footer a:hover {
    color: var(--accent-violet) !important;
    transform: translateX(2px);
}

/* Action / Contact Column styling */
.footer-action-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-status-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.contact-status-header h4 {
    margin-bottom: 0;
}

.active-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #10b981;
    letter-spacing: 0.5px;
    background: rgba(16, 185, 129, 0.08);
    padding: 3px 8px;
    border-radius: 12px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #10b981;
    animation: status-pulse 2s infinite;
}

@keyframes status-pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.contact-email-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-white) !important;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.contact-email-link i {
    font-size: 14px;
}

.footer-cta-wrapper {
    margin-bottom: 12px;
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: var(--text-white) !important;
    text-decoration: none !important;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s var(--easing-smooth);
    width: 100%;
    max-width: 190px;
}

.footer-cta-btn .arrow-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--easing-smooth);
}

.footer-cta-btn .arrow-circle i {
    font-size: 11px;
    transition: transform 0.3s var(--easing-smooth);
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.footer-cta-btn:hover .arrow-circle {
    background: var(--accent-violet);
    color: #ffffff;
}

.footer-cta-btn:hover .arrow-circle i {
    transform: translate(1px, -1px);
}

footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-muted) !important;
    transition: all 0.3s var(--easing-smooth);
}

footer .social-links a:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--border-color-active);
    color: var(--accent-violet) !important;
    transform: translateY(-2px);
}

footer .bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    footer .bottom-bar {
        margin-bottom: 3em;
    }
}

footer .copyright {
    font-size: 13px;
    color: var(--text-muted) !important;
}