/* Mars Defence Site - Premium Redesign */
:root {
    --bg-0: #070912;
    --bg-1: #0c1020;
    --bg-2: #12172a;
    --panel: rgba(255, 255, 255, 0.06);
    --panel-strong: rgba(14, 18, 31, 0.84);
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --text: #f5f7ff;
    --muted: #b0b8d2;
    --muted-2: #8d96b6;
    --accent: #f2d271;
    --accent-2: #a63d39;
    --accent-3: #5d7cfa;
    --shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
    --shadow-soft: 0 14px 30px rgba(0, 0, 0, 0.26);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
}

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

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 10%, rgba(242, 210, 113, 0.16), transparent 26%),
        radial-gradient(circle at 84% 16%, rgba(93, 124, 250, 0.18), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(166, 61, 57, 0.16), transparent 30%),
        linear-gradient(180deg, var(--bg-2) 0%, var(--bg-1) 38%, var(--bg-0) 100%);
    overflow-x: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

body::before {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 88%);
    opacity: 0.45;
}

body::after {
    background:
        radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.1), transparent 2px),
        radial-gradient(circle at 68% 12%, rgba(255, 255, 255, 0.08), transparent 1.5px),
        radial-gradient(circle at 82% 28%, rgba(255, 255, 255, 0.1), transparent 2px),
        radial-gradient(circle at 14% 58%, rgba(255, 255, 255, 0.08), transparent 1.5px),
        radial-gradient(circle at 58% 78%, rgba(255, 255, 255, 0.08), transparent 1.5px);
    opacity: 0.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.nav-bar {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    pointer-events: auto;
    max-width: calc(100% - 28px);
    --nav-chip-size: 52px;
}

.nav-home {
    flex: 0 0 auto;
    align-self: center;
    width: var(--nav-chip-size);
    height: var(--nav-chip-size);
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(8, 10, 18, 0.66);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #fff4c7;
    transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, transform 180ms ease;
}

