/* Image Protection Styles */
img {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

@media print {

    img,
    .hero-image,
    .gallery-section,
    .lightbox {
        display: none !important;
    }
}

/* Blur effect when window is not focused */
body.window-blurred img {
    filter: blur(10px);
    transition: filter 0.3s ease;
}

/* ================ BUTTONS (Included in css/common-css/common.css) ================ */

/* =========================================
   1. MAIN BANNER: ADVANCED HERO REDESIGN (Case Study Version)
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    background-color: var(--primary-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 0;
    isolation: isolate;
}

/* Background Image Handling */
.hero-bg-image {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    /* Dimmed for text readability */
    filter: blur(8px) brightness(0.7);
}

.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: -1;
}

/* --- Animated Background Elements (From Index) --- */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    /* Animation removed */
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: #00f2fe;
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 85%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.container-hero {
    max-width: 1750px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Content Styling --- */
.hero-content-left {
    position: relative;
    z-index: 5;
    max-width: 800px;
    /* Wider than index since no image on right */
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tag-line {
    width: 45px;
    height: 2px;
    background: var(--accent-color);
}

.tag-text {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 950;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: -3px;
    color: var(--text-primary);
    text-align: left;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.highlight-neon {
    color: var(--accent-color);
    text-shadow: 0 0 40px var(--accent-glow);
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin-bottom: 40px;
    line-height: 1.7;
    text-align: left;
}

/* --- Role/Meta Info Styling (Replacing Scroller) --- */
.hero-meta-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.meta-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: 15px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 1px;
}

.meta-value {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Buttons --- */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 0px;
    justify-content: flex-start;
}



/* Responsive adjustments for hero section */
@media (max-width: 1200px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-image {
        height: 550px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content,
    .hero-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-image {
        transform: none;
        height: 450px;
    }

    .hero-image:hover {
        transform: none;
    }

    .floating-ui-1 {
        top: -15px;
        right: -15px;
        width: 180px;
        height: 100px;
    }

    .floating-ui-2 {
        width: 140px;
        height: 140px;
        left: -20px;
    }

    .floating-ui-3 {
        width: 160px;
        height: 90px;
        right: 25%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-meta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .hero-image {
        height: 400px;
    }

    .floating-ui {
        display: none;
        /* Hide floating UI on mobile for better performance */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-image {
        height: 350px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero .btn-primary {
        width: 100%;
        text-align: center;
    }
}

/* Content Sections */
.section-content {
    max-width: 900px;
    margin: 0 auto;
}

.content-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
}

.content-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.bullet-list {
    list-style-type: none;
    margin-left: 1rem;
}

.bullet-list li {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.bullet-list li::before {
    content: '•';
    color: var(--accent-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Personal Section */
.personal-note {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Goals Grid */
.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.goal-card {
    background-color: var(--tertiary-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.goal-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.goal-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Slideshow */
.slideshow-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: var(--card-bg);
    padding: 2rem;
    margin: 3rem 0;
}

.slideshow {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    padding: 1rem 0;
}

.slide {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide-img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: var(--tertiary-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.low-fi-img {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.mid-fi-img {
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
}

.mid-fi-img::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.slide-annotation {
    max-width: 700px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.slideshow-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slideshow-btn {
    background-color: var(--tertiary-bg);
    border: none;
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slideshow-btn:hover {
    background-color: var(--accent-color);
    color: var(--primary-bg);
}

.slide-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    margin: 0 5px;
}

.slide-indicator.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

/* High-fidelity screens */
.screens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.screen-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.screen-card:hover {
    transform: translateY(-10px);
}

.screen-header {
    background-color: var(--tertiary-bg);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.screen-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screen-dot.red {
    background-color: #ff5757;
}

.screen-dot.yellow {
    background-color: #ffbd2e;
}

.screen-dot.green {
    background-color: #27c93f;
}

.screen-img {
    width: 100%;
    height: 500px;
    background-color: var(--tertiary-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

.screen-info {
    padding: 1.5rem;
}

/* Video Section */
.video-section {
    background-color: var(--tertiary-bg);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.video-placeholder {
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 2rem auto;
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 87, 87, 0.1), transparent);
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    border: none;
    color: white;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 87, 87, 0.5);
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    text-align: center;
    border-radius: var(--border-radius);
    margin: 4rem 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* ================ RESPONSIVE ADJUSTMENTS ================ */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }

    .hero-content,
    .hero-image {
        flex: 0 0 100%;
        width: 100%;
    }

    .hero-image {
        transform: none;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 30px;
    }

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

    .footer-column h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .process-wrapper {
        padding-top: 40px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .process-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 80px 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-meta {
        flex-direction: column;
        gap: 1.5rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .video-placeholder {
        height: 300px;
    }

    .slideshow-container {
        padding: 1rem;
    }

    .screens-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-title {
        font-size: 2rem;
    }

    body {
        padding-top: 66px;
    }

    /* Introduction Section Mobile */
    .introduction-section .display-5 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .introduction-section .lead {
        font-size: 1.05rem;
    }

    /* Problem/Solution Mobile */
    .process-wrapper {
        padding-top: 35px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .step-line {
        height: 35px;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-card h3 {
        font-size: 1.2rem;
    }

    .card-icon-header {
        width: 70px;
        height: 70px;
    }

    .process-card li {
        padding: 14px;
        font-size: 0.95rem;
    }

    /* Visual Identity Mobile */
    .visual-identity-section .section-title h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .typo-display {
        padding: 25px;
    }

    .palette-grid {
        grid-template-columns: 1fr;
    }

    .palette-item {
        height: 90px;
    }

    /* Gallery Mobile */
    .gallery-section .section-title h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .gallery-filter-container {
        padding: 20px 10px;
        gap: 8px;
    }

    .gallery-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .gallery-card-long {
        max-height: 350px;
    }

    /* Conclusion Mobile */
    .conclusion-section h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .conclusion-section .lead {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .slideshow-controls {
        flex-wrap: wrap;
    }

    .video-section {
        padding: 2rem 1rem;
    }

    .social-links {
        gap: 15px;
        margin-bottom: 30px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Introduction Section Small Mobile */
    .introduction-section .section-label {
        font-size: 0.75rem;
        padding: 6px 16px;
        letter-spacing: 2px;
    }

    .introduction-section .display-5 {
        font-size: 1.75rem;
    }

    .introduction-section .lead {
        font-size: 1rem;
    }

    /* Problem/Solution Small Mobile */
    .process-card {
        padding: 1.75rem 1.25rem;
    }

    .card-icon-header {
        width: 60px;
        height: 60px;
    }

    .process-card h3 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .process-card li {
        padding: 12px;
        font-size: 0.9rem;
    }

    .process-card li i {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }

    /* Visual Identity Small Mobile */
    .typo-display {
        padding: 20px;
    }

    /* Gallery Small Mobile */
    .gallery-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .gallery-card-long {
        max-height: 300px;
    }

    /* Conclusion Small Mobile */
    .conclusion-section h2 {
        font-size: 1.75rem;
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states for accessibility */
.gallery-btn:focus,
.process-card:focus-within,
.palette-item:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 4px;
}

/* Loading animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section>* {
    animation: slideInUp 0.6s ease-out backwards;
}

.section>*:nth-child(1) {
    animation-delay: 0.1s;
}

.section>*:nth-child(2) {
    animation-delay: 0.2s;
}

.section>*:nth-child(3) {
    animation-delay: 0.3s;
}

/* ================ ANIMATIONS ================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ================ NEW CASE STUDY STYLES (BEHANCE STYLE) ================ */

/* Section Spacing */
/* Section Spacing - Enhanced */
.section {
    padding: 120px 0;
    position: relative;
    background: linear-gradient(180deg,
            var(--primary-bg) 0%,
            rgba(12, 12, 12, 1) 50%,
            var(--primary-bg) 100%);
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 87, 87, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

/* Section Titles - (Included in css/common-css/common.css) */
/* Introduction Section - Enhanced */
.introduction-section {
    background: linear-gradient(180deg,
            rgba(15, 15, 15, 0.95) 0%,
            var(--primary-bg) 100%);
    overflow: hidden;
    position: relative;
}

.introduction-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.introduction-section .section-label {
    display: inline-block;
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 10px 24px;
    background: rgba(255, 87, 87, 0.12);
    border: 1.5px solid rgba(255, 87, 87, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.introduction-section .section-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 87, 87, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.introduction-section .section-label:hover::before {
    width: 300px;
    height: 300px;
}

.introduction-section .section-label:hover {
    background: rgba(255, 87, 87, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 87, 87, 0.3);
    border-color: rgba(255, 87, 87, 0.5);
}

.introduction-section .display-5 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-align: left;
}

.introduction-section .lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.7);
    max-width: none;
    margin: 0;
    text-align: left;
}

.introduction-section .lead strong {
    color: var(--accent-color);
    font-weight: 700;
}

/* Problem & Solution */
.display-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-icon {
    opacity: 0.5;
}

/* Visual Identity - Enhanced */
.visual-identity-section {
    background: linear-gradient(180deg,
            var(--primary-bg) 0%,
            rgba(10, 10, 10, 1) 50%,
            var(--primary-bg) 100%);
    position: relative;
}

.visual-identity-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.06) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.visual-identity-section .section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #c0c0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: left;
}

.visual-identity-section .section-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 800px;
    margin: 0;
    text-align: left;
    line-height: 1.7;
}

.identity-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(25px);
    border-radius: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    height: 100%;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.identity-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 87, 87, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.identity-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.7s ease;
}

.identity-card:hover::before {
    opacity: 1;
}

.identity-card:hover::after {
    left: 100%;
}

.identity-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 87, 87, 0.2);
    border-color: rgba(255, 87, 87, 0.25);
}

.identity-card h4 {
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 1.05rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff8787 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typo-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.typo-display:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.1);
}

.font-primary {
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.typo-scale {
    margin-top: 20px;
}

.typo-scale .h1,
.typo-scale .h2,
.typo-scale .h4 {
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.typo-scale .h1:hover,
.typo-scale .h2:hover,
.typo-scale .h4:hover {
    color: var(--accent-color);
    transform: translateX(10px);
}

.palette-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.palette-item {
    height: 110px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.palette-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.palette-item:hover::before {
    opacity: 1;
}

.palette-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-width: 2px;
}

.palette-item span {
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.palette-item small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 600;
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 1;
}

/* Gallery Section - Premium Dark */
.gallery-section {
    background: linear-gradient(180deg,
            rgba(5, 5, 5, 1) 0%,
            rgba(12, 12, 12, 1) 50%,
            rgba(5, 5, 5, 1) 100%);
    position: relative;
    padding-bottom: 80px;
}

.gallery-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, rgba(255, 87, 87, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 87, 87, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    pointer-events: none;
}

.gallery-section .section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-align: left;
}

.gallery-section .section-title p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0;
    text-align: left;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(180deg,
            var(--primary-bg) 0%,
            rgba(18, 18, 18, 0.95) 50%,
            var(--primary-bg) 100%);
    position: relative;
    padding-top: 100px;
    padding-bottom: 150px;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 87, 87, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.conclusion-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
    text-align: left;
}

.conclusion-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    text-align: left;
    max-width: 900px;
    margin: 0;
}

.gallery-btn {
    padding: 12px 28px;
    background: rgba(35, 35, 35, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.gallery-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6666 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-btn span {
    position: relative;
    z-index: 1;
}

.gallery-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 87, 87, 0.4);
    box-shadow: 0 10px 25px rgba(255, 87, 87, 0.2);
    color: white;
}

.gallery-btn:hover::before {
    opacity: 0.1;
}

.gallery-btn.active {
    background: linear-gradient(135deg, var(--accent-color) 0%, #ff6666 100%);
    border-color: var(--accent-color);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 87, 87, 0.4);
    transform: translateY(-3px) scale(1.05);
}

.gallery-btn.active::before {
    opacity: 0;
}

.gallery-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(20, 20, 20, 0.5);
}

.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.gallery-card:hover::before {
    opacity: 1;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 87, 87, 0.3);
}

.gallery-card img {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.7) 60%, transparent);
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.gallery-card:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Gallery Filtering Animation */
.gallery-item {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: scale(0.9) translateY(20px);
}

.gallery-item.show {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* ================ PROBLEM & SOLUTION REDESIGN ================ */
.problem-solution-section {
    background: linear-gradient(180deg,
            var(--primary-bg) 0%,
            rgba(15, 15, 15, 0.8) 50%,
            var(--primary-bg) 100%);
}

.process-wrapper {
    position: relative;
    padding-top: 50px;
    height: 100%;
}

.step-indicator {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: 800;
    font-size: 1.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.2;
    filter: blur(10px);
    z-index: -1;
}

.process-wrapper:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

.step-line {
    width: 3px;
    height: 45px;
    background: transparent;
    border-left: 3px dashed;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.process-wrapper:hover .step-line {
    opacity: 0.8;
    border-left-style: solid;
}

.process-card {
    background: rgba(35, 35, 35, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.process-card h3 {
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #b0b0b0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-card ul {
    text-align: left;
    width: 100%;
}

.card-icon-header {
    margin-bottom: 2rem;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: all 0.4s ease;
}

.card-icon-header::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    filter: blur(15px);
}

.process-card:hover .card-icon-header {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.12);
}

/* Problem Card Specifics */
.problem-card {
    border-color: rgba(220, 53, 69, 0.4);
    background: linear-gradient(135deg,
            rgba(220, 53, 69, 0.08) 0%,
            rgba(35, 35, 35, 0.6) 50%,
            rgba(220, 53, 69, 0.03) 100%);
    position: relative;
}

.problem-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 53, 69, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.problem-card:hover {
    border-color: rgba(220, 53, 69, 0.6);
    box-shadow: 0 25px 60px rgba(220, 53, 69, 0.25);
}

.problem-card .step-number {
    background: linear-gradient(135deg, #dc3545 0%, #a82835 100%);
}

.problem-card .card-icon-header {
    background: rgba(220, 53, 69, 0.15);
}

/* Solution Card Specifics */
.solution-card {
    border-color: rgba(25, 135, 84, 0.4);
    background: linear-gradient(135deg,
            rgba(25, 135, 84, 0.08) 0%,
            rgba(35, 35, 35, 0.6) 50%,
            rgba(25, 135, 84, 0.03) 100%);
    position: relative;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.solution-card:hover {
    border-color: rgba(25, 135, 84, 0.6);
    box-shadow: 0 25px 60px rgba(25, 135, 84, 0.25);
}

.solution-card .step-number {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
}

.solution-card .card-icon-header {
    background: rgba(25, 135, 84, 0.15);
}

/* List Item enhancement */
.process-card li {
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: currentColor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card li:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.process-card li:hover::before {
    opacity: 0.5;
}

.process-card li:last-child {
    margin-bottom: 0;
}

/* Icon colors matching the card theme */
.problem-card i.text-danger {
    color: #dc3545 !important;
}

.solution-card i.text-success {
    color: #198754 !important;
}

/* "Pointer" styling for list bullets to match design */
.process-card li i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: currentColor;
    color: white !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    padding: 0;
    margin-top: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.process-card li:hover i {
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.process-card li i::before {
    display: block;
}

/* ================ LONG LANDING PAGE PREVIEW ================ */
.gallery-card-long {
    max-height: 400px;
    /* Restrict height */
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card-long img {
    object-position: top;
    height: auto;
    min-height: 100%;
}

.gallery-card-long::after {
    content: 'View Full Design';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 18, 18, 0.9) 80%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: none;
    /* Allow click to pass through to image */
    transition: var(--transition-smooth);
}

.gallery-card-long:hover::after {
    background: linear-gradient(to bottom, transparent 0%, rgba(18, 18, 18, 1) 80%);
    color: white;
    padding-bottom: 25px;
}

/* ================ PROJECT INFO SECTION ================ */
.project-info-section {
    background: linear-gradient(180deg,
            #f5f5f5 0%,
            #e8e8e8 100%) !important;
    position: relative;
}

.project-info-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.ls-1 {
    letter-spacing: 1.5px;
}

.info-content {
    border-left: 6px solid var(--accent-color);
    transition: all 0.4s ease;
    position: relative;
}

.info-content::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color) 0%, #ff6666 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.info-content:hover::before {
    opacity: 1;
}

.info-content:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.cta-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-box:hover::before {
    opacity: 1;
}

.cta-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(10, 26, 48, 0.4) !important;
}

.cta-box i {
    transition: all 0.4s ease;
}

.cta-box:hover i {
    transform: scale(1.2) rotate(10deg);
}

.bg-darker {
    background-color: #0c0c0c !important;
}

/* Conclusion Section */
.conclusion-section {
    background: linear-gradient(180deg,
            var(--primary-bg) 0%,
            rgba(18, 18, 18, 0.95) 50%,
            var(--primary-bg) 100%);
    position: relative;
}

.conclusion-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 87, 87, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.3;
}

.conclusion-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #d0d0d0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.conclusion-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
}

/* =========================================
   ORBITAL FLOW REDESIGN (Responsive & Liquid)
   ========================================= */
.flow-section {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.4) 0%, transparent 70%);
}

.flow-diagram-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

/* Systems (Left & Right) */
.flow-system {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex: 1;
}

.system-left {
    justify-content: flex-end;
    text-align: right;
}

.system-right {
    justify-content: flex-start;
    text-align: left;
}

/* Satellites Container */
.satellites-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
}

.satellite {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    /* Pill shape for cleaner look */
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 250px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.satellite::before {
    content: '';
    position: absolute;
    width: 0;
    /* Animated line */
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    top: 50%;
    transition: width 0.4s ease;
    z-index: -1;
}

/* Connector Lines for Satellites */
.system-left .satellite::before {
    left: 100%;
}

.system-right .satellite::before {
    right: 100%;
}

.satellite:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.satellite:hover::before {
    width: 50px;
    background: currentColor;
}

.sat-danger {
    color: #ff8787;
}

.sat-success {
    color: var(--accent-color);
}

.sat-title {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: white;
}

.sat-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Main Orbs */
.orb-container {
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.main-orb {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 0 30px rgba(0, 0, 0, 0.5),
        0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

.orb-danger {
    background: radial-gradient(circle at 35% 35%, rgba(255, 94, 94, 0.2), rgba(163, 0, 0, 0.4));
}

.orb-success {
    background: radial-gradient(circle at 35% 35%, rgba(3, 218, 197, 0.2), rgba(0, 143, 133, 0.4));
}

.orb-danger::after,
.orb-success::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 40%;
    height: 25%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
    transform: rotate(-45deg);
    pointer-events: none;
    filter: blur(2px);
}

.orb-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.main-orb h3 {
    font-size: 1rem;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Orb Glows */
.orb-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
    opacity: 0.3;
    animation: breathe 5s infinite ease-in-out;
}

.glow-danger {
    background: #ff5e5e;
}

.glow-success {
    background: #00ffd5;
}

@keyframes breathe {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Central Bridge (Liquid Connection) */
.flow-bridge {
    position: relative;
    width: 200px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Refined Liquid Path */
.liquid-path {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    height: 50px;
    /* Multilayer gradient for depth */
    background: linear-gradient(90deg,
            rgba(255, 94, 94, 0.1) 0%,
            rgba(255, 94, 94, 0.4) 30%,
            rgba(3, 218, 197, 0.4) 70%,
            rgba(3, 218, 197, 0.1) 100%);
    border-radius: 40px;
    filter: blur(12px);
    transform: translateY(-50%);
    z-index: 0;
    opacity: 0.8;
    overflow: hidden;
}

.liquid-path::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: flowStream 3s infinite linear;
}

@keyframes flowStream {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.central-core {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #ff7676, #990000);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
    box-shadow:
        0 0 50px rgba(255, 50, 50, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.central-core::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    opacity: 0.5;
    pointer-events: none;
}

.central-core::before {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    z-index: -1;
    animation: pulseRing 3s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.core-label {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.liquid-path-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.2);
    font-size: 2rem;
    z-index: 3;
    animation: slideRight 2s infinite;
    display: none;
    /* Hidden on desktop, mainly for mobile or removed */
}

/* =========================================
   RESPONSIVE LAYOUT
   ========================================= */
@media (max-width: 1200px) {
    .flow-diagram-wrapper {
        flex-direction: column;
        gap: 4rem;
    }

    .flow-system {
        gap: 2rem;
        width: 100%;
        justify-content: center;
    }

    /* On stacked layout, re-orient satellites */
    .system-left {
        flex-direction: column-reverse;
        text-align: center;
    }

    .system-right {
        flex-direction: column;
        text-align: center;
    }

    .satellites-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .satellite {
        max-width: 250px;
        text-align: center;
        padding: 1rem;
    }

    /* Lines need adjustment for vertical/stacked */
    .satellite::before {
        top: -20px;
        left: 50% !important;
        width: 1px;
        height: 20px;
        transform: translateX(-50%);
    }

    .flow-bridge {
        width: 100%;
        height: 100px;
        transform: rotate(90deg);
        margin: 2rem 0;
    }

    .central-core {
        transform: rotate(-90deg);
    }
}

@media (max-width: 768px) {
    .main-orb {
        width: 140px;
        height: 140px;
    }

    .orb-glow {
        width: 180px;
        height: 180px;
    }

    .satellites-container {
        flex-direction: column;
        width: 100%;
    }

    .satellite {
        max-width: 100%;
        margin: 0 auto;
        width: 90%;
    }

    .satellite::before {
        display: none;
    }

    /* Hide connection lines on mobile */

    .flow-bridge {
        transform: rotate(0);
        height: auto;
        margin: 3rem 0;
        flex-direction: column;
        width: 100%;
    }

    .liquid-path {
        width: 4px;
        height: 100px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: linear-gradient(180deg, rgba(255, 94, 94, 0.4), rgba(3, 218, 197, 0.4));
    }

    .liquid-path::after {
        animation: flowStreamVert 3s infinite linear;
        top: -100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    }

    @keyframes flowStreamVert {
        0% {
            top: -100%;
        }

        100% {
            top: 100%;
        }
    }

    .central-core {
        transform: rotate(0);
    }
}

/* =========================================
   DESIGN IDENTITY SECTION
   ========================================= */
.design-identity-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Identity Grid */
.identity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

/* Identity Module (Card Container) */
.identity-module {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.identity-module:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.module-inner {
    padding: 3rem;
}

/* Module Header */
.module-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1.5rem;
}

.module-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.module-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================
   TYPOGRAPHY MODULE
   ========================================= */
.typo-showcase {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
}

.giant-letter {
    font-size: 10rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.5) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.typo-description {
    flex: 1;
}

.typo-description p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Typography Specimens */
.typo-specimens {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.specimen-item {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid var(--accent-color);
}

.specimen-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    min-width: 80px;
    font-weight: 600;
}

.specimen-text {
    flex: 1;
    color: white;
}

.specimen-display {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.specimen-heading {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.specimen-body {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

/* =========================================
   COLOR PALETTE MODULE
   ========================================= */
.color-swatches {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.swatch-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.swatch-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.swatch-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.swatch-item:hover .swatch-circle {
    transform: scale(1.1);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.swatch-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.swatch-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
}

.swatch-hex {
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
}

.palette-note {
    padding: 1.5rem;
    background: rgba(3, 218, 197, 0.05);
    border-left: 3px solid var(--accent-color);
    border-radius: 8px;
}

.palette-note p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 1024px) {
    .identity-grid {
        grid-template-columns: 1fr;
    }

    .typo-showcase {
        flex-direction: column;
        text-align: center;
    }

    .giant-letter {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .module-inner {
        padding: 2rem;
    }

    .giant-letter {
        font-size: 6rem;
    }

    .specimen-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .specimen-label {
        min-width: auto;
    }

    .specimen-display {
        font-size: 2rem;
    }

    .specimen-heading {
        font-size: 1.5rem;
    }

    .color-swatches {
        grid-template-columns: repeat(2, 1fr);
    }

    .identity-grid {
        gap: 1.5rem;
    }
}

/* =========================================
   PREMIUM GALLERY SECTION
   ========================================= */
.premium-gallery-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.premium-gallery-section .container-fluid {
    max-width: 1350px;
    margin: 0 auto;
}

/* Gallery Navigation */
.gallery-nav-wrapper {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.gallery-filter-pills {
    display: inline-flex;
    gap: 1rem;
    padding: 0.5rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(20px);
}

/* Filter Pills */
.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.filter-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), rgba(3, 218, 197, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.filter-pill:hover {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.filter-pill.active {
    color: white;
    background: rgba(var(--accent-color-rgb), 0.2);
    border-color: var(--accent-color);
}

.filter-pill.active::before {
    opacity: 0.2;
}

.pill-icon {
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill-text {
    font-size: 0.9rem;
}

.pill-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.filter-pill.active .pill-count {
    background: var(--accent-color);
    color: white;
}

/* Gallery Grid */
.premium-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Gallery Items */
.gallery-item-wrapper {
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-item-wrapper:not(.show) {
    opacity: 0;
    transform: scale(0.9);
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Premium Gallery Cards */
.premium-gallery-card {
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Gallery Image Container */
.gallery-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: rgba(10, 10, 10, 0.8);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.premium-gallery-card:hover .gallery-image {
    transform: scale(1.05);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* Expand Button */
.gallery-expand-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #000;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    transform: scale(0.8);
    opacity: 0;
}

.premium-gallery-card:hover .gallery-expand-btn {
    transform: scale(1);
    opacity: 1;
}

.gallery-expand-btn:hover {
    background: white;
    transform: scale(1.1);
}

/* Gallery Meta */
.gallery-meta {
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Gallery Badges */
.gallery-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-older {
    background: rgba(255, 152, 0, 0.15);
    color: #ff9800;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.badge-latest {
    background: rgba(3, 218, 197, 0.15);
    color: var(--accent-color);
    border: 1px solid rgba(3, 218, 197, 0.3);
}

.badge-mobile {
    background: rgba(33, 150, 243, 0.15);
    color: #2196f3;
    border: 1px solid rgba(33, 150, 243, 0.3);
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */
@media (max-width: 1024px) {
    .premium-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-filter-pills {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gallery-filter-pills {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        gap: 0.5rem;
    }

    .filter-pill {
        width: 100%;
        justify-content: space-between;
    }

    .premium-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .premium-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   LIGHTBOX MODAL
   ========================================= */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

/* Lightbox Controls */
.lightbox-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

/* Lightbox Content */
.lightbox-content-wrapper {
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: zoom-in;
}

.lightbox-img.zoomed {
    cursor: zoom-out;
    transform: scale(1.5);
}

/* Zoom Hint */
.zoom-hint {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

/* Lightbox Thumbnails */
.lightbox-thumbnails-container {
    position: fixed;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    overflow-x: auto;
    z-index: 10001;
}

.lightbox-thumbnails {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.lightbox-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.lightbox-thumb:hover {
    opacity: 0.8;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--accent-color);
}

/* Responsive Lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .zoom-hint {
        bottom: 1rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .lightbox-thumbnails-container {
        display: none;
        /* Hide thumbnails on mobile */
    }
}

/* =========================================
   LOAD ALL BUTTON
   ========================================= */
.gallery-load-more {
    padding-top: 3rem;
}

.btn-load-all {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.btn-load-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 218, 197, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-load-all:hover::before {
    left: 100%;
}

.btn-load-all:hover {
    background: rgba(3, 218, 197, 0.1);
    border-color: #00ffd5;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(3, 218, 197, 0.3);
}

.btn-load-all .btn-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    animation: iconPulse 2s infinite;
}

.btn-load-all .btn-arrow {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn-load-all:hover .btn-arrow {
    transform: translateY(3px);
}

.btn-load-all.hidden {
    display: none;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .btn-load-all {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

/* =========================================
   CONCLUSION SECTION
   ========================================= */
.conclusion-section {
    padding: 120px 0;
    position: relative;
}

.conclusion-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 4rem;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.4) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.conclusion-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(3, 218, 197, 0.5), transparent);
}

.conclusion-content {
    position: relative;
    z-index: 2;
    text-align: left;
}

/* Header */
.conclusion-header {
    margin-bottom: 3rem;
}

.conclusion-eyebrow {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.conclusion-title {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Body Text */
.conclusion-body {
    margin-bottom: 3rem;
}

.conclusion-lead {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    color: white;
    margin-bottom: 2rem;
}

.text-highlight {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(3, 218, 197, 0.2);
    z-index: -1;
    transform: skewX(-10deg);
}

.conclusion-desc {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0;
}

/* Decoration */
.conclusion-decoration {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    opacity: 0.5;
}

.deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, white, transparent);
}

.deco-line:first-child {
    background: linear-gradient(90deg, transparent, white);
    /* Keep first one fading in */
}

/* Adjusting the decoration logic for left align */
.conclusion-decoration .deco-line {
    background: white;
    /* Simple solid line for left alignment might look cleaner, or gradient fade out to right */
    width: 40px;
    background: linear-gradient(90deg, white, transparent);
}

.conclusion-decoration .deco-line:first-child {
    display: none;
    /* Hide the left line for left-aligned layout */
}

.conclusion-decoration .deco-dot {
    margin-left: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .conclusion-wrapper {
        padding: 2.5rem;
    }

    .conclusion-title {
        font-size: 2.5rem;
    }

    .conclusion-lead {
        font-size: 1.25rem;
    }
}

.deco-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
}