/* ==========================================================================
   🌐 GLOBAL VARIABLES & CORE RESETS (PREMIUM DARK THEME)
   ========================================================================== */
:root {
    --bg-main: #0d0e12;
    --bg-darker: #050608;
    --bg-panel: #161920;
    --accent-color: #6c5ce7;
    --accent-hover: #5b4cd8;
    --text-primary: #ffffff;
    --text-secondary: #a4b0be;
    --border-color: #2f3542;
    --danger-color: #ff4757;
    --success-color: #10ac84;
    --cyan-accent: #00f2fe;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

html, body {
    width: 100% !important;
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none !important;
}
/* ==========================================================================
   🌐 UNIFIED FULL-WIDTH CARD CONTAINERS WITH MULTI-COLOR ACCENTS
   ========================================================================== */
.subtitle-content-box,
.benefits-content-box,
.suite-content-box,
.origin-story-card,
.photo-feature-card,
.export-feature-card,
.photo-suite-content-box,
.scrollable-guide-box,
.founders-vision-card-large,
.upcoming-updates-card,
.feedback-reward-card,
.support-channels-card,
.innovation-rewards-card {
    width: 95% !important;
    max-width: 1350px !important;
    margin: 25px auto !important;
    border-radius: 18px !important;
    padding: 35px 30px !important;
    box-sizing: border-box !important;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.subtitle-content-box:hover,
.benefits-content-box:hover,
.suite-content-box:hover,
.origin-story-card:hover,
.photo-feature-card:hover,
.export-feature-card:hover,
.photo-suite-content-box:hover {
    transform: translateY(-4px);
}

/* 🌸 1. PINK THEME (Subtitles Card) */
.subtitle-content-box {
    background: linear-gradient(135deg, rgba(255, 92, 138, 0.08) 0%, #12151f 100%) !important;
    border: 1.5px solid rgba(255, 92, 138, 0.35) !important;
    box-shadow: 0 15px 35px rgba(255, 92, 138, 0.12) !important;
}

/* 🌊 2. CYAN / BLUE THEME (Why Use & Control Suite) */
.benefits-content-box,
.suite-content-box {
    background: linear-gradient(135deg, rgba(0, 242, 254, 0.08) 0%, #10141f 100%) !important;
    border: 1.5px solid rgba(0, 242, 254, 0.35) !important;
    box-shadow: 0 15px 35px rgba(0, 242, 254, 0.12) !important;
}

/* 👑 3. GOLD / AMBER THEME (Founder's Origin Story) */
.origin-story-card {
    background: linear-gradient(135deg, rgba(241, 196, 15, 0.08) 0%, #131620 100%) !important;
    border: 1.5px solid rgba(241, 196, 15, 0.35) !important;
    box-shadow: 0 15px 35px rgba(241, 196, 15, 0.12) !important;
}

/* 🔮 4. PURPLE / NEON VIOLET THEME (Integrated Photo Tools) */
.photo-feature-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, #121420 100%) !important;
    border: 1.5px solid rgba(108, 92, 231, 0.4) !important;
    box-shadow: 0 15px 35px rgba(108, 92, 231, 0.15) !important;
}

/* ⚡ 5. EMERALD GREEN THEME (Photo Suite & Innovation) */
.photo-suite-content-box,
.innovation-rewards-card {
    background: linear-gradient(135deg, rgba(16, 172, 132, 0.08) 0%, #0f141d 100%) !important;
    border: 1.5px solid rgba(16, 172, 132, 0.35) !important;
    box-shadow: 0 15px 35px rgba(16, 172, 132, 0.12) !important;
}

/* 🎬 6. ELECTRIC SKY BLUE THEME (Export Engine) */
.export-feature-card {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.09) 0%, #0f131c 100%) !important;
    border: 1.5px solid rgba(56, 189, 248, 0.35) !important;
    box-shadow: 0 15px 35px rgba(56, 189, 248, 0.14) !important;
}

/* ==========================================================================
   ✨ DYNAMIC SCROLL ANIMATIONS (ENTRANCE MOVEMENTS)
   ========================================================================== */
.dynamic-anim-card {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.dynamic-anim-card.visible-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation for icons/badges */
@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.story-badge, .photo-badge, .export-badge, .photo-suite-badge {
    animation: softFloat 3s ease-in-out infinite;
}

/* ==========================================================================
   📖 READ MORE / COLLAPSIBLE TOGGLE SYSTEM
   ========================================================================== */
.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    opacity: 0;
}

.collapsible-content.expanded {
    max-height: 2000px;
    opacity: 1;
    transition: max-height 0.8s ease-in-out, opacity 0.6s ease;
    margin-top: 15px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.3);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #00f2fe;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.4);
}

/* ==========================================================================
   🏠 INTRO LANDING PAGE (FULL WIDTH CONTAINER)
   ========================================================================== */
#introPage, .intro-container {
    width: 100% !important;
    max-width: 100vw !important;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--bg-darker);
    padding: 30px 2% !important;
}

.brand-header-box {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
}

/* Inline horizontal flexbox for logo & S STUDIO text */
.main-logo-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
    margin-bottom: 12px;
    flex-wrap: nowrap !important;
}

