@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Manrope:wght@400;600;700&display=swap');

:root {
    --bg: #f4f4fb;
    --surface: #ffffff;
    --surface-muted: #f0f0fa;
    --ink: #292846;
    --muted: #5f6280;
    --primary: #7567b8;
    --primary-strong: #51468d;
    --accent: #c26b2f;
    --line: #dcdcf0;
    --shadow: 0 14px 36px rgba(52, 49, 102, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.65;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 0%, rgba(194, 107, 47, 0.12), transparent 40%),
        radial-gradient(circle at 100% 20%, rgba(117, 103, 184, 0.14), transparent 45%),
        var(--bg);
}

.parking-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 12% 8%, rgba(194, 107, 47, 0.16), transparent 38%),
        radial-gradient(circle at 88% 18%, rgba(117, 103, 184, 0.2), transparent 42%),
        #e8e7f7;
}

.parking-page main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.parking-page .hero {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 10vh, 7rem) 2rem;
}

.parking-content {
    width: min(100%, 820px);
    text-align: center;
}

.parking-page .hero h1 {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1.05;
}

.parking-page .hero p {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
}

.parking-page footer {
    margin-top: 0;
}

header {
    background: rgba(81, 70, 141, 0.92);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(52, 49, 102, 0.2);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.55rem;
    letter-spacing: 0.2px;
}

.logo img {
    width: 2.25rem;
    height: 2.25rem;
    object-fit: contain;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

nav a {
    color: #fbf8fd;
    text-decoration: none;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

nav a.active {
    background: rgba(255, 255, 255, 0.24);
    color: #fff8ee;
}

nav a.lang-switch {
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-weight: 700;
    letter-spacing: 0.4px;
}

nav a.lang-switch:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(81, 70, 141, 0.95), rgba(117, 103, 184, 0.9)),
        linear-gradient(30deg, rgba(194, 107, 47, 0.35), rgba(117, 103, 184, 0.35));
    color: white;
    text-align: center;
    padding: 6rem 2rem 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 34px 34px;
    opacity: 0.2;
    pointer-events: none;
}

.hero h1,
.hero p,
.hero-badges,
.cta-buttons,
.hero-image {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    margin-bottom: 1rem;
    letter-spacing: 0.4px;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 760px;
    margin: 0 auto 1.35rem;
    opacity: 0.95;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto 1.8rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 2.25rem;
    padding: 0.45rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #faf7fc;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-placeholder {
    width: min(100%, 980px);
    height: 420px;
    margin: 2.5rem auto 0;
    border: 2px dashed rgba(255, 255, 255, 0.85);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.25rem;
    color: #fff;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 16px 40px rgba(52, 49, 102, 0.35);
}

.hero-image {
    width: min(100%, 980px);
    margin-top: 2.5rem;
    display: inline-flex;
    justify-content: center;
}

/* .hero-image img { */
    /* box-shadow: var(--shadow); */
/* } */

.btn {
    padding: 0.78rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
    display: inline-block;
}

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

.btn-primary {
    background: #f3b37f;
    color: #30253b;
    box-shadow: 0 10px 20px rgba(194, 107, 47, 0.3);
}

.btn-primary:hover {
    background: #ffc18f;
    box-shadow: 0 14px 22px rgba(194, 107, 47, 0.34);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #faf7fc;
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.24);
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.launch-note {
    color: var(--primary-strong);
    font-size: 0.9rem;
    line-height: 1.35;
}

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

section {
    padding: 4rem 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-strong);
}

.features,
.product-grid,
.downloads,
.docs-grid,
.screenshots {
    display: grid;
    gap: 1.5rem;
}

.features,
.docs-grid,
.screenshots {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.downloads {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 2rem;
}

.product-card,
.feature-card,
.news-item,
.download-card,
.screen-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.7rem;
    box-shadow: 0 7px 20px rgba(52, 49, 102, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: rise 0.5s ease both;
}

.product-card:hover,
.feature-card:hover,
.news-item:hover,
.download-card:hover,
.screen-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(52, 49, 102, 0.14);
}

.product-card,
.download-card {
    background: linear-gradient(160deg, #ffffff, var(--surface-muted));
}

.product-card h3,
.feature-card h3,
.news-item h3,
.download-card h3,
.screen-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary-strong);
    margin-bottom: 0.85rem;
}

