/* ==========================================================================
   THECOIN.SERVICES — PREMIUM CYBERPUNK WEB3 MARKETING AGENCY DESIGN SYSTEM
   ========================================================================== */

/* 1. TYPOGRAPHY & COLOR TOKENS */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700&family=Orbitron:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
    /* Cyberpunk Deep Midnight & Neon Palette */
    --bg-galaxy: #060415;         /* Immersive Space Midnight Void */
    --bg-card-glass: rgba(13, 11, 35, 0.45); /* Glossy Space Panel */
    --bg-card-hover: rgba(22, 18, 55, 0.65); /* Hover Panel Color */
    
    /* Neon Highlight Accents */
    --neon-pink: #FF006E;         /* Hot Pink/Magenta (Alerts, Active) */
    --neon-cyan: #00FFFF;         /* Electric Cyan (Spotlights, Primary Action) */
    --neon-gold: #F59E0B;         /* Amber Gold (Verifications, Trust badges) */
    --neon-purple: #5D34D0;       /* Royal Indigo (Deep structural gradients) */
    
    /* Border & Divider Tokens */
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(0, 255, 255, 0.25);
    --border-active: rgba(255, 0, 110, 0.35);
    
    /* High-Fidelity Text Colors */
    --text-white: #F8FAFC;        /* Crystal Ice White */
    --text-soft: #94A3B8;         /* Cool Slate Grey */
    --text-dim: #4B5563;          /* Muted Space Dust */

    /* Typography Families */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Global Transitions & Easings */
    --transition-fast: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 2. BASE STYLING RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
    background-color: var(--bg-galaxy);
    color: var(--text-white);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

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

/* 3. IMMERSIVE AMBIENT HUD LAYERS */
.matrix-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* High-Contrast Neon Space Glows */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -2;
    filter: blur(150px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.glow-indigo {
    width: 700px;
    height: 700px;
    top: -200px;
    left: 10%;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
}

.glow-pink {
    width: 600px;
    height: 600px;
    bottom: 20%;
    right: -100px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
}

.glow-cyan {
    width: 500px;
    height: 500px;
    top: 40%;
    left: -100px;
    background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
}

/* scanline scan grid overlay */
.scanlines-hud {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.15;
}

/* 4. TYPOGRAPHY UTILITIES */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 700;
}

p {
    color: var(--text-soft);
    line-height: 1.65;
}

.gradient-text-pink {
    background: linear-gradient(135deg, #FFFFFF 20%, var(--neon-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #FFFFFF 20%, var(--neon-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-cyan { color: var(--neon-cyan) !important; }
.text-pink { color: var(--neon-pink) !important; }
.text-gold { color: var(--neon-gold) !important; }
.text-center { text-align: center !important; }
.font-mono { font-family: var(--font-mono); }

/* 5. ELITE BUTTONS */
.btn-cyan-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--neon-cyan);
    color: var(--bg-galaxy);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--neon-cyan);
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.25);
}

.btn-cyan-glow:hover {
    background: transparent;
    color: var(--neon-cyan);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.45);
    transform: translateY(-1.5px);
}

.btn-pink-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 110, 0.05);
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid var(--neon-pink);
    cursor: pointer;
    transition: var(--transition-fast);
    backdrop-filter: blur(8px);
}

.btn-pink-outline:hover {
    background: var(--neon-pink);
    color: var(--text-white);
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.4);
    transform: translateY(-1.5px);
}

.btn-sm { padding: 10px 20px; }
.btn-lg { padding: 14px 28px; }
.btn-full { width: 100%; }

/* 6. FLOATING GLASS HEADER */
.floating-header {
    position: fixed;
    top: 16px;
    left: 16px;
    right: 16px;
    height: 64px;
    z-index: 100;
    background: rgba(6, 4, 21, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.floating-header.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    border-top: none;
    border-left: none;
    border-right: none;
    background: rgba(6, 4, 21, 0.9);
}

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

.brand-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo-accent-pink { color: var(--neon-pink); }
.logo-accent-cyan { color: var(--neon-cyan); }

.main-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0 40px;
    min-width: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-soft);
    text-decoration: none;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.nav-link-item:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

