/* App landing page styles — extracted from app-landing-content.njk */

/* === phLayout: main hero + screenshots + content + footer === */
    .app-landing--ph {
        min-height: 100vh;
        padding-bottom: 60px;
        background: #fff;
    }

    .app-hero--ph {
        background: #fff;
        border-bottom: none;
        padding: 60px 0 50px;
        text-align: center;
    }

    .hero-content--ph {
        max-width: 500px;
        margin: 0 auto;
    }

    .app-landing--ph .app-icon-hero {
        width: 120px;
        height: 120px;
        margin: 0 auto 24px;
        border-radius: 26px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        background: #fff;
    }

    .app-landing--ph .app-icon-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .app-landing--ph .app-title-hero {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -1px;
        color: #1a1a1a;
    }

    .app-landing--ph .app-tagline {
        font-size: 20px;
        color: #666;
        margin-bottom: 32px;
        line-height: 1.5;
    }

    /* Hero CTAs */
    .hero-ctas {
        max-width: 580px;
        margin: 0 auto;
    }

    .hero-ctas-row {
        display: flex;
        gap: 12px;
    }

    .hero-ctas-row > * {
        flex: 1;
    }

    .hero-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        height: 54px;
        padding: 0 20px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 600;
        line-height: 1;
        text-decoration: none;
        box-sizing: border-box;
        transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-btn--primary {
        background: #1a1a1a;
        color: #fff;
        padding: 0 32px;
        font-size: 17px;
    }

    .hero-btn--primary:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    }

    .hero-btn--ph {
        background: #fff;
        color: #1a1a1a;
        padding: 0 24px;
        font-size: 15px;
        border: 1.5px solid #e5e5e5;
    }

    .hero-btn--ph:hover {
        background: #fafafa;
        border-color: #d0d0d0;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .hero-ph-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 !important;
    }

    .hero-ph-badge img {
        display: block;
        width: 250px;
        height: 54px;
    }

    .hero-btn-icon {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    /* Blog Section - separate from CTAs */
    .hero-blog-section {
        margin-top: 32px;
        padding-top: 24px;
        border-top: 1px solid rgba(0,0,0,0.08);
        text-align: center;
    }

    .hero-blog-label {
        display: block;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #888;
        margin-bottom: 12px;
    }

    .hero-blog-card {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        max-width: 560px;
        margin: 0 auto;
        padding: 16px 20px;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.06);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .hero-blog-card:hover {
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-2px);
    }

    .hero-blog-card-main {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        text-align: left;
        min-width: 0;
    }

    .hero-blog-card-icon {
        flex-shrink: 0;
        border-radius: 6px;
        margin-top: 2px;
    }

    .hero-blog-card-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
        min-width: 0;
    }

    .hero-blog-card-title {
        font-size: 15px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.3;
    }

    .hero-blog-card-summary {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-blog-card-stats {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 12px;
        color: #888;
        font-weight: 500;
        margin-top: 4px;
    }

    .hero-blog-card-stats span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .hero-blog-card-arrow {
        font-size: 20px;
        color: #ccc;
        flex-shrink: 0;
        transition: color 0.2s ease;
    }

    .hero-blog-card:hover .hero-blog-card-arrow {
        color: #FF6600;
    }

    .ph-screenshots {
        padding: 40px 0 60px;
        overflow: visible;
        background: #fff;
    }

    .ph-screenshots .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    /* Landscape PH screenshots - 2x2 grid (for Silk) */
    .ph-screenshots-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ph-screenshots-grid img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        display: block;
    }

    /* 3-column grid for Constellation (Vision Pro landscape) */
    .ph-screenshots-grid--3 {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }

    .ph-screenshots-grid--3 img {
        border-radius: 16px;
    }

    /* Wide content for inline showcase (Docket) */
    .ph-content--showcase .container {
        max-width: 1100px;
    }

    .ph-content--showcase .ph-content-inner {
        max-width: none;
        font-size: 16px;
    }

    .feature-row {
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 48px;
        align-items: center;
        padding: 48px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .feature-row:last-of-type {
        border-bottom: none;
    }

    .feature-row--reverse {
        grid-template-columns: 1.4fr 1fr;
    }

    .feature-row--reverse .feature-text {
        order: 2;
    }

    .feature-row--reverse .feature-img {
        order: 1;
    }

    .feature-text h3 {
        font-size: 28px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        margin: 0 0 12px !important;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }

    .feature-text p {
        font-size: 16px;
        line-height: 1.6;
        color: #555;
        margin: 0;
    }

    .feature-img img,
    .showcase-hero img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        display: block;
        cursor: zoom-in;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .feature-img img:hover,
    .showcase-hero img:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

    /* Lightbox */
    .lightbox-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: zoom-out;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
        padding: 32px;
    }

    .lightbox-overlay.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    .lightbox-overlay img {
        max-width: 100%;
        max-height: 100%;
        border-radius: 12px;
        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4);
        object-fit: contain;
    }

    .showcase-hero {
        text-align: center;
        padding: 48px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .showcase-hero img {
        width: 100%;
        max-width: 900px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
        display: block;
        margin: 0 auto;
    }

    .showcase-footer {
        text-align: center;
        padding: 48px 0 24px;
        max-width: 560px;
        margin: 0 auto;
    }

    .showcase-footer h3 {
        font-size: 24px !important;
        font-weight: 700 !important;
        color: #1a1a1a !important;
        margin: 0 0 12px !important;
    }

    .showcase-footer p {
        font-size: 15px;
        line-height: 1.6;
        color: #666;
        margin: 0 0 12px;
    }

    .showcase-intro {
        text-align: center;
        max-width: 640px;
        margin: 0 auto;
        padding: 24px 0 12px;
    }

    .showcase-intro p {
        font-size: 17px;
        line-height: 1.65;
        color: #555;
        margin: 0;
    }

    @media (max-width: 768px) {
        .feature-row,
        .feature-row--reverse {
            grid-template-columns: 1fr;
            gap: 24px;
            padding: 32px 0;
        }

        .feature-row--reverse .feature-text {
            order: 1;
        }

        .feature-row--reverse .feature-img {
            order: 2;
        }

        .feature-text h3 {
            font-size: 22px !important;
        }

        .showcase-intro p {
            font-size: 15px;
        }
    }

    /* Portrait App Store screenshots - horizontal carousel */
    .ph-screenshots-carousel {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding-bottom: 16px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .ph-screenshots-carousel::-webkit-scrollbar {
        height: 6px;
    }

    .ph-screenshots-carousel::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .ph-screenshots-carousel::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }

    .ph-screenshots-carousel img {
        flex: 0 0 auto;
        width: 220px;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        scroll-snap-align: start;
    }

    /* Content section - minimal */
    .ph-content {
        padding: 32px 0;
        background: #fff;
    }

    .ph-content .container {
        max-width: 600px;
    }

    .ph-content-inner {
        font-size: 14px;
        line-height: 1.6;
        color: #555;
    }

    .ph-content-inner h3 {
        font-size: 14px;
        font-weight: 500;
        color: #333;
        margin: 20px 0 8px;
    }

    .ph-content-inner h3:first-child {
        margin-top: 0;
    }

    .ph-content-inner p {
        margin: 0 0 12px;
    }

    .ph-content-inner ul, .ph-content-inner ol {
        margin: 0 0 12px 16px;
        padding: 0;
    }

    .ph-content-inner li {
        margin-bottom: 4px;
    }

    .ph-content-inner strong {
        font-weight: 500;
    }

    .ph-content-inner em {
        font-style: normal;
    }

    .ph-footer {
        padding: 24px 0 40px;
        background: #fafafa;
    }

    .ph-footer-links {
        text-align: center;
    }

    .ph-footer-links .link-secondary {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }

    .ph-footer-links .link-secondary:hover {
        color: #1a1a1a;
        text-decoration: underline;
    }

    .link-separator {
        color: #ccc;
        margin: 0 12px;
    }

    @media (max-width: 768px) {
        .app-hero--ph {
            padding: 32px 20px 24px;
        }

        .app-landing--ph .app-icon-hero {
            width: 80px;
            height: 80px;
            margin-bottom: 16px;
            border-radius: 18px;
        }

        .app-landing--ph .app-title-hero {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .app-landing--ph .app-tagline {
            font-size: 16px;
            margin-bottom: 20px;
        }

        .hero-ctas {
            max-width: none;
        }

        .hero-ctas-row {
            flex-direction: column;
            gap: 10px;
        }

        .hero-btn {
            padding: 0 16px;
            font-size: 14px;
        }

        .hero-btn--primary {
            padding: 0 20px;
            font-size: 15px;
        }

        .hero-blog-section {
            margin-top: 24px;
            padding-top: 20px;
        }

        .hero-blog-card {
            padding: 14px 16px;
        }

        .hero-blog-card-title {
            font-size: 14px;
        }

        .hero-blog-card-summary {
            font-size: 12px;
        }

        .hero-blog-card-stats {
            font-size: 11px;
        }

        .ph-screenshots {
            padding: 24px 0;
        }

        .ph-screenshots .container {
            padding: 0 16px;
        }

        .ph-screenshots-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .ph-screenshots-grid img {
            border-radius: 10px;
        }

        .ph-screenshots-carousel img {
            width: 180px;
            border-radius: 12px;
        }

        .ph-screenshots-grid--3 {
            grid-template-columns: 1fr;
        }

        .ph-content {
            padding: 24px 0;
        }

        .ph-content-inner {
            font-size: 13px;
        }

        .ph-footer {
            padding: 16px 0 32px;
        }
    }


/* === phLayout: FAQ === */
        .app-faq { padding: 32px 0 48px; background: #fafafa; }
        .app-faq .container { max-width: 720px; padding: 0 24px; }
        .app-faq-heading { font-size: 22px; font-weight: 700; color: #1a1a1a; margin: 0 0 20px; }
        .app-faq-list { display: flex; flex-direction: column; gap: 4px; }
        .app-faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
        .app-faq-item:last-child { border-bottom: none; }
        .app-faq-q {
            font-size: 15px;
            font-weight: 600;
            color: #1a1a1a;
            padding: 14px 24px 14px 0;
            cursor: pointer;
            list-style: none;
            position: relative;
        }
        .app-faq-q::-webkit-details-marker { display: none; }
        .app-faq-q::after {
            content: '+';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 20px;
            font-weight: 400;
            color: #888;
            transition: transform 0.2s ease;
        }
        .app-faq-item[open] .app-faq-q::after { transform: translateY(-50%) rotate(45deg); }
        .app-faq-a {
            font-size: 14.5px;
            color: #555;
            line-height: 1.6;
            padding: 0 0 16px;
        }
        .app-faq-a p { margin: 0 0 8px; }
        .app-faq-a p:last-child { margin: 0; }
        @media (max-width: 768px) {
            .app-faq { padding: 24px 0 32px; }
            .app-faq-heading { font-size: 19px; }
            .app-faq-q { font-size: 14px; padding: 12px 24px 12px 0; }
            .app-faq-a { font-size: 13.5px; }
        }

/* === Standard landing: main === */
    .app-landing {
        min-height: 100vh;
        padding-bottom: 80px;
    }

    .app-hero {
        background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
        border-bottom: 1px solid var(--lighter-gray);
        padding: 80px 0;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .app-icon-hero {
        width: 120px;
        height: 120px;
        margin: 0 auto 24px;
        border-radius: 26px;
        overflow: hidden;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        background: var(--white);
    }

    .app-icon-hero img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .app-icon-placeholder {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        font-weight: 700;
        color: var(--accent);
        background: var(--off-white);
    }

    .app-title-hero {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 16px;
        letter-spacing: -1px;
        color: var(--black);
    }

    .app-tagline {
        font-size: 20px;
        color: var(--medium-gray);
        margin-bottom: 32px;
        line-height: 1.5;
    }

    .app-actions {
        display: flex;
        gap: 16px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .btn-primary {
        background: var(--black);
        color: var(--white);
    }

    .btn-primary:hover {
        background: var(--dark-gray);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .btn-secondary {
        background: var(--white);
        color: var(--black);
        border: 2px solid var(--lighter-gray);
    }

    .btn-secondary:hover {
        border-color: var(--black);
        transform: translateY(-2px);
    }

    .btn-icon {
        width: 20px;
        height: 20px;
    }

    .ph-badge {
        display: flex;
    }

    .ph-badge img {
        display: block;
    }

    /* Blog callout for standard layout */
    .blog-callout-standard {
        padding: 32px 0;
        background: #f8f8f8;
        margin-top: 40px;
    }

    .blog-callout-card-std {
        display: block;
        max-width: 600px;
        margin: 0 auto;
        padding: 24px 32px;
        background: #fff;
        border: 1px solid #e5e5e5;
        border-radius: 12px;
        text-decoration: none;
        text-align: center;
        transition: all 0.2s ease;
    }

    .blog-callout-card-std:hover {
        border-color: #ff6600;
        box-shadow: 0 4px 20px rgba(255, 102, 0, 0.1);
        transform: translateY(-2px);
    }

    .callout-badge-std {
        display: inline-block;
        padding: 4px 12px;
        background: #ff6600;
        color: white;
        font-size: 12px;
        font-weight: 600;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 12px;
    }

    .blog-callout-card-std h3 {
        font-size: 22px;
        color: #1a1a1a;
        margin-bottom: 8px;
    }

    .callout-stats-std {
        font-size: 14px;
        color: #888;
        margin-bottom: 12px;
    }

    .callout-link-std {
        font-size: 14px;
        color: #ff6600;
        font-weight: 500;
    }

    @media (max-width: 768px) {
        .blog-callout-standard {
            padding: 20px 0;
        }

        .blog-callout-card-std {
            padding: 16px 20px;
            margin: 0 16px;
            border-radius: 10px;
        }

        .blog-callout-card-std h3 {
            font-size: 16px;
        }
    }

    .app-features {
        margin-top: 80px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
    }

    .screenshots-section {
        position: sticky;
        top: 100px;
    }

    .app-screenshot-single,
    .screenshots-carousel img {
        width: 100%;
        max-width: 400px;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: 1px solid var(--lighter-gray);
    }

    .screenshots-carousel {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 20px;
        scroll-snap-type: x mandatory;
    }

    .screenshots-carousel img {
        flex: 0 0 300px;
        scroll-snap-align: center;
    }

    .features-content h2 {
        font-size: 32px;
        margin-bottom: 24px;
        color: var(--black);
    }

    .features-content h3 {
        font-size: 20px;
        margin-top: 32px;
        margin-bottom: 12px;
        color: var(--dark-gray);
    }

    .features-content ul {
        margin-left: 24px;
        margin-bottom: 24px;
    }

    .features-content li {
        margin-bottom: 8px;
        color: var(--dark-gray);
    }

    .app-links {
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--lighter-gray);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

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

    .link-secondary:hover {
        color: var(--dark-gray);
        text-decoration: underline;
    }

    /* New Layout Styles for Multiple Screenshots */
    .app-content-wrapper {
        margin-top: 80px;
        padding: 0 20px;
    }

    /* Mobile Carousel */
    .mobile-screenshots-carousel {
        display: none;
        margin-bottom: 48px;
        overflow: hidden;
    }

    .carousel-container {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 20px;
    }

    .carousel-container::-webkit-scrollbar {
        height: 6px;
    }

    .carousel-container::-webkit-scrollbar-track {
        background: var(--lighter-gray);
        border-radius: 3px;
    }

    .carousel-container::-webkit-scrollbar-thumb {
        background: var(--medium-gray);
        border-radius: 3px;
    }

    .carousel-container .app-screenshot {
        flex: 0 0 280px;
        height: auto;
        max-height: 600px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        scroll-snap-align: center;
        object-fit: cover;
    }

    /* Desktop Scattered Layout */
    .desktop-layout {
        display: flex;
        gap: 60px;
        align-items: flex-start;
        position: relative;
        max-width: 1400px;
        margin: 0 auto;
    }

    .features-content {
        flex: 0 0 400px;
        position: sticky;
        top: 100px;
        height: fit-content;
    }

    .screenshots-grid {
        flex: 1;
        position: relative;
        min-height: 2000px;
    }

    .screenshot-item {
        position: absolute;
    }

    .screenshot-item img {
        width: 280px;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Create a dynamic scattered effect */
    .screenshot-1 {
        top: 0;
        left: 10%;
        transform: rotate(-3deg);
    }
    .screenshot-2 {
        top: 100px;
        right: 5%;
        transform: rotate(2deg);
        z-index: 2;
    }
    .screenshot-3 {
        top: 350px;
        left: 0;
        transform: rotate(-1deg);
    }
    .screenshot-4 {
        top: 450px;
        right: 15%;
        transform: rotate(3deg);
        z-index: 3;
    }
    .screenshot-5 {
        top: 750px;
        left: 20%;
        transform: rotate(-2deg);
    }
    .screenshot-6 {
        top: 900px;
        right: 0;
        transform: rotate(1deg);
        z-index: 2;
    }
    .screenshot-7 {
        top: 1200px;
        left: 5%;
        transform: rotate(2deg);
    }
    .screenshot-8 {
        top: 1350px;
        right: 10%;
        transform: rotate(-1deg);
    }

    /* Layout for apps with few screenshots (1-3) or landscape images */
    .screenshots-grid--few {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .screenshots-grid--few .screenshot-item {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .screenshots-grid--few .screenshot-item img {
        width: 100%;
        max-width: 700px;
        border-radius: 16px;
    }

    @media (max-width: 1200px) {
        .desktop-layout {
            flex-direction: column;
            gap: 48px;
        }

        .features-content {
            position: relative;
            top: auto;
            flex: 1;
            max-width: 100%;
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            min-height: auto;
        }

        .screenshot-item {
            position: relative !important;
            top: auto !important;
            left: auto !important;
            right: auto !important;
            transform: none !important;
        }

        .screenshot-item img {
            width: 100%;
        }

        /* Keep few-screenshots in single column on tablet */
        .screenshots-grid--few {
            display: flex;
            flex-direction: column;
            grid-template-columns: none;
        }

        .screenshots-grid--few .screenshot-item img {
            max-width: 100%;
        }
    }

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

        .app-title-hero {
            font-size: 36px;
        }

        .app-tagline {
            font-size: 18px;
        }

        .app-features {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .screenshots-section {
            position: relative;
            top: auto;
        }

        .app-actions {
            flex-direction: column;
            align-items: stretch;
        }

        .btn {
            justify-content: center;
        }

        /* Show mobile carousel, hide desktop grid */
        .mobile-screenshots-carousel {
            display: block;
        }

        .desktop-layout {
            display: block;
        }

        .screenshots-grid {
            display: none;
        }

        .features-content {
            padding: 0 20px;
        }
    }

/* === Standard landing: FAQ === */
            .app-faq--standard { max-width: 720px; margin: 64px auto 0; padding: 0 20px; }
            .app-faq--standard .app-faq-heading { font-size: 24px; font-weight: 700; color: var(--black); margin: 0 0 20px; }
            .app-faq--standard .app-faq-list { display: flex; flex-direction: column; gap: 4px; }
            .app-faq--standard .app-faq-item { border-bottom: 1px solid var(--lighter-gray); }
            .app-faq--standard .app-faq-item:last-child { border-bottom: none; }
            .app-faq--standard .app-faq-q {
                font-size: 15px; font-weight: 600; color: var(--black);
                padding: 14px 24px 14px 0; cursor: pointer; list-style: none; position: relative;
            }
            .app-faq--standard .app-faq-q::-webkit-details-marker { display: none; }
            .app-faq--standard .app-faq-q::after {
                content: '+'; position: absolute; right: 0; top: 50%;
                transform: translateY(-50%); font-size: 20px; color: var(--medium-gray);
                transition: transform 0.2s ease;
            }
            .app-faq--standard .app-faq-item[open] .app-faq-q::after { transform: translateY(-50%) rotate(45deg); }
            .app-faq--standard .app-faq-a {
                font-size: 14.5px; color: var(--dark-gray); line-height: 1.6; padding: 0 0 16px;
            }
            .app-faq--standard .app-faq-a p { margin: 0 0 8px; }
            .app-faq--standard .app-faq-a p:last-child { margin: 0; }
