/* ==========================================================================
   Project Detail Page - Shared Stylesheet
   Used by: clipstacker, spellio, wordaddle, birdhouse, tokforge, and 30+ more
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem 2rem;
}

.hero-badge {
    color: #EF13F2;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
    background: linear-gradient(45deg, #ffffff, #EF13F2, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.hero-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.hero-text-column {
    padding-right: 1rem;
}

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

.info-box-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-align: left;
}

.info-box-item:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.info-box-item h3 {
    color: #EF13F2;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-box-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Info Section */
.info-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    background-image:
        linear-gradient(rgba(239, 19, 242, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 19, 242, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #EF13F2, #ff1a9e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    position: relative;
    border: 2px solid rgba(239, 19, 242, 0.4);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(239, 19, 242, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(239, 19, 242, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(239, 19, 242, 0.3);
}

.feature-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    height: 100%;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #EF13F2, #667eea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #EF13F2;
}

/* Use Case Section */
.usecase-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

.usecase-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.usecase-card {
    background: rgba(239, 19, 242, 0.15);
    border: 2px solid rgba(239, 19, 242, 0.4);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(239, 19, 242, 0.2);
}

.usecase-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #EF13F2;
}

.result-highlight {
    background: rgba(239, 19, 242, 0.2);
    border: 1px solid #EF13F2;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Video Section */
.video-section {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.video-window {
    position: relative;
    z-index: 10;
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border: 4px solid rgba(239, 19, 242, 0.6);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(239, 19, 242, 0.4),
        inset 0 0 30px rgba(239, 19, 242, 0.1);
}

/* Tags Section */
.tags-section {
    padding: 6rem 2rem;
    background: #0a0a0a;
    text-align: center;
}

.tags-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #EF13F2;
    text-transform: uppercase;
}

.tags-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.tag {
    background: linear-gradient(45deg, rgba(239, 19, 242, 0.2), rgba(102, 126, 234, 0.2));
    border: 1px solid rgba(239, 19, 242, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 19, 242, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(239, 19, 242, 0.15);
    border: 2px solid rgba(239, 19, 242, 0.4);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(239, 19, 242, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #EF13F2;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #EF13F2, #ff1a9e);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 19, 242, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 19, 242, 0.4);
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }

    .hero-content {
        padding: 6rem 1rem 2rem 1rem;
    }

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

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text-column {
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-boxes-column {
        gap: 1.5rem;
    }

    .info-box-item {
        padding: 1.5rem;
    }

    .info-box-item h3 {
        font-size: 1rem;
    }

    .info-box-item p {
        font-size: 0.9rem;
    }

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

    .video-window {
        width: 95%;
    }
}

/* Discovery Promo Section */
.discovery-promo-section {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    position: relative;
}

.discovery-promo-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.promo-content {
    padding-right: 2rem;
}

.promo-overline {
    font-size: 0.9rem;
    color: #EF13F2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.promo-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #ffffff, #EF13F2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.promo-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.promo-features {
    list-style: none;
    margin-bottom: 3rem;
}

.promo-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.promo-features li:before {
    content: "\2713";
    color: #EF13F2;
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #EF13F2, #ff1a9e);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 19, 242, 0.3);
}

.promo-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 19, 242, 0.4);
}

/* Video Player Window */
.video-player-container {
    position: relative;
    padding-left: 2rem;
}

.video-player-frame {
    background: linear-gradient(145deg, rgba(239, 19, 242, 0.1), rgba(102, 126, 234, 0.1));
    border: 2px solid rgba(239, 19, 242, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    position: relative;
    box-shadow: 0 20px 40px rgba(239, 19, 242, 0.15);
}

.video-player-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
}

.player-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-close { background: #ff5f56; }
.control-minimize { background: #ffbd2e; }
.control-maximize { background: #27ca3f; }

.player-title {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.video-player-window {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    position: relative;
    border: 1px solid rgba(239, 19, 242, 0.2);
}

.video-player-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(239, 19, 242, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-play-overlay:hover {
    background: rgba(239, 19, 242, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 20px solid #000;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

@media (max-width: 968px) {
    .discovery-promo-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .promo-content {
        padding-right: 0;
    }

    .video-player-container {
        padding-left: 0;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Applications Section */
.applications-section {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.application-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.application-card .card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.application-card .card-content {
    position: relative;
    z-index: 2;
}

.application-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 19, 242, 0.3);
    background: rgba(239, 19, 242, 0.05);
}

.app-icon {
    font-size: 3rem;
    color: #EF13F2;
    margin-bottom: 1.5rem;
    display: block;
}

.application-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.app-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.app-features li:before {
    content: "\2192";
    position: absolute;
    left: 0;
    color: #EF13F2;
    font-weight: bold;
}

.app-result {
    padding: 1rem;
    background: rgba(239, 19, 242, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(239, 19, 242, 0.3);
    text-align: center;
}

.result-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.result-metric {
    color: #EF13F2;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Integration Section */
.integration-section {
    padding: 6rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
}

.integration-section .section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.integration-section .section-container {
    position: relative;
    z-index: 2;
}

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

.integration-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.integration-category:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 19, 242, 0.3);
    background: rgba(239, 19, 242, 0.05);
}

.integration-category .category-content {
    position: relative;
    z-index: 2;
}

.integration-category h3 {
    font-size: 1.5rem;
    color: #EF13F2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.integration-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.integration-item:hover {
    background: rgba(239, 19, 242, 0.2);
    border-color: rgba(239, 19, 242, 0.4);
}

.integration-icon {
    font-size: 1.8rem;
    color: #ff1a9e;
    margin-bottom: 0.5rem;
}

.integration-details h4 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.integration-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comparison-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.comparison-column.before::before {
    background-image: url('/assets/images/pumpetto_cool_digital_vaporwave_textures_super_high_quality_wit_7bf61f36-217e-4c5d-8e74-92fca6ea4865.webp');
}

.comparison-column.after::before {
    background-image: url('/assets/images/pumpetto_cool_digital_vaporwave_textures_super_high_quality_wit_942803c3-385e-4f11-a613-e5ab7f44741b.webp');
}

.comparison-column .column-content {
    position: relative;
    z-index: 2;
}

.comparison-column:hover {
    transform: translateY(-3px);
    border-color: rgba(239, 19, 242, 0.3);
}

.comparison-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.comparison-column.before h3 {
    color: rgba(255, 255, 255, 0.6);
}

.comparison-column.after h3 {
    color: #EF13F2;
}

.comparison-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 0.5rem;
}

.comparison-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.comparison-item.negative {
    background: rgba(255, 255, 255, 0.05);
}

.comparison-item.positive {
    background: rgba(239, 19, 242, 0.1);
}

.comparison-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.comparison-item.negative .comparison-icon {
    color: rgba(255, 255, 255, 0.4);
}

.comparison-item.positive .comparison-icon {
    color: #EF13F2;
}

.comparison-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
    margin: 0;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Technical Section */
.technical-section {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    position: relative;
    overflow: hidden;
}

.technical-section .section-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
}

.technical-section .section-container {
    position: relative;
    z-index: 2;
}

.technical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.technical-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.technical-card:hover {
    transform: translateY(-5px);
    border-color: rgba(239, 19, 242, 0.3);
    background: rgba(239, 19, 242, 0.05);
}

.tech-icon {
    font-size: 2rem;
    color: #EF13F2;
    margin-bottom: 1rem;
    display: block;
}

.technical-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.technical-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Demo CTA Section */
.demo-cta-section {
    padding: 8rem 2rem;
    background: rgba(0, 0, 0, 0.95);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    text-align: center;
}

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

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #EF13F2, #ff1a9e, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.demo-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #EF13F2, #ff1a9e);
    color: #ffffff;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(239, 19, 242, 0.3);
}

.demo-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 19, 242, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .applications-section,
    .integration-section,
    .comparison-section,
    .technical-section,
    .demo-cta-section {
        padding: 4rem 1rem;
    }

    .applications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .integration-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .technical-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .application-card,
    .technical-card {
        padding: 2rem;
    }

    .demo-cta-button {
        padding: 1.2rem 2rem;
        font-size: 1rem;
    }
}

/* Enhanced Mobile Responsiveness - DO NOT AFFECT DESKTOP */
@media (max-width: 480px) {
    .hero-content {
        padding: 3rem 0.5rem 1rem 0.5rem !important;
    }

    .discovery-card,
    .application-card {
        padding: 1.5rem !important;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: clamp(1.2rem, 4vw, 1.6rem) !important;
        line-height: 1.1 !important;
        margin: 0 0 1rem 0 !important;
    }

    h2 {
        font-size: clamp(1rem, 3vw, 1.3rem) !important;
        line-height: 1.2 !important;
        margin: 0 0 0.8rem 0 !important;
    }

    h3 {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem) !important;
        line-height: 1.3 !important;
        margin: 0 0 0.6rem 0 !important;
    }

    .applications-grid,
    .discoveries-grid {
        gap: 1rem !important;
        padding: 0 0.5rem !important;
    }

    .cta-button,
    .demo-cta-button,
    button[style*="padding"] {
        padding: 1rem 1.5rem !important;
        font-size: 0.9rem !important;
        width: 100% !important;
        margin-top: 1rem;
    }
}