.header-actions {
    flex-shrink: 0;
}

/* 7. HERO SECTION */
#hero {
    padding-top: 160px;
    padding-bottom: 90px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.agency-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.15);
    color: var(--neon-cyan);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 24px;
}

.tag-status-ping {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--neon-cyan);
    box-shadow: 0 0 8px var(--neon-cyan);
    animation: status-ping 1.8s infinite ease-in-out;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* HERO INTERACTIVE 3D COIN HUB */
.hero-interactive-hub {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.interactive-coin-card {
    position: relative;
    width: 360px;
    height: 380px;
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    transform-style: preserve-3d;
    transition: var(--transition-fast);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}

.interactive-coin-card:hover {
    border-color: rgba(255, 0, 110, 0.3);
}

.coin-glow-shadow {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    top: 30%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.25) 0%, transparent 70%);
    filter: blur(20px);
    pointer-events: none;
    transform: translateZ(20px);
}

.floating-3d-coin {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateZ(50px);
    animation: hover-levitate 4s ease-in-out infinite;
    pointer-events: none;
}

/* Hero SVG growth chart */
.hero-chart-svg {
    width: 100%;
    height: auto;
    transform: translateZ(40px);
    pointer-events: none;
    overflow: visible;
}

.hero-chart-svg .trend-line-anim {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: draw-line 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-chart-svg .arrow-anim {
    opacity: 0;
    transform: translateY(8px);
    animation: arrow-pop 0.5s ease-out 2.2s forwards;
}

@keyframes draw-line {
    to { stroke-dashoffset: 0; }
}

@keyframes arrow-pop {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.coin-overlay-stats {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateZ(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.coin-stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
}

.coin-stat-row .stat-lbl {
    color: var(--text-soft);
}

.coin-stat-row .stat-val {
    font-family: var(--font-mono);
    font-weight: 700;
}

/* 8. SCROLLING EXCHANGES & MEDIA PARTNERS TRUST MARQUEE */
.scrolling-trust-bar {
    background: rgba(6, 4, 21, 0.9);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    animation: marquee-scroll 32s linear infinite;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    padding: 0 45px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-soft);
    letter-spacing: 0.06em;
    opacity: 0.45;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 9. SERVICES MATRIX SECTION */
.cyber-section {
    padding: 80px 0;
}

.section-title-block {
    margin-bottom: 50px;
}

.section-main-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-soft);
}

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

.service-panel-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

/* Glowing card outline effects */
.card-glass-glow:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 255, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.service-panel-card:hover::before {
    transform: translateX(100%);
}

.service-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.service-panel-card:hover .service-icon-box {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.service-svg-icon {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.55;
    flex: 1;
}

.service-bullet-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 14px;
}

.service-bullet-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-family: var(--font-mono);
}

.bullet-gold, .bullet-pink, .bullet-cyan {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
}

.bullet-gold { background-color: var(--neon-gold); }
.bullet-pink { background-color: var(--neon-pink); }
.bullet-cyan { background-color: var(--neon-cyan); }

/* Spanning service card logic */
#service-cex { grid-column: span 1; }
#service-trending { grid-column: span 1; }
#service-guerilla { grid-column: span 1; }
#service-pr { grid-column: span 2; }
#service-kols { grid-column: span 1; }

/* 10. INTERACTIVE CAMPAIGN & ROI CALCULATOR */
.calculator-panel-layout {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}

.calculator-panel-layout:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
}

.calc-sub-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.toggle-options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

/* Custom interactive checkbox styling */
.calc-checkbox-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 14px 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.calc-checkbox-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: var(--neon-cyan);
}

.calc-hidden-checkbox {
    display: none;
}

.custom-chk-ui {
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-soft);
    border-radius: 4px;
    position: relative;
    transition: var(--transition-fast);
}

