/* ==========================================================================
   EMOCAPTURE - PREMIUM CSS STYLESHEET
   Dark Mode, Modern Typography, Glassmorphism & Micro-animations.
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
    --bg-primary: #121212;
    --bg-secondary: #1a1a1a;
    --bg-card: #212121;
    --accent-orange: #fb8500;
    --accent-orange-hover: #e07400;
    --accent-purple: #5A00FA;
    --accent-teal: #18596a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #808080;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(253, 133, 0, 0.3);
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --container-width: 1200px;
    --navbar-height: 80px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Resets & Accessibility --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 0),
        radial-gradient(circle at 50% 0%, rgba(90, 0, 250, 0.05) 0%, rgba(18, 18, 18, 0) 50%);
    background-size: 24px 24px, 100% 100%;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Focus States */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 4px;
}

/* Utility Containers */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-align: center;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

p {
    font-family: var(--font-body);
    color: var(--text-secondary);
    margin-bottom: 16px;
}

p.lead {
    font-size: clamp(1.1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: var(--text-primary);
}

strong {
    color: var(--text-primary);
}

/* --- Badges & Highlights --- */
.badge {
    display: inline-block;
    background: rgba(251, 133, 0, 0.1);
    color: var(--accent-orange);
    border: 1px solid rgba(251, 133, 0, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent-orange) 30%, #ffb703 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--accent-orange);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition-fast);
    border: none;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--accent-orange);
    color: #121212;
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.w-full {
    width: 100%;
}

.text-center {
    text-align: center;
}

/* --- Glow Background Elements --- */
.glow-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.glow-purple {
    background-color: var(--accent-purple);
    width: 400px;
    height: 400px;
    top: 10%;
    left: -100px;
}

.glow-teal {
    background-color: var(--accent-teal);
    width: 500px;
    height: 500px;
    bottom: 20%;
    right: -150px;
}

/* --- Floating Navbar --- */
.navbar-wrapper {
    position: fixed;
    top: 24px;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none; /* Let clicks pass through empty space */
}

.navbar {
    pointer-events: auto; /* Re-enable clicks on navbar itself */
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: rgba(33, 33, 33, 0.75);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--border-color);
    border-radius: 100px;
    padding: 0 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--accent-orange);
    letter-spacing: -0.02em;
}

.logo-text .highlight {
    color: var(--accent-orange);
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(18, 18, 18, 0.98);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    max-width: 320px;
    padding: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding-top: calc(var(--navbar-height) + 80px);
    padding-bottom: 80px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.hero-description {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.75;
}

.hero-process {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--text-secondary);
    opacity: 0.85;
    margin-bottom: 44px;
}

.hero-actions {
    margin-bottom: 48px;
}

.hero-reassurance {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 56px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 48px;
    width: 100%;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

.reassurance-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-orange);
    flex-shrink: 0;
}

/* AEO Block */
.aeo-block {
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.4) 0%, rgba(24, 89, 106, 0.1) 100%);
    border-left: 3px solid var(--accent-orange);
    padding: 20px 28px;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: left;
    max-width: 720px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* --- Client Logos Section --- */
.logos-section {
    padding: 40px 0;
    background-color: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.logos-title {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 28px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
    opacity: 0.65;
    transition: opacity var(--transition-normal);
}

.logos-grid:hover {
    opacity: 0.9;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    height: 45px;
    width: auto;
}

.brand-svg {
    height: 100%;
    max-width: 180px;
}

/* --- Problem Section --- */
.problem-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.problem-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: transparent;
    transition: background-color var(--transition-fast);
}

.problem-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.problem-card:hover::before {
    background-color: var(--accent-orange);
}

.problem-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    color: var(--accent-orange);
    margin-bottom: 24px;
}

