/* ==========================================================================
   PRODUCT PAGE STYLES - Bytedz Website
   Product hero, features, gallery, downloads, and product-specific components
   ========================================================================== */

/* ==========================================================================
   PRODUCT HERO SECTION - CENTERED DESIGN
   ========================================================================== */

/* Centered Hero Section */
.product-hero-centered {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: calc(-1.5 * var(--header-height));
    padding-top: var(--header-height);
    text-align: center;
}

.hero-container-centered {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-title-big {
    font-size: 5.5em;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    color: var(--text-color);
    /* Remove gradient text effect for better compatibility */
}

.hero-subtitle-big {
    font-size: 1.8em;
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
}

.version-info {
    margin-top: 10px;
}

.version-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

/* Product Image Section - Single Screenshot */
.product-image-section {
    width: 100%;
    max-width: 900px;
    position: relative;
}

.product-screenshot {
    position: relative;
    padding: 20px;
}

.main-screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-color);
}

/* Download Section in Hero - New Row Layout */
.download-section-hero {
    width: 100%;
    max-width: 900px;
}

.download-section-hero h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin: 0 0 30px 0;
    color: var(--text-color);
}

.platform-buttons-row {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    position: relative;
}

.platform-button:hover {
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.platform-button-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    flex-shrink: 0;
}

.platform-button-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
}

.platform-name {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1em;
}

.platform-type {
    color: var(--text-light);
    font-size: 0.85em;
}