.calc-hidden-checkbox:checked + .custom-chk-ui {
    background-color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.35);
}

.calc-hidden-checkbox:checked + .custom-chk-ui::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid var(--bg-galaxy);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    top: 1px;
    left: 5px;
}

.chk-text-row {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chk-title {
    font-size: 0.85rem;
    font-weight: 600;
}

.chk-badge {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Premium Range Slider styling */
.budget-slider-block {
    display: flex;
    flex-direction: column;
}

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

.slider-val-readout {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-cyan);
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.35);
}

.premium-range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    margin: 16px 0 8px 0;
    cursor: pointer;
}

.premium-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--neon-pink);
    border: 3px solid var(--text-white);
    box-shadow: 0 0 10px rgba(255, 0, 110, 0.6);
    transition: var(--transition-fast);
}

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

.slider-labels-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    font-family: var(--font-mono);
    color: var(--text-soft);
}

/* Calculator Outputs Side */
.calc-outputs-block {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roi-scorecard-main {
    text-align: center;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 30px 10px;
    margin-bottom: 24px;
}

.roi-gradient-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
    margin-bottom: 8px;
}

.roi-label-soft {
    font-size: 0.8rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.roi-secondary-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 30px;
}

.calc-stat-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}

.calc-stat-item .stat-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 4px;
}

.calc-stat-item .stat-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

/* 11. CYBER TERMINAL CONSOLE WIDGET */
.hud-terminal-console {
    background: #020108;
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.hud-terminal-console:hover {
    border-color: rgba(0, 255, 255, 0.15);
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #070613;
    border-bottom: 1px solid var(--border-glass);
    padding: 10px 18px;
}

.window-buttons {
    display: flex;
    gap: 6px;
}

.win-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.win-btn.red { background-color: #EF4444; }
.win-btn.yellow { background-color: #F59E0B; }
.win-btn.green { background-color: #10B981; }

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    color: var(--text-soft);
}

.terminal-status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.6rem;
    color: var(--neon-cyan);
}

.status-ping-cyan {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--neon-cyan);
    box-shadow: 0 0 6px var(--neon-cyan);
    animation: status-ping 1.5s infinite ease-in-out;
}

.terminal-body {
    padding: 18px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    line-height: 1.55;
    height: 220px;
    overflow-y: auto;
    scrollbar-width: none;
}

.terminal-body::-webkit-scrollbar { display: none; }

.terminal-log-row {
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
}

.terminal-log-row .log-badge {
    padding: 1px 5px;
    border-radius: 3px;
    font-size: 0.58rem;
    font-weight: 700;
}

.terminal-log-row .log-badge.shill { background: rgba(0, 255, 255, 0.08); color: var(--neon-cyan); }
.terminal-log-row .log-badge.pr { background: rgba(255, 0, 110, 0.08); color: var(--neon-pink); }
.terminal-log-row .log-badge.listing { background: rgba(245, 158, 11, 0.08); color: var(--neon-gold); }

.terminal-log-row .log-time {
    color: var(--text-dim);
}

/* 12. PITCH BLACK PREMIUM FOOTER */
.main-footer {
    background: #020108;
    border-top: 1px solid var(--border-glass);
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.footer-subtext {
    font-size: 0.8rem;
    margin-top: 12px;
    margin-bottom: 24px;
    max-width: 440px;
}

.footer-copyright {
    font-size: 0.72rem;
    color: var(--text-dim);
    font-family: var(--font-mono);
}

.footer-right-col {
    display: flex;
    justify-content: flex-end;
}

.footer-social-links {
    list-style: none;
    display: flex;
    gap: 24px;
}

.social-link-item {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-soft);
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link-item:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 6px rgba(255,0,110,0.3);
}

/* 13. PERSISTENT FLOATING TELEGRAM CAPSULE WIDGET */
.floating-telegram-capsule {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(13, 11, 35, 0.75);
    border: 1px solid rgba(0, 255, 255, 0.15);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    padding: 10px 18px;
    border-radius: 99px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.6), 0 0 15px rgba(0, 255, 255, 0.08);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.floating-telegram-capsule:hover {
    transform: translateY(-3px);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 40px rgba(0, 255, 255, 0.25), 0 0 25px rgba(0, 255, 255, 0.12);
}

.floating-telegram-capsule:active {
    transform: scale(0.97);
}

.capsule-status-dot {
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--neon-cyan);
}

