﻿.lares-app-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    align-items: center;
}

@@media (min-width: 900px) {
    .lares-app-hero {
        grid-template-columns: 1fr 1fr;
    }
}

/* GPS example callout */
.app-gps-example {
    background: var(--color-white);
    border: 1px solid var(--color-cream-dark);
    border-left: 3px solid var(--color-terracotta);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.app-gps-badge {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-terracotta);
}

.app-gps-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--text-base);
    color: var(--color-dark);
    line-height: 1.6;
}

/* Phone frame mock */
.lares-app-mock {
    display: flex;
    justify-content: center;
}

.app-phone-frame {
    background: #111;
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.08);
    width: 100%;
    max-width: 18rem;
    position: relative;
}

.app-phone-notch {
    width: 6rem;
    height: 1.25rem;
    background: #111;
    border-radius: var(--radius-full);
    margin: 0 auto 0.5rem;
    position: relative;
    z-index: 1;
}

.app-screen {
    background: linear-gradient(160deg, #1a1008 0%, #2d1a06 60%, #3d2410 100%);
    border-radius: 2rem;
    padding: var(--space-4) var(--space-4) var(--space-4);
    min-height: 28rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    overflow: hidden;
}

.app-screen-location {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.app-loc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-terracotta);
    box-shadow: 0 0 6px var(--color-terracotta);
    flex-shrink: 0;
}

.app-char-mock {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    margin: var(--space-2) 0;
}

.app-char-figure {
    font-size: 3rem;
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(201,168,76,0.12);
    border: 2px solid rgba(201,168,76,0.35);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-char-label {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .app-char-label strong {
        color: var(--color-dark);
        font-family: var(--font-display);
        font-size: var(--text-base);
    }

    .app-char-label span {
        font-size: var(--text-xs);
        color: var(--color-gold);
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

.app-bubble {
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-xs);
    line-height: 1.5;
    max-width: 88%;
}

.app-bubble--char {
    background: rgba(255,255,255,0.1);
    color: var(--color-cream);
    font-style: italic;
    font-family: var(--font-display);
    align-self: flex-start;
}

.app-bubble--user {
    background: var(--color-terracotta);
    color: var(--color-white);
    align-self: flex-end;
    transition-delay: 0.15s;
}

.app-credits-bar {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: auto;
    transition-delay: 0.25s;
}

.app-credits-track {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.app-credits-fill {
    height: 100%;
    width: 42%;
    background: var(--color-gold);
    border-radius: var(--radius-full);
}

.app-input-mock {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-full);
    padding: var(--space-2) var(--space-3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition-delay: 0.35s;
}

.app-input-placeholder {
    font-size: var(--text-xs);
    color: rgba(255,255,255,0.35);
}

.app-mic-btn {
    font-size: 1rem;
    background: var(--color-terracotta);
    width: 1.75rem;
    height: 1.75rem;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Compare grid */
.lares-compare-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

@@media (min-width: 640px) {
    .lares-compare-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.lares-compare-col {
    background: var(--color-white);
    border: 1px solid var(--color-cream-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-8) var(--space-6);
}

.lares-compare-col--app {
    border-top: 3px solid var(--color-terracotta);
}

.lares-compare-col--kiosk {
    border-top: 3px solid var(--color-gold);
}

.lares-compare-header {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.lares-compare-icon {
    font-size: 2rem;
}

.lares-compare-header h3 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 500;
    color: var(--color-dark);
}

.lares-compare-tag {
    font-size: var(--text-xs);
    color: var(--color-mid);
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
}

.lares-compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

    .lares-compare-list li {
        font-size: var(--text-sm);
        color: var(--color-mid);
        padding-left: var(--space-6);
        position: relative;
    }

        .lares-compare-list li::before {
            content: '—';
            position: absolute;
            left: 0;
            color: var(--color-gold);
            font-weight: 500;
        }

/* Hero text */
.lares-app-hero-text .lares-h2 {
    display: inline-block;
}

.lares-app-hero-text > p {
    color: var(--color-mid);
    line-height: 1.75;
    margin-top: var(--space-4);
}

.app-gps-attribution {
    font-size: var(--text-xs);
    color: var(--color-gold);
}

.app-hero-cta {
    margin-top: var(--space-8);
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Phone mock labels */
.app-loc-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.5);
}

.app-credits-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
}

.app-credits-value {
    font-size: var(--text-xs);
    color: var(--color-gold);
}

/* ============================================================
   ICONE LINE-ART (stesso stile SVG di home/for-whom).
   Sostituiscono le vecchie emoji; lo stroke usa currentColor.
   Sfondo pagina sempre scuro (#111) → stroke avorio (--color-dark),
   tranne il tasto mic che ha fondo avorio → stroke scuro.
   ============================================================ */

/* GPS badge: pin inline accanto al testo */
.app-gps-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
}

    .app-gps-badge svg {
        width: 1.15em;
        height: 1.15em;
    }

/* Card sezione GPS (riusa .problem-card-icon, qui senza home.css) */
.problem-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    color: var(--color-dark);
    transition: var(--transition-base);
}

    .problem-card-icon svg {
        display: block;
        width: 100%;
        height: 100%;
    }

.problem-card:hover .problem-card-icon {
    color: var(--color-accent-hero);
}

/* Confronto App vs Totem */
.lares-compare-icon {
    display: block;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--color-dark);
}

    .lares-compare-icon svg {
        display: block;
        width: 100%;
        height: 100%;
    }

/* Mock telefono: figura personaggio (avatar) */
.app-char-figure svg {
    width: 2.6rem;
    height: 2.6rem;
}

/* Mock telefono: tasto microfono — fondo avorio, stroke scuro */
.app-mic-btn {
    color: var(--color-cream);
}

    .app-mic-btn svg {
        width: 1.05rem;
        height: 1.05rem;
    }

/* Section headers */
.app-section-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.app-section-header .lares-h2,
.howitworks-header .lares-h2 {
    display: inline-block;
}

.app-section-intro {
    color: var(--color-mid);
    max-width: 52ch;
    margin: var(--space-4) auto 0;
}

/* Problem cards staggered reveal */
.problem-cards .problem-card:nth-child(2) { transition-delay: 0.1s; }
.problem-cards .problem-card:nth-child(3) { transition-delay: 0.2s; }
.problem-cards .problem-card:nth-child(4) { transition-delay: 0.3s; }

/* Compare grid */
.lares-compare-col--kiosk {
    transition-delay: 0.15s;
}

.app-compare-cta {
    text-align: center;
    margin-top: var(--space-10);
}

/* CTA finale */
.app-cta-container {
    text-align: center;
    padding-top: var(--space-8);
    padding-bottom: var(--space-8);
}

.app-cta-container .lares-h2 {
    display: inline-block;
    margin-bottom: var(--space-4);
}

.app-cta-container > p {
    color: var(--color-mid);
    max-width: 44ch;
    margin: 0 auto var(--space-8);
}