.nav-home:hover {
    background: rgba(10, 13, 23, 0.86);
    border-color: rgba(242, 210, 113, 0.18);
    box-shadow:
        0 10px 34px rgba(0, 0, 0, 0.18),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.nav-home__icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-glass {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: var(--nav-chip-size);
    padding: 0 0.8rem;
    border-radius: 999px;
    background: rgba(8, 10, 18, 0.66);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    pointer-events: auto;
    transition: background 0.4s, box-shadow 0.4s, border-color 0.4s;
    max-width: calc(100% - 28px);
}

.nav.scrolled .nav-glass {
    background: rgba(10, 13, 23, 0.86);
    border-color: rgba(242, 210, 113, 0.18);
    box-shadow:
        0 10px 34px rgba(0, 0, 0, 0.18),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link {
    display: block;
    color: rgba(245, 247, 255, 0.9);
    font-weight: 600;
    white-space: nowrap;
    padding: 0.45rem 0.92rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 128px 0 54px;
    display: flex;
    align-items: center;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.52;
}

.hero-orb--1 {
    width: 220px;
    height: 220px;
    top: 8%;
    left: 6%;
    background: rgba(242, 210, 113, 0.22);
    animation: floatOrb1 10s ease-in-out infinite;
}

.hero-orb--2 {
    width: 180px;
    height: 180px;
    top: 12%;
    right: 8%;
    background: rgba(166, 61, 57, 0.28);
    animation: floatOrb2 12s ease-in-out infinite;
}

.hero-orb--3 {
    width: 240px;
    height: 240px;
    bottom: 6%;
    left: 12%;
    background: rgba(93, 124, 250, 0.18);
    animation: floatOrb3 9s ease-in-out infinite;
}

.hero-orb--4 {
    width: 200px;
    height: 200px;
    bottom: 8%;
    right: 10%;
    background: rgba(242, 210, 113, 0.16);
    animation: floatOrb4 11s ease-in-out infinite;
}

.hero-orb--5 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    background: rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%);
    animation: floatOrb5 8s ease-in-out infinite;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero::before {
    width: 440px;
    height: 440px;
    top: -150px;
    right: -120px;
    background: radial-gradient(circle, rgba(166, 61, 57, 0.42), rgba(166, 61, 57, 0) 70%);
}

.hero::after {
    width: 360px;
    height: 360px;
    bottom: -170px;
    left: -130px;
    background: radial-gradient(circle, rgba(242, 210, 113, 0.18), rgba(242, 210, 113, 0) 72%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.hero-content {
    max-width: 720px;
    position: relative;
    text-align: center;
    z-index: 1;
    animation: fadeUp 1s ease-out both;
    will-change: transform, opacity;
}

.hero-game-icon {
    width: 112px;
    height: 112px;
    margin: 0 auto 1.1rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.34),
        0 0 0 1px rgba(242, 210, 113, 0.15);
}

.hero-title {
    margin: 0 0 1rem;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #ffffff 0%, #f2d271 36%, #ff9f8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 16px 36px rgba(166, 61, 57, 0.22));
    animation: fadeUp 1s ease-out 60ms both;
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 40ch;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    animation: fadeUp 1s ease-out 140ms both;
}

.hero-content .hero-subtitle {
    max-width: 46ch;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    animation: fadeUp 1s ease-out 220ms both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatOrb1 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(55px, 35px); }
    50% { transform: translate(18px, 70px); }
    75% { transform: translate(-36px, 28px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatOrb2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-48px, 44px); }
    50% { transform: translate(-28px, 82px); }
    75% { transform: translate(34px, 36px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatOrb3 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(46px, -34px); }
    50% { transform: translate(76px, 18px); }
    75% { transform: translate(-28px, -18px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatOrb4 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-58px, -28px); }
    50% { transform: translate(-18px, -56px); }
    75% { transform: translate(38px, -18px); }
    100% { transform: translate(0, 0); }
}

@keyframes floatOrb5 {
    0% { transform: translate(-50%, -50%) translate(0, 0); }
    25% { transform: translate(-50%, -50%) translate(38px, -28px); }
    50% { transform: translate(-50%, -50%) translate(-28px, 46px); }
    75% { transform: translate(-50%, -50%) translate(-44px, -18px); }
    100% { transform: translate(-50%, -50%) translate(0, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-buttons,
    .hero-orb {
        animation: none !important;
    }
}

.hero-buttons a {
    display: inline-flex;
    transition: transform 180ms ease, filter 180ms ease;
}

.hero-buttons a:hover {
    transform: translateY(-3px);
    filter: saturate(1.08) brightness(1.02);
}

.app-store-badge,
.google-play-badge {
    height: 58px;
    width: auto;
    border-radius: 0;
}

section {
    padding: 5.2rem 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ffffff 0%, #f2d271 45%, #ff9f8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto 2.6rem;
    font-size: 1.05rem;
    text-align: center;
    color: var(--muted);
}

.screenshots {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at 20% 0%, rgba(93, 124, 250, 0.08), transparent 28%);
}

.screenshots-container {
    position: relative;
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.screenshot-display {
    position: relative;
    width: 100%;
    aspect-ratio: 2870 / 1376;
    overflow: hidden;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at 50% 0%, rgba(242, 210, 113, 0.1), transparent 42%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
        #090b13;
    box-shadow: var(--shadow);
}

.screenshot-display::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 16%);
    pointer-events: none;
    z-index: 1;
}

.screenshot-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 500ms ease, transform 500ms ease;
}

.screenshot-image.active {
    opacity: 1;
    transform: scale(1);
}

.nav-btn {
    appearance: none;
    border: 0;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(242, 210, 113, 0.95), rgba(166, 61, 57, 0.95));
    box-shadow: 0 16px 30px rgba(166, 61, 57, 0.25), 0 8px 18px rgba(242, 210, 113, 0.16);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
    z-index: 2;
}

.nav-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 20px 36px rgba(166, 61, 57, 0.32), 0 10px 22px rgba(242, 210, 113, 0.2);
    filter: brightness(1.05);
}

.nav-btn:active {
    transform: translateY(0) scale(0.98);
}

.nav-btn-left {
    margin-right: 0.2rem;
}

.nav-btn-right {
    margin-left: 0.2rem;
}

.faq {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 75% 20%, rgba(166, 61, 57, 0.08), transparent 28%);
}

.faq-list {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(242, 210, 113, 0.25);
}

.faq-question {
    padding: 1.25rem 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
}

.faq-toggle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 1.15rem;
    color: var(--accent);
    background: rgba(242, 210, 113, 0.12);
    border: 1px solid rgba(242, 210, 113, 0.18);
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(166, 61, 57, 0.18);
    color: #ffffff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 260ms ease, padding 260ms ease;
    padding: 0 1.4rem;
}

.faq-item.active .faq-answer {
    max-height: 360px;
    padding: 0 1.4rem 1.4rem;
}