.logo-box-container {
    width: 90px !important;
    height: 90px !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 242, 254, 0.08);
    border: 2px solid var(--cyan-accent);
    border-radius: 18px;
    padding: 8px;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.25);
    flex-shrink: 0;
}

.s-main-logo {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
}

.main-heading-title {
    margin: 0 !important;
    font-size: 38px !important;
    color: var(--cyan-accent);
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1;
    white-space: nowrap;
}

.powered-by-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #38bdf8;
    text-decoration: none;
    margin-top: 10px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.powered-by-link:hover {
    color: var(--cyan-accent);
    border-color: var(--cyan-accent);
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.3);
}

.sriram-sub-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain;
    vertical-align: middle;
}

.select-workspace-sub {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
}

.workspace-choice-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 95% !important;
    max-width: 1400px !important;
    margin: 0 auto 30px auto;
}

.choice-card {
    flex: 1;
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
    text-align: center;
}

.choice-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.choice-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.coming-soon {
    color: var(--danger-color);
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}

.locked-studio {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==========================================================================
   🖼️ FULL PAGE CARDS & CONTENT BOXES
   ========================================================================== */
.scrollable-guide-box,
.founders-vision-card-large,
.upcoming-updates-card,
.feedback-reward-card,
.support-channels-card,
.innovation-rewards-card {
    width: 95% !important;
    max-width: 1400px !important;
    margin: 25px auto !important;
    background: #11141f !important;
    border: 1px solid #232a3b !important;
    border-radius: 16px !important;
    padding: 30px !important;
    box-sizing: border-box !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.scrollable-guide-content {
    color: #cbd5e1;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}

.guide-section {
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.guide-section h3 { 
    color: var(--cyan-accent); 
    font-size: 16px; 
    margin-bottom: 8px; 
}

.guide-section p, .guide-section li { 
    color: var(--text-secondary); 
    font-size: 13px; 
    line-height: 1.6; 
}

.pip-highlight {
    background: rgba(108, 92, 231, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 8px;
    padding: 15px;
}

.pip-grid span { 
    display: block; 
    font-size: 12.5px; 
    color: #cbd5e1; 
    margin-bottom: 6px; 
}

/* ==========================================================================
   💻 EDITOR SCREEN NAVBAR & WORKSPACE
   ========================================================================== */
/* ==========================================================================
   🛠️ PERFECT FIT EDITOR WORKSPACE & TOOLBAR FIX (CSS)
   ========================================================================== */

/* Editor container to fit full browser window without vertical body scrolling */
.editor-container, #editorPage {
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    background: #0f121d !important;
    overflow: hidden !important;
}

/* Navbar fixed height */
.navbar {
    height: 55px !important;
    flex-shrink: 0 !important;
}

/* Workspace wrapper taking available center space */
.workspace {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 5px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Preview window to hold video */
.preview-window {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Video wrapper compact height so buttons and timeline fit perfectly */
.video-wrapper {
    max-height: 38vh !important;
    width: 70% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Mini player controls box below video */
.player-controls {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 5px 0 !important;
    flex-shrink: 0 !important;
}

/* Timeline area container fixed at the bottom */
#timelineAreaBox {
    display: block !important;
    visibility: visible !important;
    width: 100% !important;
    background: #161920 !important;
    padding: 8px 12px !important;
    border-top: 2px solid #2f3542 !important;
    box-sizing: border-box !important;
    flex-shrink: 0 !important;
}

/* Timeline tracks horizontal scroll layout */
.timeline-tracks {
    display: flex !important;
    gap: 8px !important;
    overflow-x: auto !important;
    padding-bottom: 4px !important;
  max-height: 90px !important;
}

/* Tools container grid alignment for editing buttons */
.tools-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 6px !important;
}

.navbar {
    width: 100% !important;
    background-color: var(--bg-panel);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px !important;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.logo-s {
    background: linear-gradient(135deg, #6c5ce7, #a8a5ff);
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 18px;
    color: white;
}

.logo-text {
    font-weight: 600;
    font-size: 18px;
}

.menu-items, .action-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-btn {
    background-color: transparent;
    color: var(--text-secondary);
    border: 1px solid transparent;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.05);
}

.upload-trigger {
    background-color: var(--accent-color) !important;
    color: white !important;
    font-weight: bold !important;
}

.export-btn-main {
    background-color: var(--danger-color);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}

/* ==========================================================================
   🎥 PREVIEW WINDOW & WORKSPACE AREA
   ========================================================================== */
.workspace, main.workspace {
    flex: 1 !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: var(--bg-darker);
    padding: 10px !important;
    overflow: hidden !important;
}

.preview-window {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.video-wrapper, #videoWrapper {
    width: 95% !important;
    height: 100% !important;
    max-height: 62vh !important;
    aspect-ratio: 16 / 9 !important;
    background-color: #000000;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7);
}

.video-wrapper video, .video-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.live-text-box {
    position: absolute;
    top: 40%;
    left: 35%;
    color: #ffffff;
    background: transparent;
    padding: 6px 10px;
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    cursor: move;
    outline: none;
    border: 1px dashed transparent;
    user-select: none;
}

.live-text-box.selected-active {
    border: 1px dashed var(--accent-color);
    background: rgba(108, 92, 231, 0.1);
}

#placeholderText {
    color: var(--text-secondary);
    font-size: 14px;
}

.player-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
}

.player-btn {
    background-color: var(--bg-panel);
    color: white;
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
}

.play-main {
    background-color: var(--accent-color);
    border: none;
    padding: 8px 22px;
    font-weight: bold;
}

/* ==========================================================================
   🎞️ TIMELINE STACK ENGINE
   ========================================================================== */
.timeline-area, #timelineAreaBox {
    width: 100% !important;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    background-color: #11141f;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.timeline-tracks {
    width: 100% !important;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 16px;
    background-color: var(--bg-main);
    overflow-y: auto;
    position: relative;
}

.track-row {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.track-icon {
    width: 45px;
    font-size: 13px;
    text-align: center;
    color: var(--text-secondary);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.track-block {
    flex: 1;
    height: 100%;
    border-left: 1px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
}

.active-video-track {
    background: linear-gradient(90deg, rgba(108, 92, 231, 0.2), transparent);
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
    font-size: 12px;
    color: #a8a5ff;
}

#frameTimelineTrack {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #1b1d26;
    overflow-x: auto;
}

#framesContainer {
    display: flex;
    height: 100%;
}

.video-thumb-frame {
    height: 100%;
    width: 60px;
    object-fit: cover;
    border-right: 1px solid #333333;
}

/* ==========================================================================
   📍 FULL-HEIGHT TIMELINE PLAYHEAD & TOP PIN MARKER
   ========================================================================== */
#playhead, .playhead-line {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    height: 100% !important; /* Full height across all tracks */
    width: 2px !important;
    background: #ffffff !important;
    box-shadow: 0 0 10px #8b5cf6, 0 0 4px #ffffff !important;
    z-index: 999 !important;
    pointer-events: none !important;
    transition: left 0.05s linear;
}

/* Round pointer pin at the top of the playhead */
#playhead::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -5px;
    width: 12px;
    height: 12px;
    background: #8b5cf6;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(139, 92, 246, 0.8);
}

/* ==========================================================================
   🛠️ BOTTOM TOOLBAR MATRIX
   ========================================================================== */
.timeline-controls {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px 12px;
    align-items: center;
    background-color: var(--bg-panel);
    padding: 10px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tools-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.tool-btn, .control-btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    background-color: #222733;
    color: #fff;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

.tool-btn:hover, .control-btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.tool-btn:active, .control-btn:active {
    transform: scale(0.96);
}

.delete-btn {
    background-color: rgba(255, 71, 87, 0.15) !important;
    border-color: rgba(255, 71, 87, 0.3) !important;
    color: #ff4757 !important;
}

.delete-btn:hover {
    background-color: var(--danger-color) !important;
    color: white !important;
}

.control-group {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.control-group input[type="range"] {
    width: 75px;
    accent-color: var(--accent-color);
}

.control-group label, .control-group span {
    font-size: 11px;
    color: var(--text-secondary);
}

/* ==========================================================================
   📦 MODAL POPUPS & DIALOGS
   ========================================================================== */
.export-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.modal-content {
    background-color: var(--bg-panel);
    width: 90%;
    max-width: 440px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
}

/* ==========================================================================
   🏢 SRI RAM GROUPS - 4-COLUMN MASTER FOOTER
   ========================================================================== */
.s-studio-master-footer {
    width: 100% !important;
    background-color: #0d0e12;
    border-top: 1px solid #232a3b;
    padding: 40px 5% 0 5% !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #cbd5e1;
    margin-top: 40px;
    box-sizing: border-box !important;
}

.footer-grid-container {
    width: 100% !important;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 30px;
}

.footer-col-title {
    color: var(--cyan-accent);
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 18px;
}

.company-desc-text {
    font-size: 12.5px;
    line-height: 1.6;
    color: #94a3b8;
    margin-bottom: 15px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
    font-size: 13px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--cyan-accent);
    text-decoration: underline;
}

.contact-list li {
    color: #cbd5e1;
    font-size: 12.5px;
    word-break: break-all;
}

.contact-list a {
    color: #38bdf8;
}

.report-bug-btn {
    background: rgba(255, 71, 87, 0.12);
    color: #ff4757;
    border: 1px dashed #ff4757;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
}

.report-bug-btn:hover {
    background: #ff4757;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.standalone-copyright-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.standalone-copyright-footer p {
    margin: 0;
    font-size: 12px;
    color: #64748b;
}

/* ==========================================================================
   📱 CLEAN RESPONSIVE MEDIA QUERIES (MOBILE & TABLET)
   ========================================================================== */
@media screen and (max-width: 900px) {
    .footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 600px) {
    .logo-box-container {
        width: 65px !important;
        height: 65px !important;
        border-radius: 12px;
    }
    .main-heading-title {
        font-size: 26px !important;
    }
    .workspace-choice-container {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .scrollable-guide-box,
    .founders-vision-card-large,
    .upcoming-updates-card,
    .feedback-reward-card,
    .support-channels-card,
    .innovation-rewards-card {
        padding: 18px !important;
        margin: 15px auto !important;
        width: 98% !important;
    }
    .tools-container, .timeline-controls {
        justify-content: center !important;
    }
    .tool-btn, .control-btn {
        font-size: 11px !important;
        padding: 6px 8px !important;
    }
    .footer-grid-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* ==========================================================================
   ✨ ATTENTION-GRABBING ANIMATED SUPPORT CARD (NO EMOJIS & ADS SAFE)
   ========================================================================== */

/* Scroll Animation Initial State */
.scroll-reveal-card {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Active State Triggered On Scroll */
.scroll-reveal-card.reveal-active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.support-channels-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.95)) !important;
    border: 2px solid #38bdf8 !important;
    border-radius: 18px !important;
    padding: 35px 30px !important;
    margin: 40px auto 30px auto !important;
    width: 95% !important;
    max-width: 1400px !important;
    text-align: left !important;
    box-sizing: border-box !important;
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.25), inset 0 0 15px rgba(56, 189, 248, 0.08) !important;
    position: relative;
    overflow: hidden;
}

.support-header-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(56, 189, 248, 0.25);
    padding-bottom: 18px;
}