.capsule-status-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--neon-cyan);
    animation: status-ping 1.8s infinite ease-in-out;
}

.capsule-text {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.03em;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.capsule-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.capsule-icon svg {
    width: 100%;
    height: 100%;
    fill: #FFFFFF;
}

/* 14. ANIMATIONS & RESPONSIVE ENGINE */
@keyframes hover-levitate {
    0% { transform: translateZ(50px) translateY(0); }
    50% { transform: translateZ(50px) translateY(-10px); }
    100% { transform: translateZ(50px) translateY(0); }
}

@keyframes status-ping {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.85; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* Service card links */
.service-card-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}
.service-card-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.3);
}

/* ==========================================================================
   15. TELEGRAM OPERATIONS DESK (B2B CRO HUB)
   ========================================================================== */
.cro-desk-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 40px;
}

.cro-process-card, .cro-cta-card {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(25px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    position: relative;
    transition: var(--transition-smooth);
}

.cro-process-card:hover, .cro-cta-card:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.cro-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    margin-bottom: 30px;
    border-left: 3px solid var(--neon-pink);
    padding-left: 12px;
}

.cro-steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cro-step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 8px 12px;
    min-width: 52px;
    text-align: center;
}

.step-body {
    flex: 1;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.8rem;
    color: var(--text-soft);
    line-height: 1.5;
}

.pulse-glow-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.05);
    animation: cro-glow-pulse 2.5s infinite ease-in-out;
}

@keyframes cro-glow-pulse {
    0% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.05); border-color: rgba(0, 255, 255, 0.15); }
    50% { box-shadow: 0 0 35px rgba(0, 255, 255, 0.25); border-color: rgba(0, 255, 255, 0.4); }
    100% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.05); border-color: rgba(0, 255, 255, 0.15); }
}

.cro-telegram-svg {
    width: 40px;
    height: 40px;
    fill: var(--neon-cyan);
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.35));
}

.cro-status-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.1);
    border-radius: 99px;
    padding: 6px 14px;
    margin-bottom: 20px;
}

.cro-status-txt {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--neon-cyan);
}

.cro-cta-main-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 12px;
}

.cro-cta-desc {
    font-size: 0.85rem;
    color: var(--text-soft);
    line-height: 1.5;
    margin-bottom: 24px;
}

.cro-security-lbl {
    display: block;
    margin-top: 16px;
    font-family: var(--font-mono);
    font-size: 0.62rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

/* ==========================================================================
   16. DYNAMIC FAQ ACCORDION
   ========================================================================== */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin: 40px auto 0 auto;
}

.faq-item {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(25px);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.08);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: inherit;
    outline: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.02em;
    transition: var(--transition-fast);
}

.faq-trigger:hover .faq-question {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.25);
}

.faq-icon-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    transition: var(--transition-fast);
}

.faq-chevron {
    width: 16px;
    height: 16px;
    color: var(--text-soft);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.faq-answer {
    padding: 0 30px 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 20px;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-soft);
}