.platform-arrow {
    color: var(--text-light);
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

/* Platform Dropdown */

/* Platform Dropdown */

/* Product Description */
.product-description {
    max-width: 700px;
    text-align: center;
}

.product-description p {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Hero Actions */

/* Features Modern Section */
.features-modern {
    padding: 80px 0;
    /* background: var(--bg-secondary); */
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--text-color);
}

.section-header-centered p {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-modern {
    background: var(--bg-color);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.feature-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 1.8em;
    box-shadow: 0 8px 16px rgba(66, 153, 225, 0.3);
}

.feature-card-modern h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--text-color);
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-size: 0.95em;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   ORIGINAL PRODUCT HERO SECTION (SPLIT LAYOUT)
   ========================================================================== */

/* GitHub Button in Hero */

/* Split Hero Section */

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
    z-index: -2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(66, 153, 225, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(159, 122, 234, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

/* Hero Visual Elements */

/* ==========================================================================
   FEATURES OVERVIEW
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card-modern {
    background: var(--bg-secondary);
    padding: 24px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    color: white;
    font-size: 1.5em;
}

.feature-card-modern h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0 0 12px 0;
    font-size: 0.95em;
}

.feature-highlight {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.75em;
    font-weight: 600;
}

/* ==========================================================================
   GALLERY MODERN
   ========================================================================== */

/* Carousel Gallery */
.carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.carousel-track {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
    height: 400px;
    transition: transform 250ms ease-in;
}

.carousel-button--left {
    left: -20px;
}

.carousel-button--right {
    right: -20px;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.carousel-dot {
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
}

.carousel-dot.is-selected {
    background: var(--accent-color);
}

/* ==========================================================================
   DOWNLOADS MODERN
   ========================================================================== */

/* Professional Download Card Button Styles */

/* ==========================================================================
   TECH SPECS
   ========================================================================== */

/* ==========================================================================
   GITHUB INTEGRATION STYLES
   ========================================================================== */

/* Version Badge */
.version-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.version-badge i {
    font-size: 0.7rem;
}

/* Release Notes Section */

/* Collapsible Release Notes */

/* Info Section Compact */

/* GitHub Error Message */

/* Download Stats */

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Responsive for Centered Hero */
@media (max-width: 1200px) {
    .hero-title-big {
        font-size: 4.5em;
    }
}

@media (max-width: 968px) {
    .hero-title-big {
        font-size: 3.5em;
    }

    .hero-subtitle-big {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .hero-container-centered {
        padding: 40px 15px;
        gap: 30px;
    }

    .hero-title-big {
        font-size: 2.8em;
    }

    .hero-subtitle-big {
        font-size: 1.3em;
    }

    .product-description p {
        font-size: 1.1em;
    }

    .download-section-hero h3 {
        font-size: 1.3em;
    }

    .platform-buttons-row {
        flex-direction: column;
        align-items: center;
    }

    .platform-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .hero-title-big {
        font-size: 2.2em;
    }

    .hero-subtitle-big {
        font-size: 1.1em;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-modern {
        padding: 24px 20px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }

    .section-header-centered h2 {
        font-size: 2em;
    }

    .features-modern {
        padding: 60px 0;
    }
}

/* Original Split Layout Responsive */

@media (max-width: 768px) {

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

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

    .carousel-button--left {
        left: 10px;
    }

    .carousel-button--right {
        right: 10px;
    }
}

@media (max-width: 600px) {
    .carousel-track {
        height: 300px;
    }
}

/* Dark mode support */

/* Prod
uct Description */
.product-description {
    max-width: 700px;
    text-align: center;
}

.product-description p {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* Hero Actions */

/* Features Modern Section */
.features-modern {
    padding: 80px 0;
    /* background: var(--bg-secondary); */
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: var(--text-color);
}

.section-header-centered p {
    font-size: 1.2em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card-modern {
    background: var(--bg-color);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
}

.feature-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 1.8em;
    box-shadow: 0 8px 16px rgba(66, 153, 225, 0.3);
}

.feature-card-modern h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: var(--text-color);
}

.feature-card-modern p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 16px 0;
    font-size: 0.95em;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Responsive for Centered Hero */
@media (max-width: 1200px) {
    .hero-title-big {
        font-size: 4.5em;
    }
}

@media (max-width: 968px) {
    .hero-title-big {
        font-size: 3.5em;
    }

    .hero-subtitle-big {
        font-size: 1.5em;
    }
}

@media (max-width: 768px) {
    .hero-container-centered {
        padding: 40px 15px;
        gap: 30px;
    }

    .hero-title-big {
        font-size: 2.8em;
    }

    .hero-subtitle-big {
        font-size: 1.3em;
    }

    .product-description p {
        font-size: 1.1em;
    }

    .download-section-hero h3 {
        font-size: 1.3em;
    }

    .platform-buttons-row {
        flex-direction: column;
        align-items: center;
    }

    .platform-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .hero-title-big {
        font-size: 2.2em;
    }

    .hero-subtitle-big {
        font-size: 1.1em;
    }

    .features-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card-modern {
        padding: 24px 20px;
    }

    .feature-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }

    .section-header-centered h2 {
        font-size: 2em;
    }

    .features-modern {
        padding: 60px 0;
    }
}

/* Fi
x dropdown z-index issue */

/* Reduce spacing between hero and features */
.hero-container-centered {
    padding-bottom: 60px !important;
}

/* Ensure features section doesn't overlap */
.features-modern {
    position: relative;
    z-index: 1;
}

/* 
GitHub button styling */

/* Direct 
Download Buttons - Remove dropdown styling */
.platform-button {
    text-decoration: none;
    color: inherit;
}

.platform-button:hover {
    text-decoration: none;
    color: inherit;
}

/* Remove GitHub-specific styling since all buttons are now the same */
.platform-button .platform-button-icon {
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
}

.platform-button:hover .platform-button-icon {
    background: linear-gradient(135deg, #3182ce, #805ad5);
}

/* GitHub button gets dark theme */
.platform-button[href*="github"] .platform-button-icon {
    background: #24292e;
}

.platform-button[href*="github"]:hover .platform-button-icon {
    background: #1b1f23;
}

/* View All Releases Button */

/* Releases Table Section */
.releases-table-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.releases-table-container {
    background: var(--bg-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.releases-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95em;
}

.releases-table th {
    background: linear-gradient(135deg, var(--accent-color), #3182ce);
    color: white;
    font-weight: 600;
    padding: 18px 24px;
    text-align: left;
    border: none;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    white-space: nowrap;
}

.releases-table th:nth-child(1) { width: 20%; }
.releases-table th:nth-child(2) { width: 35%; }
.releases-table th:nth-child(3) { width: 15%; }
.releases-table th:nth-child(4) { width: 30%; }

.releases-table th:first-child {
    border-radius: 0;
}

.releases-table th:last-child {
    border-radius: 0;
}

.releases-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    vertical-align: middle;
}

.releases-table tbody tr {
    transition: all 0.2s ease;
}

.releases-table tbody tr:hover {
    background: var(--bg-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

/* Platform column styling */
.platform-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.platform-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
}

.platform-icon.windows { color: #0078d4; }
.platform-icon.linux { color: #fcc624; }
.platform-icon.android { color: #3ddc84; }

/* Package column styling */
.package-cell {
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: var(--text-light);
}

.download-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.download-link:hover {
    color: #2c5aa0;
    text-decoration: underline;
}

/* Size column */
.size-cell {
    font-weight: 500;
    color: var(--text-light);
}

/* Checksum column */
.checksum-cell {
    font-family: 'Courier New', monospace;
    font-size: 0.8em;
    color: var(--text-light);
    max-width: 200px;
    word-break: break-all;
    cursor: pointer;
    position: relative;
}

.checksum-cell:hover {
    color: var(--accent-color);
}

.checksum-cell::after {
    content: "Click to copy";
    position: absolute;
    bottom: -25px;
    left: 0;
    font-size: 0.7em;
    color: var(--text-light);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checksum-cell:hover::after {
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-color);
}

.about-text h3 {
    color: var(--accent-color);
    font-size: 1.3em;
    margin-bottom: 16px;
    font-weight: 600;
}

.about-text p {
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.stat-number {
    font-size: 2em;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 0.9em;
    color: var(--text-light);
    margin-top: 8px;
}

.about-features {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--accent-color);
    font-size: 1.1em;
    width: 20px;
}

/* Responsive Design for Table */
@media (max-width: 768px) {
    .releases-table-container {
        overflow-x: auto;
    }

    .releases-table {
        min-width: 600px;
    }

    .releases-table th,
    .releases-table td {
        padding: 12px 16px;
    }

    .checksum-cell {
        max-width: 150px;
        font-size: 0.75em;
    }

    /* About section responsive */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8em;
    }
}

@media (max-width: 600px) {
    .releases-table {
        min-width: 500px;
    }

    .releases-table th,
    .releases-table td {
        padding: 10px 12px;
    }

    .platform-cell {
        gap: 8px;
    }

    .platform-icon {
        width: 20px;
        height: 20px;
        font-size: 1em;
    }

    .checksum-cell {
        max-width: 120px;
        font-size: 0.7em;
    }

    /* About section mobile */
    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-item {
        padding: 16px;
    }

    .about-features {
        padding: 24px;
    }

    .feature-list li {
        padding: 10px 0;
    }
}

/* Responsive design for single screenshot */
@media (max-width: 768px) {
    .product-screenshot {
        padding: 15px;
    }

    .main-screenshot {
        border-radius: 12px;
    }
}

@media (max-width: 600px) {
    .product-screenshot {
        padding: 10px;
    }

    .main-screenshot {
        border-radius: 8px;
    }
}

/* Re
duce spacing between sections */
.features-modern {
    padding: 40px 0 !important;
}

.releases-table-section {
    padding: 40px 0 !important;
}

/* ==
========================================================================
   USE CASES SECTION
   ========================================================================== */

.use-cases-section {
    padding: 80px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #9f7aea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 1.5em;
}

.use-case-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: var(--text-color);
}

.use-case-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.how-it-works-section {
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

.step-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Featured Download Button */
.featured-download {
    background: linear-gradient(135deg, var(--accent-color), #9f7aea) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(66, 153, 225, 0.3) !important;
}

.featured-download:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(66, 153, 225, 0.4) !important;
}

.featured-download .platform-button-info .platform-name,
.featured-download .platform-button-info .platform-type {
    color: white !important;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case-card,
    .step-card {
        padding: 20px;
    }

    .use-case-icon,
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2em;
    }
}

/* ======
====================================================================
   MOBILE APP SCREENSHOT STYLING
   ========================================================================== */

/* Style for phone screenshots - make them smaller and centered */
.product-screenshot .main-screenshot[src*="bulk-renamer-main"] {
    max-width: 300px;
    max-height: 600px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

/* General mobile screenshot styling */
.mobile-screenshot {
    max-width: 300px;
    max-height: 600px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .product-screenshot .main-screenshot[src*="bulk-renamer-main"] {
        max-width: 250px;
        max-height: 500px;
    }

    .mobile-screenshot {
        max-width: 250px;
        max-height: 500px;
    }
}

@media (max-width: 480px) {
    .product-screenshot .main-screenshot[src*="bulk-renamer-main"] {
        max-width: 200px;
        max-height: 400px;
    }

    .mobile-screenshot {
        max-width: 200px;
        max-height: 400px;
    }
}

/* ==
========================================================================
   PREMIUM FEATURES SECTION
   ========================================================================== */

/* Mobile responsiveness for premium features */

/* ========
==================================================================
   MATERIAL ESTIMATORS SECTION
   ========================================================================== */

.material-estimators-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.estimators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.estimator-card {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.estimator-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.estimator-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.estimator-icon i {
    font-size: 1.5em;
    color: white;
}

.estimator-card h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.estimator-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 15px;
}

.estimator-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.estimator-badge.free {
    background: #e8f5e8;
    color: #2e7d32;
}

.estimator-badge.premium {
    background: #fff3e0;
    color: #f57c00;
}

/* ==========================================================================
   WHY CHOOSE SECTION
   ========================================================================== */

.why-choose-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.advantage-icon i {
    font-size: 1.8em;
    color: white;
}

.advantage-card h3 {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .estimators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .estimator-card {
        padding: 25px 20px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 15px;
    }
}

/* =====
=====================================================================
   MATERIAL ESTIMATORS SECTION - Same design as features-modern
   ========================================================================== */

.material-estimators-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.estimators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.estimator-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.estimator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.estimator-card:hover::before {
    opacity: 0.05;
}

.estimator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
}

.estimator-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.estimator-icon i {
    font-size: 2em;
    color: white;
}

.estimator-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.estimator-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.estimator-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.estimator-badge.free {
    background: #e8f5e8;
    color: #2e7d32;
}

.estimator-badge.premium {
    background: #fff3e0;
    color: #f57c00;
}

/* ==========================================================================
   WHY CHOOSE SECTION - Same design as features-modern
   ========================================================================== */

.why-choose-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.advantage-card:hover::before {
    opacity: 0.05;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(76, 175, 80, 0.2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.advantage-icon i {
    font-size: 2em;
    color: white;
}

.advantage-card h3 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Mobile responsiveness for new sections */
@media (max-width: 768px) {
    .estimators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .estimator-card {
        padding: 30px 20px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 20px;
    }
}/* ======
====================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* Mission Section */

/* What We Do Section */

/* Technology Stack Section */

/* Values Section */

/* Contact CTA Section */

/* Active navigation link */
.nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile responsiveness for About page */