.support-title-container {
    flex: 1;
}

.support-main-title {
    color: #38bdf8 !important;
    margin: 0 !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
    line-height: 1.3 !important;
}

.support-sub-text {
    color: #cbd5e1 !important;
    font-size: 14px !important;
    margin: 6px 0 0 0 !important;
    font-weight: 400 !important;
}

.support-body-content {
    color: #e2e8f0;
    font-size: 14.5px;
    line-height: 1.8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.email-support-panel {
    background: rgba(56, 189, 248, 0.06) !important;
    border-left: 5px solid #00f2fe !important;
    padding: 22px 24px !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.email-panel-title {
    color: #ffffff !important;
    margin: 0 0 12px 0 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

.email-row {
    margin: 0 0 10px 0 !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.email-row:last-child {
    margin-bottom: 0 !important;
}

.email-label {
    color: #e2e8f0;
    font-weight: 600;
}

.email-link {
    color: #00f2fe !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    padding: 2px 8px;
    background: rgba(0, 242, 254, 0.08);
    border-radius: 4px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #ffffff !important;
    background: #00f2fe !important;
    box-shadow: 0 0 12px rgba(0, 242, 254, 0.6) !important;
}

/* Responsive adjustments */
@media screen and (max-width: 600px) {
    .support-channels-card {
        padding: 22px 18px !important;
    }
    .support-main-title {
        font-size: 20px !important;
    }
    .email-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ==========================================================================
   ✨ MARQUEE AUTO-SCROLL WITH HOVER/VIEW PAUSE ENGINE
   ========================================================================== */

.auto-scroll-pause-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(17, 24, 39, 0.98)) !important;
    border: 2px solid #10ac84 !important;
    border-radius: 16px !important;
    padding: 35px 30px !important;
    margin: 35px auto 25px auto !important;
    width: 95% !important;
    max-width: 1400px !important;
    text-align: left !important;
    box-sizing: border-box !important;
    box-shadow: 0 12px 35px rgba(16, 172, 132, 0.15) !important;
    overflow: hidden !important;
    position: relative;
}

/* Continuous Side-Scroll Animation */
.auto-scroll-pause-card .marquee-content-wrapper {
    display: block;
    animation: scrollHighlight 15s linear infinite;
    will-change: transform;
}

/* 1. Pause Animation when user Hovers Mouse over the Card */
.auto-scroll-pause-card:hover .marquee-content-wrapper {
    animation-play-state: paused !important;
}

/* 2. Pause Animation when user Scrolls directly to this section */
.auto-scroll-pause-card.user-view-focused .marquee-content-wrapper {
    animation-play-state: paused !important;
    transform: translateX(0) !important;
    transition: transform 0.6s ease-out;
}

/* Smooth Horizontal Motion Keyframes */
@keyframes scrollHighlight {
    0% {
        transform: translateX(30px);
    }
    50% {
        transform: translateX(-15px);
    }
    100% {
        transform: translateX(30px);
    }
}

@media screen and (max-width: 600px) {
    .auto-scroll-pause-card {
        padding: 20px 15px !important;
    }
}

/* ==========================================================================
   🖼️ PHOTO EDITING LARGE CANVAS & HANDS CONTROL STYLES
   ========================================================================== */

.video-wrapper.photo-mode-large {
    width: 98% !important;
    height: 80vh !important;
    max-height: 80vh !important;
    border: 2px solid var(--accent-color) !important;
    box-shadow: 0 0 35px rgba(108, 92, 231, 0.3) !important;
    margin: 10px auto !important;
    overflow: hidden !important;
    position: relative;
    background: #000000;
}

#mainPhotoPlayer {
    user-select: none;
    -webkit-user-drag: none;
}

/* Photo Adjustment Range Styling */
#sStudioAdjustMenu input[type="range"] {
    accent-color: #6c5ce7;
    width: 100%;
}
/* Hand cursor for Color Picker pointer */
.chroma-picker-active {
    cursor: crosshair !important;
}

/* Chroma Key Timeline Track Styling */
.chroma-track-block {
    background: rgba(16, 172, 132, 0.25) !important;
    border: 1px solid #10ac84 !important;
    color: white !important;
    padding: 4px 10px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 32px !important;
    min-width: 140px;
    cursor: e-resize !important; /* Optimized icon for grab and drag */
    user-select: none;
    position: relative;
}
/* ==========================================================================
   🎬 PROFESSIONAL TIMELINE TRACKS LAYOUT (HORIZONTAL SCROLL)
   ========================================================================== */

/* Main container holding all timeline rows */
.timeline-tracks {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    background: #0f121d !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* Individual track row layout */
.track-row {
    display: flex !important;
    align-items: center !important;
    background: #161920 !important;
    border: 1px solid #2f3542 !important;
    border-radius: 4px !important;
    height: 38px !important;
    width: 100% !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Track icon box on the left */
.track-icon {
    width: 40px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border-right: 1px solid #2f3542 !important;
}

/* Track block container where items align horizontally with scrollbar */
.track-block {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    width: 100% !important;
    height: 100% !important;
    padding: 0 8px !important;
    box-sizing: border-box !important;
    scrollbar-width: thin;
    scrollbar-color: #6c5ce7 #161920;
}

/* Custom scrollbar styling for professional look */
.track-block::-webkit-scrollbar {
    height: 5px;
}

.track-block::-webkit-scrollbar-track {
    background: #161920;
}

.track-block::-webkit-scrollbar-thumb {
    background: #6c5ce7;
    border-radius: 3px;
}

.hidden {
    display: none !important;
}

#editorPage.hidden {
    display: none !important;
}

.media-dependent.hidden {
    display: none !important;
}

.subtitle-feature-wrapper {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #0f1117;
    box-sizing: border-box;
}

.subtitle-content-box {
    max-width: 850px;
    width: 100%;
    background: #161922;
    border: 1px solid #282c37;
    border-radius: 12px;
    padding: 45px;
    box-sizing: border-box;
}

/* గులాబీ రంగు టైటిల్ */
.subtitle-pink-title {
    color: #ff5c8a;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 24px;
    line-height: 1.3;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* సాధారణ, చదవడానికి వీలైన బాడీ టెక్స్ట్ */
.subtitle-body-text {
    color: #d1d5db;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.subtitle-body-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .subtitle-content-box {
        padding: 25px;
    }
    .subtitle-pink-title {
        font-size: 24px;
    }
    .subtitle-body-text {
        font-size: 15px;
    }
}

.benefits-feature-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #0f1117;
    box-sizing: border-box;
}

.benefits-content-box {
    max-width: 850px;
    width: 100%;
    background: #161922;
    border: 1px solid #282c37;
    border-radius: 12px;
    padding: 40px;
    box-sizing: border-box;
}

.benefits-cyan-title {
    color: #00f2fe;
    font-size: 28px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.benefits-body-text {
    color: #d1d5db;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.benefits-body-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefits-content-box {
        padding: 24px;
    }
    .benefits-cyan-title {
        font-size: 22px;
    }
    .benefits-body-text {
        font-size: 14.5px;
    }
}

.suite-feature-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #0f1117;
    box-sizing: border-box;
}

