/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --error: #D32F2F;
    --text: #212121;
    --text-secondary: #666666;
    --bg: #FFFFFF;
    --bg-alt: #F5F5F5;
    --border: #E0E0E0;
    --shadow: rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.logo:hover,
.logo:active,
.logo:visited,
.logo:focus {
    color: var(--primary);
    text-decoration: none;
}

.logo-icon {
    height: 32px;
    width: auto;
    display: block;
    border-radius: 20%;
}

.logo-nav {
    border-radius: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.cta-button {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Language Selector */
.lang-selector {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 16px 0;
}

.lang-selector a {
    font-size: 28px;
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
    display: block;
    line-height: 1;
}

.lang-selector a:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.lang-selector a.active {
    opacity: 1;
    transform: scale(1.15);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

/* Allergen Orbit Container */
.allergen-orbit {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Centro: il piatto protetto */
.plate-center {
    width: 300px;
    height: auto;
    position: relative;
    z-index: 10;
    filter: drop-shadow(0 10px 30px rgba(76, 175, 80, 0.3));
    animation: float-plate 4s ease-in-out infinite;
}

/* Allergeni in posizioni fisse con animazione float */
.allergen-item {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: float-allergen 3s ease-in-out infinite;
}

.allergen-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    opacity: 0.85;
    transition: all 0.3s ease;
}

.allergen-item:hover img,
.allergen-item.selected img {
    opacity: 1;
    transform: scale(1.2);
}

.allergen-item {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
}

/* Easter egg: piatto happy nascosto */
.plate-happy {
    opacity: 0;
    position: absolute;
    z-index: 10;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.allergen-orbit.easter-egg .plate-center:not(.plate-happy) {
    opacity: 0;
    transition: opacity 0.25s ease;
}

.allergen-orbit.easter-egg .plate-happy {
    opacity: 1;
    animation: float-plate-happy 3s ease-in-out infinite;
}

@keyframes float-plate-happy {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.allergen-orbit.easter-egg .allergen-item {
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

/* Posizionamento fisso degli allergeni attorno al piatto */
.allergen-1 { top: 0; left: 50%; transform: translate(-50%, -50%); animation-delay: 0s; }
.allergen-2 { top: 10%; right: 10%; animation-delay: -0.5s; }
.allergen-3 { top: 50%; right: 0; transform: translate(0, -50%); animation-delay: -1s; }
.allergen-4 { bottom: 10%; right: 10%; animation-delay: -1.5s; }
.allergen-5 { bottom: 0; left: 50%; transform: translate(-50%, 0); animation-delay: -2s; }
.allergen-6 { bottom: 10%; left: 10%; animation-delay: -2.5s; }
.allergen-7 { top: 50%; left: 0; transform: translate(0, -50%); animation-delay: -1s; }
.allergen-8 { top: 10%; left: 10%; animation-delay: -0.5s; }

/* Animazione fluttuazione su/giù */
@keyframes float-allergen {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Animazione leggera per il piatto centrale */
@keyframes float-plate {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.hero-title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.button.primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px var(--shadow);
}

.button.primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--shadow);
}

.button.button-yellow {
    background: #FFD600;
    color: #1a1a1a;
    border: none;
    padding: 16px 64px;
}

.button.button-yellow:hover {
    background: #FFC107;
}

.hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 64px;
    flex-wrap: wrap;
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 800px;
    margin: 48px auto 0;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

/* Problem Section */
.problem {
    padding: 80px 0 40px;
    background: var(--bg-alt);
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    text-align: center;
    margin-bottom: 64px;
    color: var(--text);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-secondary);
    margin-top: -48px;
    margin-bottom: 64px;
}

/* Timeline verticale compatta */
.problem-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.timeline-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary);
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    font-size: 40px;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 20px;
    margin-bottom: 6px;
    color: var(--text);
    font-weight: 700;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Features Section */
.features {
    padding: 60px 0 40px;
    background: white;
}

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

.features-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.features-logo {
    width: 120px;
    height: auto;
    border-radius: 20%;
}

.features .section-subtitle {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

/* Feature Highlights */
.feature-highlights {
    margin: 56px auto 0;
    max-width: 900px;
}

@media (min-width: 769px) {
    .feature-highlights {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .feature-highlights {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 24px;
        margin-left: -24px;
        margin-right: -24px;
        scrollbar-width: none; /* Firefox */
        -webkit-overflow-scrolling: touch;
    }

    .feature-highlights::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }
}

.highlight-card {
    padding: 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .highlight-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.highlight-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.highlight-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 700;
}

.highlight-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* How it works */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
}

.steps {
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 24px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    min-width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text);
}

.step-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.cta-centered {
    text-align: center;
    margin-top: 64px;
}

.cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--text);
}