.product-card h3,
.download-card h3 {
    font-size: 1.45rem;
}

.product-kicker {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-list {
    margin: 1rem 0 1.4rem;
    padding-left: 1.1rem;
    color: var(--muted);
}

.product-list li {
    margin-bottom: 0.55rem;
}

.mobile-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.mobile-flow div {
    padding: 0.9rem;
    border-top: 3px solid var(--accent);
    background: var(--surface-muted);
}

.mobile-flow strong,
.mobile-flow span {
    display: block;
}

.mobile-flow strong {
    margin-bottom: 0.35rem;
    color: var(--primary-strong);
    font-family: 'Space Grotesk', sans-serif;
}

.mobile-flow span {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.mobile-capabilities {
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.mobile-capabilities span {
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.feature-card,
.news-item,
.screen-card {
    border-left: 5px solid var(--accent);
}

.sponsor-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    min-height: 6.5rem;
    margin-bottom: 1.35rem;
}

.sponsor-title {
    text-align: center;
}

.sponsor-logos a {
    display: flex;
    justify-content: center;
    width: min(44%, 220px);
}

.sponsor-logos img {
    width: 100%;
    max-height: 6.5rem;
    object-fit: contain;
}

.news-item {
    margin-bottom: 1.2rem;
}

.release-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.35rem;
}

.release-link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    min-height: 9rem;
    padding: 1.1rem 1.2rem;
    border: 1px solid rgba(117, 103, 184, 0.28);
    border-radius: 12px;
    background: linear-gradient(145deg, #ffffff, var(--surface-muted));
    color: var(--ink);
    text-decoration: none;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.release-link:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: 0 10px 22px rgba(52, 49, 102, 0.12);
}

.release-product {
    color: var(--primary-strong);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.release-link strong {
    color: var(--accent);
    font-size: 0.92rem;
}

.release-link > span:last-child {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.image-placeholder {
    width: 100%;
    height: 220px;
    border: 2px dashed var(--primary);
    border-radius: 10px;
    background: linear-gradient(130deg, rgba(117, 103, 184, 0.12), rgba(194, 107, 47, 0.12));
    color: var(--primary-strong);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    margin-bottom: 1rem;
}

.download-card {
    text-align: center;
    border-color: rgba(117, 103, 184, 0.35);
}

.download-card .btn {
    width: 100%;
    margin-top: 0.85rem;
    background: var(--primary);
    color: #f8f1fb;
    box-shadow: none;
}

.download-card .btn:hover {
    background: var(--primary-strong);
}

.download-card .btn-secondary {
    background: transparent;
    color: var(--primary-strong);
    border-color: var(--primary);
}

.download-card .btn-secondary:hover {
    background: rgba(117, 103, 184, 0.12);
}

.software-hero {
    padding-bottom: 4rem;
}

.software-content section {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.single-download {
    grid-template-columns: minmax(280px, 520px);
    justify-content: center;
}

.docs-grid .btn {
    margin-top: 0.85rem;
}

.docs-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.85rem;
}

.docs-links .btn {
    margin-top: 0;
}

footer {
    background: #383466;
    color: #ececff;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ececff;
    text-decoration: none;
    border-bottom: 1px solid rgba(236, 236, 255, 0.35);
    transition: color 0.25s ease, border-color 0.25s ease;
}

.footer-links a:hover {
    color: #ffe6cd;
    border-color: #ffe6cd;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.features > :nth-child(2),
.product-grid > :nth-child(2),
.downloads > :nth-child(2),
.docs-grid > :nth-child(2) {
    animation-delay: 0.08s;
}

.features > :nth-child(3),
.product-grid > :nth-child(3),
.downloads > :nth-child(3),
.docs-grid > :nth-child(3) {
    animation-delay: 0.14s;
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 0.7rem;
        text-align: center;
    }

    nav ul {
        justify-content: center;
    }

    .mobile-flow {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.1rem;
    }

    nav ul {
        gap: 0.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 5rem 1rem 4.2rem;
    }

    .hero-image-placeholder {
        height: 260px;
        margin-top: 2rem;
    }

    .product-card,
    .feature-card,
    .download-card,
    .news-item,
    .screen-card {
        padding: 1.25rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta-buttons {
        width: 100%;
    }

    .hero-badges {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .release-links {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    .mobile-flow {
        grid-template-columns: 1fr;
    }
}