.faq-answer a {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-answer a:hover {
    color: var(--neon-pink);
    text-decoration: underline;
}

/* Active FAQ states */
.faq-item.faq-active {
    border-color: rgba(0, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 255, 255, 0.03);
}

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

.faq-item.faq-active .faq-icon-holder {
    background: rgba(0, 255, 255, 0.05);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
}

.faq-item.faq-active .faq-content {
    opacity: 1;
}

/* MEDIA QUERIES (RESPONSIVENESS) */
@media (max-width: 1024px) {
    html { font-size: 14px; }
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .hero-content-block {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #service-pr { grid-column: span 1; }
    .calculator-grid, .cro-desk-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .calc-outputs-block {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .floating-header {
        top: 0;
        left: 0;
        right: 0;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
    }
    .main-navigation {
        display: none;
    }
    #hero {
        padding-top: 120px;
    }
    .hero-title {
        font-size: 2.8rem;
    }
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    #service-cex, #service-trending, #service-guerilla, #service-pr, #service-kols {
        grid-column: span 1;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-right-col {
        justify-content: center;
    }
    .floating-telegram-capsule {
        bottom: 16px;
        right: 16px;
        left: 16px;
        justify-content: center;
        border-radius: 8px;
    }
}

/* Mobile hardening layer: keeps long cyber labels, cards, CTAs and widgets inside narrow screens. */
@media (max-width: 768px) {
    html { font-size: 13.5px; }
    body { width: 100%; }

    .container { padding: 0 16px; }

    .ambient-glow {
        filter: blur(95px);
        opacity: 0.08;
    }

    .glow-indigo,
    .glow-pink,
    .glow-cyan {
        width: 320px;
        height: 320px;
    }

    .floating-header {
        height: auto;
        min-height: 64px;
    }

    .header-container {
        min-height: 64px;
        padding: 10px 16px;
        gap: 12px;
        overflow: hidden;
    }

    .brand-logo {
        min-width: 0;
        font-size: clamp(0.95rem, 4.5vw, 1.15rem);
        overflow-wrap: anywhere;
    }

    .header-actions {
        display: flex;
        justify-content: flex-end;
        min-width: max-content;
    }

    .header-actions .btn-sm {
        padding: 9px 12px;
        font-size: 0.68rem;
        letter-spacing: 0.02em;
        white-space: nowrap;
    }

    .cyber-section { padding: 56px 0; }

    #hero {
        padding-top: 108px;
        padding-bottom: 54px;
    }

    .hero-grid { gap: 28px; }

    .agency-tag-pill,
    .hero-badge,
    .cro-status-row {
        max-width: 100%;
        align-items: flex-start;
        flex-wrap: wrap;
        white-space: normal;
        text-align: left;
        line-height: 1.35;
        overflow: hidden;
        overflow-wrap: anywhere;
    }

    .hero-title {
        font-size: clamp(2.05rem, 10.5vw, 2.8rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .hero-description,
    .section-subtitle,
    .service-hero-desc {
        font-size: 0.98rem;
        max-width: 100%;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn-lg,
    .pricing-cta-row .btn-full,
    #desk-primary-cta {
        width: 100%;
    }

    .btn-lg {
        min-height: 48px;
        padding: 13px 16px;
        font-size: 0.78rem;
        letter-spacing: 0.035em;
        text-align: center;
    }

    .hero-interactive-hub { width: 100%; }

    .interactive-coin-card {
        width: min(100%, 328px);
        height: auto;
        min-height: 330px;
        padding: 22px 18px;
        transform-style: flat;
    }

    .hero-chart-svg { max-height: 210px; }

    .coin-overlay-stats {
        gap: 8px;
        padding-top: 16px;
    }

    .coin-stat-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        text-align: left;
    }

    .section-title-block { margin-bottom: 34px; }

    .section-main-title,
    .service-hero-title,
    .content-section h2 {
        font-size: clamp(1.55rem, 8vw, 2rem);
        line-height: 1.15;
        overflow-wrap: anywhere;
    }

    .services-cards-grid { gap: 16px; }

    .service-panel-card,
    .calculator-panel-layout,
    .cro-process-card,
    .cro-cta-card,
    .faq-item,
    .related-card,
    .bot-card {
        padding: 22px 18px;
    }

    .service-title,
    .service-card-link,
    .bot-card-title,
    .related-card-title,
    .faq-question {
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .service-bullet-points li,
    .feature-list li {
        align-items: flex-start;
        line-height: 1.45;
    }

    .calculator-panel-layout { border-radius: 12px; }

    .calculator-grid,
    .cro-desk-layout {
        gap: 22px;
    }

    .calc-checkbox-card {
        gap: 12px;
        padding: 13px 14px;
        align-items: flex-start;
    }

    .custom-chk-ui {
        flex: 0 0 18px;
        margin-top: 2px;
    }

    .chk-text-row,
    .slider-header-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        min-width: 0;
    }

    .chk-title,
    .chk-badge,
    .slider-val-readout,
    .stat-value,
    .roi-gradient-number {
        overflow-wrap: anywhere;
    }

    .slider-val-readout { font-size: 1.15rem; }

    .slider-labels-row {
        gap: 8px;
        font-size: 0.64rem;
        line-height: 1.25;
    }

    .slider-labels-row span {
        flex: 1;
        text-align: center;
    }

    .roi-gradient-number {
        font-size: clamp(2rem, 10vw, 3rem);
        line-height: 1.08;
    }

    .roi-secondary-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .terminal-header {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px 12px;
        padding: 12px 14px;
    }

    .terminal-title {
        order: 3;
        width: 100%;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .terminal-body {
        height: 260px;
        padding: 14px;
        font-size: 0.68rem;
    }

    .terminal-log-row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 4px 8px;
        align-items: start;
    }

    .terminal-log-row .log-txt {
        grid-column: 1 / -1;
        overflow-wrap: anywhere;
    }

    .cro-step-item,
    .process-step {
        gap: 14px;
    }

    .step-num {
        min-width: 44px;
        font-size: 1.25rem;
        padding: 8px 10px;
    }

    .faq-trigger {
        padding: 18px;
        align-items: flex-start;
        gap: 14px;
    }

    .faq-icon-holder { flex: 0 0 32px; }

    .faq-answer { padding: 16px 18px 20px 18px; }

    .service-page-hero { padding: 116px 0 56px; }

    .breadcrumb {
        flex-wrap: wrap;
        line-height: 1.5;
    }

    .bot-cards-grid,
    .related-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .tech-stack { gap: 8px; }

    .tech-tag {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .footer-grid { gap: 24px; }

    .footer-left-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 20px;
    }

    .main-footer { padding: 44px 0 78px; }

    .floating-telegram-capsule { padding: 11px 14px; }

    .capsule-text {
        font-size: 0.72rem;
        overflow-wrap: anywhere;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .container { padding: 0 14px; }

    .header-container { padding: 9px 12px; }

    .brand-logo {
        font-size: clamp(0.8rem, 4.2vw, 0.95rem);
        flex: 1 1 auto;
    }

    .header-actions {
        flex: 0 1 auto;
        min-width: 0;
    }

    .header-actions .btn-sm {
        max-width: 112px;
        padding: 8px 8px;
        font-size: 0.58rem;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero-title {
        font-size: clamp(1.85rem, 11vw, 2.35rem);
    }

    .section-main-title,
    .service-hero-title,
    .content-section h2 {
        font-size: clamp(1.38rem, 8.5vw, 1.8rem);
    }

    .agency-tag-pill,
    .hero-badge,
    .section-top-tag {
        font-size: 0.62rem;
        letter-spacing: 0.05em;
    }

    .agency-tag-pill,
    .hero-badge {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .interactive-coin-card {
        width: 100%;
        min-height: 300px;
        padding: 18px 14px;
    }

    .service-panel-card,
    .calculator-panel-layout,
    .cro-process-card,
    .cro-cta-card,
    .faq-item,
    .related-card,
    .bot-card {
        padding: 20px 15px;
    }

    .cro-status-row { padding: 6px 10px; }

    .cro-status-txt,
    .cro-security-lbl {
        overflow-wrap: anywhere;
    }

    .floating-telegram-capsule {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 340px) {
    .header-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .header-actions,
    .header-actions .btn-sm {
        width: 100%;
    }

    #hero,
    .service-page-hero {
        padding-top: 132px;
    }

    .brand-logo { justify-content: center; }
}
