/* ============================================
   ZASTOSOWANIA PAGE - Page-specific styles
   ============================================ */

/* ============================================
   PAGE HERO - MOBILE FIRST
   ============================================ */

.page-hero {
    position: relative;
    padding: 100px 0 60px;
    background: var(--gray-900);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 80%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23009de1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    color: var(--primary);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 0.95;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero-title span {
    color: var(--primary);
}

.page-hero-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-400);
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--gray-600);
}

.breadcrumb-current {
    color: var(--white);
}

/* ============================================
   APPLICATIONS INTRO - MOBILE FIRST
   ============================================ */

.apps-intro {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.apps-intro-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apps-intro-content .section-title {
    margin-bottom: 20px;
}

.apps-intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
}

.apps-intro-text + .apps-intro-text {
    margin-top: 16px;
}

.apps-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.apps-intro-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    text-align: center;
    position: relative;
}

.apps-intro-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.apps-intro-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--primary);
    line-height: 1;
}

.apps-intro-stat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-600);
    margin-top: 8px;
}

.apps-intro-visual {
    position: relative;
    height: 280px;
}

.apps-intro-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-400) 100%);
    background-size: cover;
    background-position: center;
}

.apps-intro-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-yellow), var(--accent-orange), var(--accent-red));
}

.apps-intro-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apps-intro-floating {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    background: var(--primary-gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.apps-intro-floating-icon {
    width: 40px;
    height: 40px;
    color: var(--white);
    margin-bottom: 8px;
}

.apps-intro-floating span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
}

/* ============================================
   APPLICATIONS GRID - MOBILE FIRST
   ============================================ */

.apps-section {
    padding: var(--section-gap) 0;
    background: var(--gray-50);
}

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

.apps-section-header .accent-bars {
    margin: 0 auto 16px;
}

.apps-section-header p {
    font-size: 15px;
    color: var(--gray-600);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.apps-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
}

.app-card {
    position: relative;
    background: var(--white);
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-yellow), var(--accent-orange), var(--accent-red));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    z-index: 2;
}

.app-card:hover::before,
.app-card:active::before {
    transform: scaleY(1);
}

.app-card-image {
    height: 200px;
    min-height: 200px;
    background: var(--gray-200);
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
}

.app-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.app-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.app-card-content {
    padding: 28px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.app-card-icon {
    width: 52px;
    height: 52px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.app-card:hover .app-card-icon {
    background: var(--primary);
}

.app-card-icon svg {
    width: 26px;
    height: 26px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.app-card:hover .app-card-icon svg {
    color: var(--white);
}

.app-card-title {
    font-family: var(--font-display);
    font-size: 26px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.app-card-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
    flex: 1;
}

.app-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.app-card-feature {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-50);
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-card-feature svg {
    width: 12px;
    height: 12px;
    color: var(--primary);
}

.app-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    transition: gap 0.3s ease;
}

.app-card-link:hover {
    gap: 12px;
}

.app-card-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   FEATURED APPLICATION - MOBILE FIRST
   ============================================ */

.featured-app {
    padding: var(--section-gap) 0;
    background: var(--gray-900);
    position: relative;
    overflow: hidden;
}

.featured-app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
}

.featured-app-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.featured-app-content .section-label {
    color: var(--primary);
}

.featured-app-content .section-title {
    color: var(--white);
    margin-bottom: 24px;
}

.featured-app-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-400);
}

.featured-app-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.featured-app-highlight {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--primary);
}

.featured-app-highlight-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.featured-app-highlight-icon svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

.featured-app-highlight-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.featured-app-highlight-content p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
}

.featured-app-buttons {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.featured-app-buttons .btn {
    width: 100%;
}

.featured-app-visual {
    position: relative;
    height: 320px;
}

.featured-app-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a3a5c 0%, #0d2137 100%);
    background-size: cover;
    background-position: center;
}

.featured-app-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange), var(--accent-red));
}

.featured-app-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-app-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--white);
}

