/* ============================================
   FlickMood — Differentiated UI Redesign
   Cinematic • Mood-driven • Bento • Dark + Pink #d4364f
   ============================================ */

body.no-aos [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

:root {
    --bg: #08080a;
    --bg-card: #0f0f12;
    --bg-elevated: #16161a;
    --text: #f0f0f2;
    --text-muted: #8a8a92;
    --text-secondary: #8a8a92;
    --accent: #d4364f;
    --accent-hover: #e84a63;
    --accent-glowing: rgba(212, 54, 79, 0.4);
    --accent-soft: rgba(212, 54, 79, 0.12);
    --gold: #d4af37;
    --gold-soft: rgba(212, 175, 55, 0.25);
    --gold-sparkle: rgba(255, 215, 0, 0.6);
    --border: rgba(255, 255, 255, 0.06);
    --radius: 16px;
    --radius-pill: 999px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-sans: 'Outfit', system-ui, sans-serif;
}

body.light-theme {
    --bg: #fafafa;
    --bg-card: #fff;
    --bg-elevated: #fff;
    --text: #141416;
    --text-muted: #5c5c64;
    --border: rgba(0, 0, 0, 0.08);
    --accent-soft: rgba(212, 54, 79, 0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ---------- Background: fireworks & golden decorations ---------- */
.bg-decor {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-decor-firework {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        circle at center,
        var(--gold-soft) 0%,
        rgba(212, 54, 79, 0.08) 25%,
        transparent 55%
    );
    filter: blur(2px);
    opacity: 0.7;
    animation: bg-firework-pulse 6s ease-in-out infinite;
}

.bg-decor-firework--1 { top: 5%; left: 10%; animation-delay: 0s; }
.bg-decor-firework--2 { top: 15%; right: 5%; width: 320px; height: 320px; animation-delay: -2s; }
.bg-decor-firework--3 { bottom: 25%; left: 5%; width: 360px; height: 360px; animation-delay: -4s; }
.bg-decor-firework--4 { bottom: 10%; right: 15%; animation-delay: -1s; }

@keyframes bg-firework-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.bg-decor-sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-sparkle);
    box-shadow: 0 0 12px var(--gold-sparkle), 0 0 24px var(--gold-soft);
    animation: bg-sparkle-twinkle 3s ease-in-out infinite;
}

.bg-decor-sparkle--1 { top: 20%; left: 20%; animation-delay: 0s; }
.bg-decor-sparkle--2 { top: 35%; right: 25%; animation-delay: -0.5s; width: 8px; height: 8px; }
.bg-decor-sparkle--3 { top: 60%; left: 15%; animation-delay: -1s; }
.bg-decor-sparkle--4 { bottom: 30%; right: 20%; animation-delay: -1.5s; width: 5px; height: 5px; }
.bg-decor-sparkle--5 { bottom: 20%; left: 30%; animation-delay: -2s; }
.bg-decor-sparkle--6 { top: 45%; right: 10%; animation-delay: -2.5s; }

@keyframes bg-sparkle-twinkle {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

body.light-theme .bg-decor-firework { opacity: 0.5; }
body.light-theme .bg-decor-sparkle { opacity: 0.7; }

/* ---------- Typography ---------- */
.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 48px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.2s, box-shadow 0.25s var(--ease);
}

.btn:hover { transform: translateY(-2px); }

.btn-pill { border-radius: var(--radius-pill); }

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    box-shadow: 0 8px 28px var(--accent-glowing);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}

.btn-ghost:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
    color: var(--accent);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* Keep main content above background decor */
.hero, section, .footer { position: relative; z-index: 1; }

/* ---------- Nav: minimal pill bar ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav.scrolled {
    background: rgba(8, 8, 10, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--border);
}

body.light-theme .nav.scrolled {
    background: rgba(255, 255, 255, 0.88);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-logo-icon {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.nav-menu a:hover { color: var(--accent); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-theme {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.nav-theme:hover { background: var(--accent-soft); color: var(--accent); }

.nav-theme .light-icon { display: none; }
body.light-theme .nav-theme .dark-icon { display: none; }
body.light-theme .nav-theme .light-icon { display: inline-block; }

.nav-cta {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.nav-cta:hover { background: var(--accent-hover); box-shadow: 0 4px 20px var(--accent-glowing); transform: translateY(-1px); }

.nav-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius);
    background: var(--bg-card);
    color: var(--text);
    font-size: 1.2rem;
    cursor: pointer;
}

.nav-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    padding: 24px;
}

.nav-drawer.open { display: block; }

.nav-drawer ul { list-style: none; }

.nav-drawer a {
    display: block;
    padding: 14px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}

.nav-drawer a:last-child { border-bottom: none; margin-top: 12px; }

/* ---------- Hero: full-screen cinematic ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 24px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 80% at 60% 20%, var(--accent-soft) 0%, transparent 50%),
                radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 54, 79, 0.08) 0%, transparent 50%);
}

.hero-spotlight {
    position: absolute;
    width: 120%;
    height: 80%;
    top: 10%;
    right: -20%;
    background: radial-gradient(ellipse 50% 50% at 70% 50%, rgba(212, 54, 79, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
    animation: orb 12s ease-in-out infinite;
}

.hero-orb-1 { background: var(--accent); top: -150px; right: -100px; }
.hero-orb-2 { background: var(--accent); bottom: -100px; left: -150px; animation-delay: -6s; }

@keyframes orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-title em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 400px;
    margin-bottom: 32px;
    line-height: 1.65;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-device {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-phone {
    width: 430px;
    height: auto;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px var(--border),
                0 0 60px var(--accent-glowing);
    transition: transform 0.4s var(--ease);
}

.hero-phone:hover { transform: scale(1.02) translateY(-4px); }

.hero-phone img { width: 100%; height: auto; display: block; vertical-align: middle; }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

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

/* ---------- Mood: genre tiles ---------- */
.mood {
    padding: 100px 24px;
    background: var(--bg-card);
}