.button-large {
    padding: 18px 40px;
    font-size: 20px;
}

/* Back to Top */
.back-to-top {
    margin-top: 0;
    padding: 10px 24px;
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: 20px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Card Types Carousel */
.card-types {
    padding: 60px 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.card-types-carousel {
    display: flex;
    gap: 16px;
    padding: 8px 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.card-type-badge {
    padding: 20px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.card-type-red {
    background: #FFCDD2;
    border-color: #E53935;
    color: #B71C1C;
}

.card-type-green {
    background: #C8E6C9;
    border-color: #43A047;
    color: #1B5E20;
}

.card-type-pink {
    background: #F8BBD0;
    border-color: #EC407A;
    color: #880E4F;
}

.card-type-grey {
    background: #CFD8DC;
    border-color: #78909C;
    color: #263238;
}

.card-type-yellow {
    background: #FFF9C4;
    border-color: #FDD835;
    color: #F57F17;
}

.card-type-blue {
    background: #B3E5FC;
    border-color: #29B6F6;
    color: #01579B;
}

/* Story Section */
.story {
    padding: 100px 0 35px;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFFFF 100%);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-text {
    max-width: 700px;
}

.story-body {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
}

.story-body p {
    margin-bottom: 24px;
}

.story-intro {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-dark);
}

.story-quote {
    margin-top: 48px;
    padding: 20px 0 20px 20px;
    border-left: 4px solid var(--primary);
    max-width: 600px;
}

.quote-content {
    margin-bottom: 16px;
}

.quote-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
    font-family: Georgia, serif;
}

.quote-text::before {
    content: '"';
    color: var(--primary);
    opacity: 0.5;
    font-size: 20px;
    margin-right: 2px;
}

.quote-text::after {
    content: '"';
    color: var(--primary);
    opacity: 0.5;
    font-size: 20px;
    margin-left: 2px;
}

.quote-signature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    font-style: normal;
    font-weight: 600;
    text-decoration: none;
}

.quote-signature:hover {
    color: var(--primary);
}

.quote-image-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    flex-shrink: 0;
    order: -1;
    overflow: hidden;
}

.quote-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Allergens Preview */
.allergens-preview {
    padding: 35px 0 60px;
    background: white;
    overflow: hidden;
}

.allergens-carousel {
    display: flex;
    gap: 16px;
    padding: 8px 0;
    animation: scroll-carousel 60s linear infinite;
    width: max-content;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.allergen-badge {
    background: var(--primary-light);
    padding: 20px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--primary);
    transition: all 0.3s;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 180px;
}

