.linkedin-intro-section {
    padding: 150px 0;
    background-color: #0a0a0a; /* Carbon Black */
    overflow: hidden;
    position: relative;
}

.linkedin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* Text Styling */
.hero-main-title {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.glow-text {
    color: #fff;
    text-shadow: 0 0 15px rgba(160, 32, 240, 0.8), 0 0 30px rgba(160, 32, 240, 0.4);
}

.description {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: white;
    font-family: 'Space Mono', monospace;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-list i { color: var(--accent-purple); font-size: 1.2rem; }

/* --- Visual Orbit Container --- */
.visual-orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-frame-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 320px;
    z-index: 5;
    transform: rotate(-5deg); /* Professional tilt */
    transition: 0.5s;
}

.f-img {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border: 1px solid rgba(160, 32, 240, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.f-img img { width: 100%; border-radius: 10px; display: block; }

/* Orbiting Icons */
.orbit-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--accent-purple);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(160, 32, 240, 0.4);
    z-index: 10;
    animation: orbit 25s linear infinite;
}

.orbit-icon i { color: white; font-size: 1.4rem; margin-bottom: 4px; }
.orbit-icon span { font-size: 0.6rem; color: var(--accent-purple); font-family: 'Space Mono', monospace; font-weight: bold; }

@keyframes orbit {
    from { transform: rotate(0deg) translateX(220px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(220px) rotate(-360deg); }
}

.icon-1 { animation-delay: 0s; }
.icon-2 { animation-delay: -5s; }
.icon-3 { animation-delay: -10s; }
.icon-4 { animation-delay: -15s; }
.icon-5 { animation-delay: -20s; }

/* Hover Action */
.visual-orbit-container:hover .main-frame-grid {
    transform: rotate(0deg) scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .linkedin-grid { grid-template-columns: 1fr; text-align: center; }
    .feature-list { display: inline-block; text-align: left; }
    .visual-orbit-container { width: 350px; height: 350px; margin: 50px auto 0; }
    @keyframes orbit {
        from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
    }
}
.outreach-process-section {
    padding: 120px 0;
    background-color: #f8f9fa; /* Off-White */
    position: relative;
    overflow: hidden;
}

.title-dark {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: #111;
    margin-bottom: 20px;
}

.desc-dark {
    color: #555;
    font-family: 'Space Mono', monospace;
    max-width: 600px;
    margin: 0 auto 80px;
}

/* --- Horizontal Process Logic --- */
.process-horizontal-wrapper {
    position: relative;
    padding: 40px 0;
}

.process-line {
    position: absolute;
    top: 130px; /* Center of the icons */
    left: 5%;
    right: 5%;
    height: 2px;
    background: rgba(160, 32, 240, 0.2);
    z-index: 1;
}

/* The pulse animation on the line */
.process-line::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-purple);
    box-shadow: 0 0 10px var(--accent-purple);
    animation: lineGrow 4s infinite linear;
}

@keyframes lineGrow {
    0% { width: 0%; left: 0; }
    50% { width: 100%; left: 0; }
    100% { width: 0%; left: 100%; }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    background: white;
    padding: 40px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #eee;
    transition: 0.4s;
}

.process-step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(160, 32, 240, 0.1);
}

.step-number {
    font-family: 'Audiowide', cursive;
    color: rgba(160, 32, 240, 0.1);
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: var(--accent-purple);
    position: relative;
}

.process-step h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 15px;
}

.process-step p {
    font-family: 'Space Mono', monospace;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* --- Mobile Stack --- */
@media (max-width: 992px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .process-line { display: none; } /* Hide line on mobile to avoid mess */
}

@media (max-width: 600px) {
    .process-grid { grid-template-columns: 1fr; }
}
/* Transformation Visuals */
.linkedin-impact-section {
    padding: 120px 0;
    background: #050505; /* Deeper black for focus */
    color: white;
}

.impact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Transformation Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(160, 32, 240, 0.2);
    padding: 40px;
    border-radius: 30px;
    backdrop-filter: blur(15px);
}