.problem-card h3 {
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Solution Section --- */
.solution-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.solution-wrapper {
    display: flex;
    align-items: center;
    gap: 64px;
}

.solution-image,
.solution-content {
    flex: 1;
}

.solution-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.solution-content p {
    margin-bottom: 20px;
}

/* Mockup Chat Graphic */
.mockup-container {
    background-color: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.mockup-header {
    background-color: #151515;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 16px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
}

.mockup-dots span:nth-child(1) { background-color: #ff5f56; }
.mockup-dots span:nth-child(2) { background-color: #ffbd2e; }
.mockup-dots span:nth-child(3) { background-color: #27c93f; }

.mockup-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.mockup-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chat-message {
    display: flex;
    flex-direction: column;
    max-width: 85%;
}

.chat-message.agent {
    align-self: flex-start;
}

.chat-message.client {
    align-self: flex-end;
    align-items: flex-end;
}

.message-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.message-bubble {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    line-height: 1.4;
}

.agent .message-bubble {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-bottom-left-radius: 0;
    color: var(--text-primary);
}

.client .message-bubble {
    background-color: rgba(251, 133, 0, 0.15);
    border: 1px solid rgba(251, 133, 0, 0.2);
    border-bottom-right-radius: 0;
    color: var(--text-primary);
}

.message-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.mockup-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: default;
}

.mockup-btn.approve {
    background-color: var(--accent-orange);
    color: #121212;
}

.mockup-btn.edit {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* --- Method / Roadmap Section --- */
.method-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.method-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(251, 133, 0, 0.15);
    margin-bottom: 16px;
}

.method-card h3 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.card-desc {
    margin-bottom: 24px;
    flex-grow: 1;
}

.step-detail {
    font-size: 0.85rem;
    line-height: 1.5;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* Telegram Custom Card Box */
.telegram-box {
    background: linear-gradient(135deg, rgba(33, 33, 33, 0.8) 0%, rgba(24, 89, 106, 0.15) 100%);
    border: 1px solid rgba(24, 89, 106, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.telegram-box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.tg-icon {
    color: var(--accent-orange);
    flex-shrink: 0;
}

.telegram-box-header h4 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.telegram-box-header p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.telegram-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.tg-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.tg-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: var(--accent-orange);
    color: #121212;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.tg-step p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- Impact Table Section --- */
.impact-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.impact-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.impact-table th,
.impact-table td {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
}

.impact-table th {
    background-color: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
}

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

.impact-table td strong {
    color: var(--accent-orange);
}

/* --- Pricing / Offers Section --- */
.offers-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-desc {
    color: var(--text-secondary);
    margin-top: 12px;
    font-size: 1.1rem;
}

/* Toggle Switcher */
.pricing-toggle-container {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 100px;
    border: 1px solid var(--border-color);
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.toggle-label.active {
    color: var(--text-primary);
}

.discount-badge {
    background-color: var(--accent-orange);
    color: #121212;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-toggle {
    width: 50px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    border: none;
    position: relative;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.pricing-toggle[aria-checked="true"] {
    background-color: var(--accent-orange);
}

.toggle-circle {
    display: block;
    width: 20px;
    height: 20px;
    background-color: var(--text-primary);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform var(--transition-fast);
}

.pricing-toggle[aria-checked="true"] .toggle-circle {
    transform: translateX(24px);
    background-color: #121212;
}

/* Pricing Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 56px;
    margin-bottom: 56px;
    align-items: stretch;
}

.offer-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all var(--transition-normal);
}

.offer-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
}

.offer-card.featured {
    border: 2px solid var(--accent-orange);
    box-shadow: 0 16px 40px rgba(251, 133, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-orange);
    color: #121212;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 100px;
}

.offer-header {
    margin-bottom: 24px;
}

.offer-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.offer-aim {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.4;
}

.offer-duration {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-orange);
    margin-bottom: 8px;
}

.offer-deliverables {
    display: flex;
    flex-direction: column;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.deliverable-highlight {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
}

.deliverable-channels {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Dynamic Savings Alert Box on Featured Card */
.savings-alert-box {
    background-color: rgba(251, 133, 0, 0.08);
    border: 1px dashed var(--accent-orange);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    margin-bottom: 24px;
    display: none; /* Shown dynamically by JS in semestriel mode */
    text-align: center;
}

.savings-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-orange);
}

/* Guarantee Badge on Reference */
.guarantee-badge-card {
    background: linear-gradient(135deg, rgba(24, 89, 106, 0.15) 0%, rgba(90, 0, 250, 0.15) 100%);
    border: 1px solid var(--accent-teal);
    color: var(--text-primary);
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
}

.offer-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.offer-features li {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
}

.offer-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: 700;
}

.offer-footer {
    margin-top: auto;
}

/* Custom Offer Box */
.custom-offer-box {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.custom-offer-content {
    max-width: 600px;
}

.custom-offer-content h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.custom-offer-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* --- Comparison Table Section --- */
.comparison-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 22px 28px;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.comparison-table td {
    color: var(--text-secondary);
}

.comparison-table .highlight-col {
    background-color: rgba(251, 133, 0, 0.03);
    border-left: 1px solid rgba(251, 133, 0, 0.1);
    border-right: 1px solid rgba(251, 133, 0, 0.1);
    color: var(--text-primary);
}

.comparison-table th.highlight-col {
    background-color: rgba(251, 133, 0, 0.05);
    color: var(--accent-orange);
}

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

/* --- Testimonials Section --- */
.testimonials-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.video-testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.video-testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    width: 320px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color var(--transition-fast), transform var(--transition-normal);
}

.video-testimonial-card:hover {
    border-color: rgba(251, 133, 0, 0.3);
    transform: translateY(-4px);
}

.video-container {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background-color: #000;
}

.video-testimonial-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

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

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

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 28px;
    position: relative;
}

.testimonial-text::before {
    content: "“";
    font-family: var(--font-heading);
    font-size: 4rem;
    color: rgba(251, 133, 0, 0.1);
    position: absolute;
    top: -28px;
    left: -12px;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- FAQ Section --- */
.faq-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.faq-accordion {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(251, 133, 0, 0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-chevron {
    color: var(--text-muted);
    transition: transform var(--transition-normal), color var(--transition-fast);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-orange);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out;
}

.faq-answer p {
    padding: 0 32px 28px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Final CTA Section --- */
.final-cta-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 36px;
}

/* --- Footer --- */
footer {
    background-color: #0c0c0c;
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand {
    max-width: 400px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-orange);
}

/* --- Responsive CSS Rules --- */
@media (max-width: 1024px) {
    .nav-links {
        display: none; /* Hide standard menu, menu-toggle will show */
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .solution-wrapper {
        flex-direction: column;
        gap: 48px;
    }
    
    .solution-image {
        order: 2;
        width: 100%;
    }
    
    .solution-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .navbar-wrapper {
        top: 16px;
    }
    
    .navbar {
        height: 56px;
        padding: 0 20px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-emblem-container {
        width: 34px;
        height: 34px;
    }
    .brand-logo {
        width: 100%;
        height: auto;
        transform: scale(1.65);
        transform-origin: top center;
    }
    
    .hero-section {
        padding-top: calc(var(--navbar-height) + 60px);
        padding-bottom: 60px;
    }
    
    .hero-reassurance {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .aeo-block {
        padding: 16px 20px;
    }
    
    .logos-grid {
        gap: 28px;
    }
    
    .logos-section {
        padding: 28px 0;
    }
    
    .telegram-box {
        padding: 32px;
    }
    
    .telegram-box-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .custom-offer-box {
        padding: 24px;
        text-align: center;
        justify-content: center;
    }
    
    .custom-offer-box .btn {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .navbar {
        border-radius: 20px;
    }
    
    h1 {
        margin-bottom: 16px;
    }
    
    .btn {
        width: 100%;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .offer-card {
        padding: 32px 24px;
    }
}

/* Mobile responsive fixes down to 375px */
@media (max-width: 375px) {
    html {
        font-size: 15px; /* Slightly scale typography down for tiny devices */
    }
    
    .logos-grid {
        gap: 20px;
    }
    
    .logo-item {
        height: 38px;
    }
}

/* --- Scroll Animations & Fade Effects --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay effects for sequential items */
.fade-in:nth-child(1) { transition-delay: 0.1s; }
.fade-in:nth-child(2) { transition-delay: 0.2s; }
.fade-in:nth-child(3) { transition-delay: 0.3s; }
.fade-in:nth-child(4) { transition-delay: 0.4s; }

.fade-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Brand Logo --- */
.logo-emblem-container {
    width: 42px;
    height: 42px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* --- Non-breaking Space Helper --- */
.nobr {
    white-space: nowrap;
}

/* --- Brand Text Gradient (Orange to Mauve) --- */
.text-gradient-brand {
    background: linear-gradient(135deg, #fb8500 0%, #7000ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* --- Final CTA Section Layout with Profile Picture --- */
.final-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.final-cta-avatar-container {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-orange);
    box-shadow: 0 8px 32px rgba(251, 133, 0, 0.25);
}

.final-cta-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.final-cta-content {
    flex-grow: 1;
}

.final-cta-content h3 {
    margin-bottom: 12px;
}

.final-cta-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 24px;
}

/* Responsive adjustments for Final CTA */
@media (max-width: 768px) {
    .final-cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    .final-cta-buttons {
        justify-content: center;
    }
}

/* --- Interactive Telegram Mockup --- */
.mockup-tabs-header {
    display: flex;
    background-color: #151515;
    border-bottom: 1px solid var(--border-color);
}

.mockup-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 14px 8px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    text-align: center;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.mockup-tab-btn:hover {
    color: var(--text-primary);
}

.mockup-tab-btn.active {
    color: var(--accent-orange);
    border-bottom-color: var(--accent-orange);
    background-color: rgba(255, 255, 255, 0.02);
}

.mockup-tab-content {
    display: none;
    animation: fadeInTab 0.3s ease-out forwards;
}

.mockup-tab-content.active {
    display: block;
}

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

/* Telegram Custom Elements */
.mt-12 {
    margin-top: 12px;
}

.chat-inline-actions {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    margin-bottom: 12px;
    max-width: 85%;
}

.chat-inline-btn {
    flex: 1;
    padding: 10px;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background-color var(--transition-fast);
}

.chat-inline-btn.approve {
    background-color: rgba(251, 133, 0, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(251, 133, 0, 0.3);
}

.chat-inline-btn.approve:hover {
    background-color: rgba(251, 133, 0, 0.25);
}

.chat-inline-btn.reject {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.chat-inline-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chat-progress-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    background-color: #2b3b4b;
    border: 1px solid #3c4c5c;
    color: #e2eafc;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.chat-progress-btn:hover {
    background-color: #35475a;
}

/* Waveform Audio Bubble */
.client .audio-bubble {
    background-color: #1877f2; /* Telegram blue bubble */
    border: none;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    width: 220px;
}

.audio-play-btn {
    background-color: #ffffff;
    color: #1877f2;
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-grow: 1;
}

.audio-waveform span {
    display: block;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 1px;
}

/* Custom waveform heights */
.audio-waveform span:nth-child(1) { height: 6px; }
.audio-waveform span:nth-child(2) { height: 12px; }
.audio-waveform span:nth-child(3) { height: 18px; }
.audio-waveform span:nth-child(4) { height: 10px; }
.audio-waveform span:nth-child(5) { height: 14px; }
.audio-waveform span:nth-child(6) { height: 22px; }
.audio-waveform span:nth-child(7) { height: 8px; }
.audio-waveform span:nth-child(8) { height: 16px; }
.audio-waveform span:nth-child(9) { height: 12px; }
.audio-waveform span:nth-child(10) { height: 6px; }

.audio-duration {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    flex-shrink: 0;
}

/* Video Preview Card */
.video-preview-card {
    margin-top: 10px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1b263b 0%, #0d1b2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.video-preview-play {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--accent-orange);
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 4px 15px rgba(251, 133, 0, 0.4);
    transition: transform var(--transition-fast);
}

.video-preview-card:hover .video-preview-play {
    transform: scale(1.1);
}

.video-preview-card span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* --- Omnichannel Content Flow Pipeline --- */
.omnichannel-pipeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 56px auto 40px;
    width: 100%;
    max-width: 720px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pipeline-flow {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 240px;
}

/* Nodes Base Styling */
.pipeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.75);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 12px;
    border-radius: 16px;
    z-index: 10;
    transition: transform var(--transition-normal), border-color var(--transition-fast), box-shadow var(--transition-normal);
    text-align: center;
}

.node-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 8px;
    transition: transform var(--transition-normal);
}

.node-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.node-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.node-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    white-space: nowrap;
    margin-top: 2px;
}

/* Left Node: Input (EmoCapture) */
.node-input {
    width: 120px;
    border-color: rgba(251, 133, 0, 0.25);
    box-shadow: 0 0 25px rgba(251, 133, 0, 0.15);
    animation: floatInput 5s ease-in-out infinite alternate;
}
.node-input .logo-emblem-container {
    width: 48px;
    height: 48px;
    background: rgba(251, 133, 0, 0.1);
    border: 1px solid rgba(251, 133, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pipeline-brand-logo {
    width: 100%;
    height: auto;
    transform: translate(-2%, 13.5%) scale(2);
    display: block;
}

/* Center Node: Core (Instagram) */
.node-core {
    width: 130px;
    border-color: rgba(225, 48, 108, 0.35);
    box-shadow: 0 0 35px rgba(225, 48, 108, 0.25), inset 0 0 15px rgba(225, 48, 108, 0.15);
    animation: pulseCore 3s ease-in-out infinite alternate;
    z-index: 12;
}
.node-core .node-icon-wrapper {
    width: 52px;
    height: 52px;
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.15), rgba(204, 35, 102, 0.15));
    border: 1.5px solid rgba(225, 48, 108, 0.4);
    color: #ffffff;
    filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.6));
}

/* Right Section: Satellites Container */
.pipeline-satellites {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 130px;
    z-index: 10;
}

.pipeline-satellites .pipeline-node {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 12px;
    width: 100%;
}

.pipeline-satellites .node-icon-wrapper {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
    border-radius: 8px;
    flex-shrink: 0;
}

.satellite-label {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Satellite specific styles */
.node-facebook {
    background: rgba(24, 119, 242, 0.05);
    border-color: rgba(24, 119, 242, 0.2);
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.1);
    animation: floatSat4 6.5s ease-in-out infinite alternate;
}
.node-facebook svg { color: #1877f2; }

.node-youtube {
    background: rgba(255, 0, 0, 0.05);
    border-color: rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.1);
    animation: floatSat2 5.5s ease-in-out infinite alternate;
}
.node-youtube svg { color: #ff0000; }

.node-linkedin {
    background: rgba(0, 119, 181, 0.05);
    border-color: rgba(0, 119, 181, 0.2);
    box-shadow: 0 0 15px rgba(0, 119, 181, 0.1);
    animation: floatSat3 6s ease-in-out infinite alternate;
}
.node-linkedin svg { color: #0077b5; }

/* Authentic TikTok Logo with Chromatic Aberration */
.node-tiktok {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
    animation: floatSat1 5s ease-in-out infinite alternate;
}
.node-tiktok .node-icon-wrapper {
    background: transparent;
    border: none;
}

/* Connection Lines Styling */
.pipeline-connections {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.pipeline-line {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    opacity: 0.35;
    transition: opacity var(--transition-normal);
    filter: drop-shadow(0 0 4px var(--line-glow-color, rgba(255,255,255,0.2)));
}

.line-main {
    animation: dashMain 12s linear infinite;
    opacity: 0.45;
    --line-glow-color: rgba(251, 133, 0, 0.4);
}

.line-to-satellite {
    stroke-dasharray: 5 5;
}

.line-to-tt { animation: dash 15s linear infinite; opacity: 0.45; --line-glow-color: rgba(0, 242, 234, 0.4); }
.line-to-yt { animation: dash 18s linear infinite; --line-glow-color: rgba(255, 0, 0, 0.4); }
.line-to-li { animation: dash 16s linear infinite; --line-glow-color: rgba(0, 119, 181, 0.4); }
.line-to-fb { animation: dash 20s linear infinite; --line-glow-color: rgba(24, 119, 242, 0.4); }

/* Node Hover Actions */
.pipeline-node:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.node-core:hover {
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow: 0 0 45px rgba(225, 48, 108, 0.4), inset 0 0 20px rgba(225, 48, 108, 0.25);
}
.node-tiktok:hover {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: -3px -3px 12px rgba(0, 242, 234, 0.5), 3px 3px 12px rgba(255, 0, 80, 0.5);
}

/* Animations */
@keyframes floatInput {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}
@keyframes pulseCore {
    0% {
        transform: scale(1);
        box-shadow: 0 0 25px rgba(225, 48, 108, 0.2), inset 0 0 10px rgba(225, 48, 108, 0.1);
    }
    100% {
        transform: scale(1.04);
        box-shadow: 0 0 40px rgba(225, 48, 108, 0.4), inset 0 0 15px rgba(225, 48, 108, 0.2);
    }
}
@keyframes floatSat1 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(3px, -5px); }
}
@keyframes floatSat2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-3px, -4px); }
}
@keyframes floatSat3 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(4px, 3px); }
}
@keyframes floatSat4 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-4px, 5px); }
}

@keyframes dashMain {
    to { stroke-dashoffset: -120; }
}
@keyframes dash {
    to { stroke-dashoffset: -100; }
}
@keyframes dashReverse {
    to { stroke-dashoffset: 100; }
}

/* Responsive Layout for Pipeline */
@media (max-width: 768px) {
    .omnichannel-pipeline-container {
        margin: 32px auto 24px;
        max-width: 100%;
    }
    .pipeline-flow {
        flex-direction: column;
        gap: 40px;
        min-height: auto;
        align-items: center;
    }
    .pipeline-connections {
        display: none; /* Hide background connections on mobile */
    }
    .node-input, .node-core, .pipeline-satellites {
        width: 100%;
        max-width: 280px;
    }
    .pipeline-satellites {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .pipeline-satellites .pipeline-node {
        justify-content: center;
        flex-direction: column;
        padding: 12px;
        text-align: center;
    }
    .pipeline-satellites .node-icon-wrapper {
        margin-bottom: 6px;
    }
    
    /* Add visual CSS arrows on mobile to represent the flow */
    .node-input::after, .node-core::after {
        content: '↓';
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--accent-orange);
        font-size: 1.5rem;
        font-weight: 700;
        animation: arrowBounce 1.5s infinite alternate;
        z-index: 5;
    }
    .node-core::after {
        color: #e1306c;
    }
}

@keyframes arrowBounce {
    0% { transform: translate(-50%, 0); }
    100% { transform: translate(-50%, 6px); }
}