.featured-app-badge span {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.featured-app-badge strong {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1;
}

/* ============================================
   PRODUCTS SHOWCASE - MOBILE FIRST
   ============================================ */

.products-showcase {
    padding: var(--section-gap) 0;
    background: var(--gray-50);
}

.products-showcase-header {
    margin-bottom: 32px;
}

.products-showcase-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.showcase-product {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    margin-top: -1px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.showcase-product:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 1;
}

.showcase-product-image {
    height: 180px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-product-image svg {
    width: 64px;
    height: 64px;
    color: var(--gray-300);
}

.showcase-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-product-content {
    padding: 24px;
}

.showcase-product-title {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.showcase-product-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 16px;
}

.showcase-product-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.showcase-product-app {
    padding: 4px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   TABLET BREAKPOINT (min-width: 640px)
   ============================================ */

@media (min-width: 640px) {
    /* Page Hero */
    .page-hero {
        padding: 140px 0 80px;
    }

    .page-hero-title {
        font-size: 64px;
    }

    /* Apps Intro */
    .apps-intro-visual {
        height: 350px;
    }

    .apps-intro-floating {
        width: 140px;
        height: 140px;
    }

    /* Apps Grid */
    .apps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-items: stretch;
    }

    /* Featured App */
    .featured-app-buttons {
        flex-direction: row;
    }

    .featured-app-buttons .btn {
        width: auto;
    }

    /* Products Showcase */
    .products-showcase-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .showcase-product {
        margin: -1px 0 0 -1px;
    }
}

/* ============================================
   DESKTOP BREAKPOINT (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
    /* Page Hero */
    .page-hero {
        padding: 200px 0 100px;
    }

    .page-hero-title {
        font-size: 80px;
    }

    .page-hero-desc {
        font-size: 18px;
    }

    /* Apps Intro */
    .apps-intro-grid {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .apps-intro-content {
        flex: 1;
    }

    .apps-intro-visual {
        flex: 0 0 500px;
        height: 450px;
    }

    .apps-intro-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Apps Grid */
    .apps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .app-card-image {
        height: 220px;
        min-height: 220px;
    }

    /* Featured App */
    .featured-app-grid {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .featured-app-content {
        flex: 1;
    }

    .featured-app-visual {
        flex: 0 0 500px;
        height: 500px;
    }

    /* Products Showcase */
    .products-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   LARGE DESKTOP (min-width: 1280px)
   ============================================ */

@media (min-width: 1280px) {
    .page-hero-title {
        font-size: 96px;
    }

    .apps-intro-visual {
        flex: 0 0 550px;
    }

    .featured-app-visual {
        flex: 0 0 600px;
    }
}

/* ============================================
   SUBPAGE SECTIONS - Intro, Benefits, Products, Specs
   ============================================ */

/* Intro Section */
.intro {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.intro-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.intro-content .section-title {
    margin-bottom: 24px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
}

.intro-text + .intro-text {
    margin-top: 16px;
}

.intro-highlight {
    margin-top: 32px;
    padding: 24px;
    background: var(--gray-50);
    border-left: 4px solid var(--primary);
}

.intro-highlight p {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-800);
    font-style: italic;
    line-height: 1.7;
}

.intro-visual {
    position: relative;
    height: 300px;
}

.intro-img {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4a4a4a 0%, #2d2d2d 100%);
    background-size: cover;
    background-position: center;
}

.intro-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-yellow), var(--accent-orange), var(--accent-red));
}

.intro-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    padding: 20px;
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.intro-badge-num {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
}

.intro-badge-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

/* Benefits Section */
.benefits {
    padding: var(--section-gap) 0;
    background: var(--gray-50);
}

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

.benefits-header .accent-bars {
    margin: 0 auto 16px;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-card {
    display: flex;
    gap: 20px;
    padding: 28px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--primary);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-icon svg {
    color: var(--white);
}

.benefit-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.benefit-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Products Section (subpage) */
.products {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.products .products-header {
    margin-bottom: 32px;
}

.products .products-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    margin-top: -1px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 1;
}

.product-card-image {
    height: 200px;
    background: var(--gray-200);
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-yellow), var(--accent-orange), var(--accent-red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-card-image::after {
    opacity: 1;
}

.product-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    align-self: flex-start;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.product-card-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    flex: 1;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}

.product-card-link svg {
    width: 16px;
    height: 16px;
}

/* Specs Section */
.specs {
    padding: var(--section-gap) 0;
    background: var(--gray-900);
    color: var(--white);
    position: relative;
}

.specs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
}

.specs-header {
    margin-bottom: 40px;
}

.specs-header .section-label {
    color: var(--primary);
}

.specs-header .section-title {
    color: var(--white);
}

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

.spec-card {
    padding: 24px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.spec-card-value {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.spec-card-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray-400);
}

/* CTA Section */
.cta {
    padding: 48px 0;
    background: var(--primary-gradient);
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--accent-yellow) 33%, var(--accent-orange) 33% 66%, var(--accent-red) 66%);
}

.cta-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    margin-top: 12px;
}

.cta .btn {
    width: 100%;
}

/* ============================================
   SUBPAGE RESPONSIVE - TABLET (min-width: 640px)
   ============================================ */

@media (min-width: 640px) {
    .intro-visual {
        height: 400px;
    }

    .intro-badge {
        padding: 24px 32px;
    }

    .intro-badge-num {
        font-size: 48px;
    }

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

    /* Benefits grid responsive to count - tablet */
    .benefits-grid--count-1 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .benefits-grid--count-2,
    .benefits-grid--count-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .benefits-grid--count-3,
    .benefits-grid--count-5,
    .benefits-grid--count-6 {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .product-card {
        margin: -1px 0 0 -1px;
    }

    .specs-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .cta .btn {
        width: auto;
    }
}

/* ============================================
   SUBPAGE RESPONSIVE - DESKTOP (min-width: 1024px)
   ============================================ */

@media (min-width: 1024px) {
    .intro-grid {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }

    .intro-content {
        flex: 1;
    }

    .intro-visual {
        flex: 0 0 480px;
        height: 400px;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Benefits grid responsive to count - desktop overrides */
    .benefits-grid--count-1 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .benefits-grid--count-2,
    .benefits-grid--count-4 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .benefits-grid--count-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .benefits-grid--count-5,
    .benefits-grid--count-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .products .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