.suite-content-box {
    max-width: 900px;
    width: 100%;
    background: #161922;
    border: 1px solid #282c37;
    border-radius: 14px;
    padding: 35px;
    box-sizing: border-box;
}

.suite-image-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
    border: 1px solid #2f3542;
    background: #0b0d13;
}

.suite-hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.suite-heading {
    color: #00f2fe;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 18px 0;
    line-height: 1.3;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.suite-subheading {
    color: #38bdf8;
    font-size: 17px;
    font-weight: 600;
    margin: 22px 0 12px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.suite-body-text {
    color: #d1d5db;
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.suite-features-list {
    margin: 0 0 20px 0;
    padding-left: 20px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.suite-features-list li {
    margin-bottom: 10px;
}

.suite-features-list strong {
    color: #ffffff;
}

.suite-link {
    color: #00f2fe;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 242, 254, 0.4);
    transition: all 0.2s ease;
}

.suite-link:hover {
    color: #38bdf8;
    border-bottom-color: #38bdf8;
}

@media (max-width: 768px) {
    .suite-content-box {
        padding: 20px;
    }
    .suite-heading {
        font-size: 21px;
    }
    .suite-subheading {
        font-size: 15px;
    }
    .suite-body-text,
    .suite-features-list {
        font-size: 14.5px;
    }
}

/* ==========================================================================
   📜 S STUDIO - FOUNDER'S ORIGIN STORY STYLING
   ========================================================================== */
.origin-story-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    background: #0b0d13;
    box-sizing: border-box;
}

.origin-story-card {
    max-width: 820px;
    width: 100%;
    background: linear-gradient(180deg, #141824 0%, #0f121a 100%);
    border: 1px solid #232a3b;
    border-radius: 16px;
    padding: 45px;
    box-sizing: border-box;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 242, 254, 0.2);
    position: relative;
}

.story-badge {
    display: inline-block;
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.3);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    font-family: system-ui, -apple-system, sans-serif;
}

.story-main-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 6px 0;
    line-height: 1.3;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.5px;
}

.story-subtitle {
    color: #94a3b8;
    font-size: 14.5px;
    margin: 0 0 20px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.story-domain-link,
.story-inline-link {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(56, 189, 248, 0.5);
    transition: all 0.2s ease;
}

.story-domain-link:hover,
.story-inline-link:hover {
    color: #00f2fe;
    border-bottom-style: solid;
}

.story-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #232a3b 0%, #38bdf8 50%, #232a3b 100%);
    margin-bottom: 24px;
    opacity: 0.5;
}

.story-lead-quote {
    color: #38bdf8;
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    margin: 0 0 20px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border-left: 3px solid #00f2fe;
    padding-left: 14px;
}

.story-body-text {
    color: #cbd5e1;
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 18px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.story-body-text strong {
    color: #f8fafc;
    font-weight: 600;
}

.founder-signature-box {
    margin-top: 35px;
    padding-top: 22px;
    border-top: 1px solid #1e2638;
}

.founder-regards {
    color: #94a3b8;
    font-size: 14px;
    margin: 0 0 6px 0;
    font-family: system-ui, -apple-system, sans-serif;
}

.founder-name {
    color: #00f2fe;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.founder-title {
    color: #64748b;
    font-size: 13.5px;
    margin: 0;
    font-weight: 500;
    font-family: system-ui, -apple-system, sans-serif;
}

@media (max-width: 768px) {
    .origin-story-card {
        padding: 26px;
    }
    .story-main-title {
        font-size: 22px;
    }
    .story-lead-quote {
        font-size: 15.5px;
    }
    .story-body-text {
        font-size: 14.5px;
        line-height: 1.75;
    }
}

/* ==========================================================================
   🖼️ S STUDIO - PHOTO FEATURE SECTION STYLING
   ========================================================================== */
.photo-feature-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #0b0d13;
    box-sizing: border-box;
}

.photo-feature-card {
    max-width: 820px;
    width: 100%;
    background: linear-gradient(180deg, #141824 0%, #0f121a 100%);
    border: 1px solid #232a3b;
    border-radius: 16px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 1px rgba(108, 92, 231, 0.25);
}

.photo-badge {
    display: inline-block;
    background: rgba(108, 92, 231, 0.12);
    color: #a8a5ff;
    border: 1px solid rgba(108, 92, 231, 0.35);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, sans-serif;
}

.photo-main-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 18px 0;
    line-height: 1.35;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.4px;
}

.photo-lead-text {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 16px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.photo-body-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 16px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.photo-inline-link {
    color: #00f2fe;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(0, 242, 254, 0.5);
    transition: all 0.2s ease;
}

.photo-inline-link:hover {
    color: #38bdf8;
    border-bottom-style: solid;
}

.photo-card-footer {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #1e2638;
}

.photo-thank-you {
    color: #a8a5ff;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 768px) {
    .photo-feature-card {
        padding: 24px;
    }
    .photo-main-title {
        font-size: 21px;
    }
    .photo-lead-text {
        font-size: 15px;
    }
    .photo-body-text {
        font-size: 14px;
        line-height: 1.7;
    }
}
/* ==========================================================================
   🎬 S STUDIO - EXPORT ENGINE SECTION STYLING
   ========================================================================== */
.export-feature-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #0b0d13;
    box-sizing: border-box;
}

.export-feature-card {
    max-width: 820px;
    width: 100%;
    background: linear-gradient(180deg, #141824 0%, #0f121a 100%);
    border: 1px solid #232a3b;
    border-radius: 16px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 1px rgba(0, 242, 254, 0.25);
}

.export-badge {
    display: inline-block;
    background: rgba(0, 242, 254, 0.12);
    color: #00f2fe;
    border: 1px solid rgba(0, 242, 254, 0.35);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, sans-serif;
}

.export-main-title {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 18px 0;
    line-height: 1.35;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.4px;
}

.export-lead-text {
    color: #e2e8f0;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 16px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.export-body-text {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
}

.export-features-list {
    margin: 0 0 24px 0;
    padding-left: 20px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.export-features-list li {
    margin-bottom: 12px;
}

.export-features-list strong {
    color: #38bdf8;
    font-weight: 600;
}

.export-inline-link {
    color: #00f2fe;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(0, 242, 254, 0.5);
    transition: all 0.2s ease;
}

.export-inline-link:hover {
    color: #38bdf8;
    border-bottom-style: solid;
}

.export-card-footer {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #1e2638;
}

.export-closing-text {
    color: #00f2fe;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 768px) {
    .export-feature-card {
        padding: 24px;
    }
    .export-main-title {
        font-size: 21px;
    }
    .export-lead-text {
        font-size: 15px;
    }
    .export-body-text,
    .export-features-list {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* ==========================================================================
   📸 S STUDIO - PHOTO EDITING SUITE SECTION STYLING
   ========================================================================== */
.photo-suite-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #0b0d13;
    box-sizing: border-box;
}

.photo-suite-content-box {
    max-width: 880px;
    width: 100%;
    background: linear-gradient(180deg, #141824 0%, #0f121a 100%);
    border: 1px solid #232a3b;
    border-radius: 16px;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 1px rgba(16, 172, 132, 0.25);
}

.photo-suite-badge {
    display: inline-block;
    background: rgba(16, 172, 132, 0.12);
    color: #10ac84;
    border: 1px solid rgba(16, 172, 132, 0.35);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: system-ui, -apple-system, sans-serif;
}

.photo-suite-heading {
    color: #ffffff;
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 18px 0;
    line-height: 1.35;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.4px;
}

.photo-suite-lead {
    color: #e2e8f0;
    font-size: 15.5px;
    line-height: 1.8;
    margin: 0 0 22px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.photo-suite-subheading {
    color: #00f2fe;
    font-size: 16.5px;
    font-weight: 600;
    margin: 0 0 14px 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.photo-suite-list {
    margin: 0 0 24px 0;
    padding-left: 20px;
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.8;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.photo-suite-list li {
    margin-bottom: 10px;
}

.photo-suite-list strong {
    color: #38bdf8;
    font-weight: 600;
}

.photo-suite-link {
    color: #00f2fe;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(0, 242, 254, 0.5);
    transition: all 0.2s ease;
}

.photo-suite-link:hover {
    color: #38bdf8;
    border-bottom-style: solid;
}

.photo-suite-footer {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid #1e2638;
}

.photo-suite-closing {
    color: #10ac84;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (max-width: 768px) {
    .photo-suite-content-box {
        padding: 24px;
    }
    .photo-suite-heading {
        font-size: 21px;
    }
    .photo-suite-lead {
        font-size: 14.5px;
    }
    .photo-suite-subheading {
        font-size: 15px;
    }
    .photo-suite-list {
        font-size: 13.5px;
        line-height: 1.7;
    }
}