.comparison-visual {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    align-items: center;
    text-align: center;
}

.comparison-visual-images {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.profile-frame {
    flex: 1;
    text-align: center;
}

.profile-frame .label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: #111;
}

.profile-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.5s;
}

/* Before State Styling */
.profile-frame.before img {
    filter: grayscale(100%);
    opacity: 0.5;
}

.overlay-grey {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

/* After State Styling */
.profile-frame.after .img-container {
    border: 1px solid var(--accent-purple);
    box-shadow: 0 0 25px rgba(160, 32, 240, 0.3);
}

.profile-frame.after .frame-corners span {
    position: absolute;
    width: 10px; height: 10px;
    border: 2px solid var(--accent-purple);
}
.frame-corners span:nth-child(1) { top: 5px; left: 5px; border-right: 0; border-bottom: 0; }
.frame-corners span:nth-child(2) { top: 5px; right: 5px; border-left: 0; border-bottom: 0; }
.frame-corners span:nth-child(3) { bottom: 5px; left: 5px; border-right: 0; border-top: 0; }
.frame-corners span:nth-child(4) { bottom: 5px; right: 5px; border-left: 0; border-top: 0; }

.transformation-arrow {
    color: var(--accent-purple);
    font-size: 1.5rem;
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(10px); opacity: 1; }
}

.profile-frame p {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    margin-top: 15px;
}

/* Mobile Tweak */
@media (max-width: 600px) {
    .comparison-visual-images { flex-direction: column; }
    .transformation-arrow { transform: rotate(90deg); margin: 10px 0; }
}
/* Stats Grid */
.stats-impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    background: rgba(255,255,255,0.02);
    padding: 30px;
    border-radius: 20px;
    border-bottom: 3px solid transparent;
    transition: 0.4s;
}

.stat-item:hover {
    background: rgba(160, 32, 240, 0.05);
    border-bottom: 3px solid var(--accent-purple);
    transform: translateY(-5px);
}

.stat-item i { color: var(--accent-purple); font-size: 1.5rem; margin-bottom: 15px; }

.stat-item h2 {
    display: inline-block;
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    margin: 0;
}

.stat-item .unit {
    font-family: 'Audiowide', cursive;
    color: var(--accent-purple);
    font-size: 1.5rem;
}

.stat-item p {
    font-family: 'Space Mono', monospace;
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-top: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .impact-wrapper { grid-template-columns: 1fr; }
    .stat-item h2 { font-size: 2.2rem; }
}

/* CTA - Section */
.linkedin-cta-section {
    padding: 100px 0 150px;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
}

.cta-terminal {
    background: #f1e5e5;
    border: 1px solid rgba(160, 32, 240, 0.3);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.terminal-header {
    background: rgba(86, 88, 88, 0.1);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(160, 32, 240, 0.2);
}

.terminal-header .dots {
    display: flex;
    gap: 8px;
}

.terminal-header .dots span {
    width: 10px; height: 10px; border-radius: 50%; background: rgba(243, 8, 8, 0.2);
}

.terminal-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-purple);
    letter-spacing: 2px;
}

.cta-content {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Live Status Pulse */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 167, 69, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.pulse {
    width: 8px; height: 8px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.status-text {
    color: #28a745;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: bold;
}

.cta-title {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: rgb(8, 8, 8);
    margin-bottom: 20px;
}

.cta-desc {
    font-family: 'Space Mono', monospace;
    color: #0f0f0f;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Calendly Button */
.calendly-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: black;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 1.1rem;
    transition: 0.4s;
    border: 2px solid white;
}

.calendly-btn:hover {
    background: transparent;
    color: rgb(17, 17, 17);
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.5);
    transform: translateY(-5px);
}

.btn-icon { margin-left: 15px; color: var(--accent-purple); }

.timezone-note {
    margin-top: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #555;
}

/* Decorative Background Glow */
.cta-glow-bg {
    position: absolute;
    bottom: -50%; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: var(--accent-purple);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-title { font-size: 2rem; }
    .cta-content { padding: 40px 20px; }
}