.allergen-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Download Section */
.download {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.download .section-title,
.download .section-subtitle {
    color: white;
}

.download .section-subtitle {
    margin-bottom: 40px;
}

.download-icon {
    width: 80px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    border-radius: 20%;
}

.download-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-bottom: 32px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.store-text {
    font-size: 12px;
    text-align: left;
}

.store-name {
    font-size: 20px;
    font-weight: 700;
    text-align: left;
}

/* Footer */
.footer {
    background: var(--text);
    color: white;
    padding: 48px 0 32px;
}

.footer-simple {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.footer-simple .logo {
    justify-content: center;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

    .nav-links a:not(.cta-button):not(.nav-support):not(.nav-about) {
        display: none;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        padding: 32px 24px 48px;
        gap: 24px;
        text-align: center;
    }

    .hero-text {
        display: contents;
        text-align: center;
    }

    .hero-title {
        order: 1;
        margin-bottom: 8px;
    }

    .hero-image {
        order: 2;
        min-height: 350px;
    }

    .hero-subtitle {
        order: 3;
        margin-bottom: 16px;
    }

    .hero-stats {
        order: 4;
        margin-top: 0;
        margin-bottom: 20px;
        gap: 48px;
    }

    .stat-label {
        font-size: 16px;
        font-weight: 600;
    }

    .hero-cta {
        order: 5;
        justify-content: center;
        margin-bottom: 0;
        flex-wrap: nowrap;
    }

    .button {
        padding: 14px 20px;
        font-size: 15px;
        white-space: nowrap;
    }

    .allergen-orbit {
        width: 350px;
        height: 350px;
    }

    .plate-center {
        width: 200px;
    }

    .allergen-item {
        width: 60px;
        height: 60px;
    }

    /* Animazione fluttuazione mobile */
    @keyframes float-allergen {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-15px); }
    }

    @keyframes float-plate {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
    }

    .hero-stats {
        gap: 32px;
    }

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

    .step {
        gap: 16px;
        margin-bottom: 32px;
    }

    .step-number {
        min-width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .step-content h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .step-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .story {
        padding: 60px 0 28px;
    }


    .story-body {
        font-size: 16px;
    }

    .story-intro {
        font-size: 18px;
    }

    .features-logo {
        width: 96px;
    }

    .story-quote {
        margin-top: 32px;
        padding: 16px 0 16px 16px;
        max-width: 100%;
    }

    .quote-content {
        margin-bottom: 12px;
    }

    .quote-text {
        font-size: 15px;
    }

    .quote-text::before,
    .quote-text::after {
        font-size: 18px;
    }

    .quote-signature {
        gap: 10px;
        font-size: 14px;
    }

    .quote-image-placeholder {
        width: 40px;
        height: 40px;
    }

    .card-types {
        padding: 40px 0;
    }

    .card-types-carousel {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
    }

    .card-types-carousel::-webkit-scrollbar {
        display: none;
    }

    .card-type-badge {
        padding: 16px 24px;
        font-size: 16px;
        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .allergens-preview {
        padding: 28px 0 48px;
    }

    .allergens-carousel {
        gap: 12px;
        animation: scroll-carousel 50s linear infinite;
    }

    .allergen-badge {
        padding: 16px 24px;
        font-size: 16px;
        min-width: 160px;
    }

    .footer-legal {
        flex-wrap: wrap;
    }

    .problem {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .timeline-item {
        gap: 16px;
        padding: 20px 16px;
        margin-bottom: 12px;
    }

    .timeline-icon {
        font-size: 32px;
        min-width: 40px;
        height: 40px;
    }

    .timeline-content h3 {
        font-size: 18px;
        margin-bottom: 4px;
    }

    .timeline-content p {
        font-size: 15px;
        line-height: 1.5;
    }

    .cta-centered {
        margin-top: 48px;
    }

    .cta-title {
        margin-bottom: 24px;
    }

    .button-large {
        padding: 16px 32px;
        font-size: 18px;
    }

    .download {
        padding: 60px 0 40px;
    }

    .download-buttons {
        gap: 8px;
    }

    .store-button {
        padding: 12px 16px;
        gap: 8px;
    }

    .store-name {
        font-size: 16px;
    }

    .store-text {
        font-size: 10px;
    }

    .features {
        padding: 48px 0 32px;
    }

    .features .section-title {
        margin-bottom: 12px;
    }

    .feature-highlights {
        margin: 40px auto 0;
    }

    .highlight-card {
        padding: 20px;
    }

    .highlight-icon {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .highlight-card h3 {
        font-size: 17px;
        margin-bottom: 6px;
    }

    .highlight-card p {
        font-size: 14px;
    }
}

/* Legal Pages (Privacy, Terms) */
.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.legal-page .last-updated {
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-page p,
.legal-page li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 24px;
}

.legal-page .back-link {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.legal-page .back-link:hover {
    text-decoration: underline;
}

.legal-page .warning-box {
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 20px;
    margin: 24px 0;
    border-radius: 4px;
}

.legal-page .warning-box p {
    margin: 0;
    color: var(--text);
}

.legal-page .divider-line {
    margin: 40px 0;
    border: none;
    border-top: 1px solid #ddd;
}

.legal-page .gdpr-note {
    font-style: italic;
    text-align: center;
    color: #666;
}

.legal-page .footer-note {
    font-weight: bold;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 20px 60px;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-page h2 {
        font-size: 24px;
    }

    .legal-page h3 {
        font-size: 20px;
    }

    .legal-page p,
    .legal-page li {
        font-size: 16px;
    }
}

/* FAQ Section */
.faq {
    padding: 60px 0 80px;
    background: var(--bg);
}

.faq .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 32px;
    padding: 32px;
    background: var(--card-bg, #fff);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary, var(--text));
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.faq-donate-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-donate-link:hover {
    text-decoration: underline;
}

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

    .faq .section-title {
        margin-bottom: 40px;
    }

    .faq-item {
        padding: 24px;
        margin-bottom: 24px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
    }
}