.faq-answer p {
    color: var(--muted);
    line-height: 1.75;
}

.privacy {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
        radial-gradient(circle at 10% 15%, rgba(242, 210, 113, 0.06), transparent 30%);
}

.privacy-content {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.privacy-section {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    padding: 1.6rem;
    backdrop-filter: blur(14px);
}

.privacy-section:nth-child(1),
.privacy-section:nth-child(2),
.privacy-section:nth-child(3) {
    grid-column: 1 / -1;
}

.privacy-section::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 140px;
    height: 140px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(242, 210, 113, 0.12), transparent 68%);
    pointer-events: none;
}

.privacy-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.9rem;
}

.privacy-section p,
.privacy-section li {
    color: var(--muted);
    line-height: 1.75;
}

.privacy-section p + p {
    margin-top: 0.8rem;
}

.privacy-section ul {
    margin: 0.85rem 0 0.85rem 1.2rem;
}

.privacy-section li {
    margin-bottom: 0.45rem;
}

.privacy-section li strong {
    color: #ffffff;
}

.privacy-section a {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-color: rgba(242, 210, 113, 0.3);
    text-underline-offset: 2px;
}

.contact {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.03)),
        radial-gradient(circle at 80% 30%, rgba(93, 124, 250, 0.08), transparent 26%);
}

.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 16px;
    margin-bottom: 2rem;
}

.contact-info,
.contact-form {
    position: relative;
    overflow: hidden;
    padding: 1.6rem;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--panel);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}

.contact-info::before,
.contact-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242, 210, 113, 0.08), transparent 36%, rgba(166, 61, 57, 0.06));
    pointer-events: none;
}

.contact-item {
    margin-bottom: 1.5rem;
}

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

.contact-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: var(--muted);
    line-height: 1.7;
}

.email-link {
    color: var(--accent);
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: color 180ms ease, border-color 180ms ease;
}

.email-link:hover {
    color: #fff1bf;
    border-bottom-color: rgba(255, 241, 191, 0.6);
}

.form-group {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.05rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 7, 15, 0.72);
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(242, 210, 113, 0.45);
    box-shadow: 0 0 0 4px rgba(242, 210, 113, 0.08);
    background: rgba(8, 10, 18, 0.92);
}

.contact-form .btn {
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease, background 180ms ease;
    text-decoration: none;
}

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

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 14px 34px rgba(166, 61, 57, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 18px 40px rgba(166, 61, 57, 0.34);
}

.btn-secondary {
    color: #ffffff;
    background: transparent;
    border: 1px solid rgba(242, 210, 113, 0.55);
}

.btn-secondary:hover {
    background: rgba(242, 210, 113, 0.08);
}

.form-message,
.form-error {
    margin-top: 1rem;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.form-message {
    background: rgba(52, 211, 153, 0.14);
    color: #d7ffe7;
}

.form-error {
    background: rgba(239, 68, 68, 0.14);
    color: #ffd8d8;
}

.footer {
    padding: 1rem 0 2.2rem;
    text-align: center;
    color: var(--muted-2);
}

.footer p {
    font-size: 0.95rem;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 760px;
    }

    .privacy-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .privacy-section:nth-child(1),
    .privacy-section:nth-child(2),
    .privacy-section:nth-child(3) {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .nav {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding-top: 128px;
    }

    section {
        padding: 4.4rem 0;
    }

    .screenshots-container {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .nav-btn-left,
    .nav-btn-right {
        margin: 0;
        justify-self: center;
    }

    .screenshot-display {
        aspect-ratio: 2870 / 1376;
    }
}

@media (max-width: 540px) {
    .nav {
        padding-top: 0.65rem;
    }

    .nav-glass {
        max-width: calc(100% - 14px);
        padding: 0.45rem 0.55rem;
    }

    .nav-links {
        gap: 0.1rem;
    }

    .hero {
        min-height: auto;
        padding-top: 132px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .app-store-badge,
    .google-play-badge {
        height: 54px;
    }

    .screenshot-display {
        aspect-ratio: 2870 / 1376;
    }

    .faq-question {
        padding: 1.05rem 1.1rem;
    }

    .faq-answer,
    .faq-item.active .faq-answer {
        padding-left: 1.1rem;
        padding-right: 1.1rem;
    }

    .privacy-section,
    .contact-info,
    .contact-form {
        padding: 1.2rem;
    }
}
