@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&display=swap');

:root {
    --bg-dark: #001b2b;
    --bg: #003049;
    --bg-card: rgba(14, 22, 29, 0.88);
    --bg-card-2: rgba(15, 25, 33, 0.72);
    --text: #eae2b7;
    --text-muted: #c7c0a8;
    --accent: #f77f00;
    --accent-2: #fcbf49;
    --danger: #d62828;
    --line: rgba(234, 226, 183, 0.16);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Sora', system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 20% 20%, rgba(247, 127, 0, 0.18), transparent 55%),
        radial-gradient(circle at 80% 30%, rgba(214, 40, 40, 0.15), transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(252, 191, 73, 0.18), transparent 55%),
        linear-gradient(180deg, #00263a 0%, #00131f 70%);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background:
        repeating-linear-gradient(
            90deg,
            rgba(234, 226, 183, 0.04),
            rgba(234, 226, 183, 0.04) 1px,
            transparent 1px,
            transparent 24px
        ),
        repeating-linear-gradient(
            0deg,
            rgba(234, 226, 183, 0.035),
            rgba(234, 226, 183, 0.035) 1px,
            transparent 1px,
            transparent 22px
        );
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

main,
header,
section,
footer {
    position: relative;
    z-index: 1;
}

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

.screens-wide {
    width: min(1600px, 96vw);
    margin: 5% !important;
}

.nav {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(0, 27, 43, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-image {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

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

.nav-cta {
    display: flex;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    font-weight: 700;
    border: 1px solid transparent;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #120e09;
    box-shadow: 0 12px 30px rgba(247, 127, 0, 0.35);
}

.btn-secondary {
    border-color: var(--line);
    color: var(--text);
    background: rgba(0, 0, 0, 0.25);
}

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

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text);
    font-size: 1.6rem;
}

.hero {
    padding: 6rem 0 5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.6rem, 4vw, 4.4rem);
    margin-bottom: 1rem;
}

.hero-title span {
    color: var(--accent);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.pill {
    padding: 0.4rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.35);
    font-size: 0.85rem;
}

.store-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.store-button {
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--line);
    text-decoration: none;
    color: var(--text);
    background: rgba(0, 0, 0, 0.35);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.store-button.primary {
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #120e09;
}

.store-button svg,
.btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: currentColor;
}

.mock-phone {
    background: #0b1b24;
    border: 1px solid rgba(234, 226, 183, 0.12);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: var(--shadow);
    animation: float 6s ease-in-out infinite;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.mock-card {
    background: #1e1e1e;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(234, 226, 183, 0.12);
}

.mock-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
}

.mock-number {
    font-size: 1.5rem;
    color: var(--accent);
    font-weight: 700;
}

.mock-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.mock-actions span {
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
}

.mock-actions .cancel {
    background: var(--danger);
    color: #fff;
}

.mock-actions .call {
    background: var(--accent);
    color: #120e09;
}

.section {
    padding: 4.5rem 0;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 720px;
}

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

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.card {
    padding: 1.8rem;
    border-radius: 18px;
    background: var(--bg-card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.card h3 {
    margin-top: 0;
}

.step-badge {
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.pricing-card {
    padding: 2rem;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--line);
}

.pricing-card.highlight {
    border: 2px solid rgba(247, 127, 0, 0.7);
    box-shadow: 0 20px 50px rgba(247, 127, 0, 0.2);
}

.pricing-price {
    font-size: 2rem;
    margin: 0.5rem 0 1rem;
    font-weight: 800;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.list li::before {
    content: '-';
    margin-right: 0.5rem;
    color: var(--accent);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.download-card {
    padding: 1.6rem;
    border-radius: 16px;
    background: var(--bg-card-2);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}

.download-card .btn {
    align-self: center;
}

.screens-carousel {
    margin-top: 2.5rem;
    overflow: visible;
}

.screens-track {
    display: flex;
    gap: 1.2rem;
    justify-content: space-between;
    width: 100%;
    align-items: stretch;
    flex-wrap: nowrap;
}

.screen-card {
    border-radius: 22px;
    background: #f7f4ec;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
    padding: 0;
    flex: 0 0 calc((100% - 4 * 1.2rem) / 5);
    max-width: calc((100% - 4 * 1.2rem) / 5);
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 1290 / 2796;
}

.screen-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.screen-card figcaption {
    margin-top: 0.6rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.screens-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.screen-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: transparent;
    padding: 0;
}

.screen-dot.is-active {
    background: var(--accent);
    border-color: var(--accent);
}

form {
    display: grid;
    gap: 1.2rem;
}

label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
}

input,
textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
    font-family: inherit;
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.card a {
    color: var(--accent-2);
    text-decoration: none;
    font-weight: 600;
}

.card a:hover,
.card a:focus {
    color: var(--accent);
    text-decoration: underline;
}

.footer {
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--line);
    text-align: center;
    color: var(--text-muted);
}

.footer a {
    color: var(--text);
    text-decoration: none;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.6rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (min-width: 1200px) {
    .screens-track {
        width: 100%;
        margin: 0 auto;
        gap: 1.4rem;
    }
    .screen-card {
        flex-basis: calc((100% - 4 * 1.4rem) / 5);
        max-width: calc((100% - 4 * 1.4rem) / 5);
    }
}

@media (max-width: 960px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-open .nav-links {
        display: flex;
        position: absolute;
        top: 64px;
        right: 0;
        flex-direction: column;
        background: rgba(0, 27, 43, 0.96);
        padding: 1rem 1.5rem;
        border: 1px solid var(--line);
        border-radius: 12px;
    }

    .screens-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }

    .screens-track::-webkit-scrollbar {
        display: none;
    }

    .screen-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        height: 90vh;
        max-height: 680px;
        aspect-ratio: auto;
    }

    .screen-card img {
        height: 100%;
        object-fit: contain;
        background: #f7f4ec;
    }

    .screens-dots {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .nav-cta {
        display: none;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}