.mood-inner { max-width: 1200px; margin: 0 auto; }

.mood-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.mood-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 48px;
}

.mood-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.mood-tile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 32px 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s var(--ease);
}

.mood-tile:hover {
    transform: translateY(-4px);
    border-color: var(--accent-soft);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mood-tile--large {
    grid-row: span 2;
    justify-content: flex-end;
    padding: 40px 32px;
    background: linear-gradient(160deg, var(--accent-soft) 0%, transparent 60%);
    border-color: rgba(212, 54, 79, 0.2);
}

.mood-tile--accent {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.mood-tile--accent:hover { background: var(--accent-hover); box-shadow: 0 20px 40px var(--accent-glowing); }

.mood-tile-icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.mood-tile--accent .mood-tile-icon { color: rgba(255,255,255,0.9); }

.mood-tile-name {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.mood-tile-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mood-tile--large .mood-tile-desc { margin-top: 8px; }

/* ---------- Features: Bento ---------- */
.features {
    padding: 100px 24px;
    background: var(--bg);
}

.features-inner { max-width: 1200px; margin: 0 auto; }

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

.bento-card {
    padding: 36px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s var(--ease);
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-soft);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.bento-card--wide { grid-column: span 2; }

.bento-num {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.bento-icon {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.bento-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Reviews ---------- */
.reviews {
    padding: 100px 24px;
    background: var(--bg-card);
}

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

.review-spotlight {
    text-align: center;
    padding: 48px 32px;
    margin-bottom: 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.review-spotlight blockquote { margin: 0; }

.review-spotlight p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-style: italic;
    line-height: 1.5;
    color: var(--text);
    margin-bottom: 16px;
}

.review-spotlight footer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 16px;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.review-quote {
    padding: 28px 24px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.review-quote p {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.6;
}

.review-quote span { font-size: 0.85rem; color: var(--text-muted); opacity: 0.9; }

/* ---------- Screenshots: horizontal strip ---------- */
.screenshots {
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}

.screenshots-inner { max-width: 1200px; margin: 0 auto 48px; padding: 0 24px; }

.screens-strip {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 40px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--border);
}

.screens-strip::-webkit-scrollbar { height: 8px; }
.screens-strip::-webkit-scrollbar-track { background: var(--border); border-radius: 4px; }
.screens-strip::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

.screens-track {
    display: flex;
    gap: 24px;
    padding: 0 24px;
    width: max-content;
}

.screen-card {
    flex-shrink: 0;
    width: 260px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.screen-card:hover {
    transform: scale(1.03);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.screen-card img { width: 100%; height: auto; display: block; vertical-align: middle; }

/* ---------- FAQ ---------- */
.faq {
    padding: 100px 24px;
    background: var(--bg-card);
}

.faq-inner { max-width: 640px; margin: 0 auto; }

.faq-list { border-top: 1px solid var(--border); }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
    width: 100%;
    padding: 24px 0;
    text-align: left;
    background: none;
    border: none;
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s;
}

.faq-q:hover { color: var(--accent); }

.faq-q::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease);
}

.faq-item.active .faq-q::after { transform: rotate(180deg); color: var(--accent); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.active .faq-a { max-height: 200px; }

.faq-a p {
    padding: 0 0 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---------- Download CTA ---------- */
.download {
    padding: 100px 24px;
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border);
}

.download-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.download-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.download-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.download-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ---------- Modal ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    padding: 48px 40px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transform: scale(0.95);
    transition: transform 0.3s var(--ease);
}

.modal.open .modal-box { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.modal-close:hover { background: var(--accent-soft); color: var(--accent); }

.modal-icon {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.modal h3 { margin-bottom: 12px; font-size: 1.35rem; }

.modal p { font-size: 0.95rem; color: var(--text-muted); }

/* ---------- Footer ---------- */
.footer {
    padding: 48px 24px 32px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
    text-decoration: none;
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.footer-social a:hover { background: var(--accent); color: #fff; }

.footer-copy {
    width: 100%;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-btns { justify-content: center; }
    .hero-device { order: -1; }

    .mood-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .mood-tile--large { grid-row: span 1; grid-column: span 2; }

    .bento-card--wide { grid-column: span 1; }

    .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions .nav-cta { display: none; }

    .nav-burger { display: flex; align-items: center; justify-content: center; }

    .mood-grid { grid-template-columns: 1fr; }
    .mood-tile--large { grid-column: span 1; }

    .bento { grid-template-columns: 1fr; }
    .bento-card--wide { grid-column: span 1; }

    .download-btns { flex-direction: column; }
    .download-btns .btn { width: 100%; justify-content: center; }

    .footer-inner { flex-direction: column; text-align: center; }
    .footer-copy { text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 88px 20px 60px; }
    .hero-title { font-size: 2.5rem; }
    .hero-phone { width: 390px; }
    .hero-btns { flex-direction: column; width: 100%; }
    .hero-btns .btn { width: 100%; justify-content: center; }

    .mood, .features, .reviews, .screenshots, .faq, .download { padding: 64px 20px; }

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

    .screen-card { width: 220px; }
}
