:root {
    --primary-color: #2f80ed;
    --secondary-color: #ff7a45;
    --accent-color: #60c4ff;
    --text-color: #2f3a4a;
    --light-text: #64748b;
    --bg-color: #ffffff;
    --light-bg: #f7fbff;
    --dark-bg: #1f2937;
    --border-color: #e1e8f0;
    --shadow: 0 12px 28px rgba(47, 128, 237, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--primary-color);
}

header {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
}

nav a:hover,
nav a.active {
    color: var(--primary-color);
    background-color: rgba(47, 128, 237, 0.1);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.hero {
    padding: 88px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #e8f5ff 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 48px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.12;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.18rem;
    margin-bottom: 30px;
    color: var(--light-text);
    max-width: 560px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 560px;
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.app-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--dark-bg);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    transition: var(--transition);
    width: 220px;
    justify-content: center;
    box-shadow: var(--shadow);
}

.app-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.app-button i {
    font-size: 1.9rem;
}

.app-button span {
    display: flex;
    flex-direction: column;
}

.app-button small {
    font-size: 0.7rem;
    opacity: 0.82;
}

.app-button strong {
    font-size: 1.08rem;
}

.features {
    padding: 88px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

.feature-card {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(47, 128, 237, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 32px rgba(47, 128, 237, 0.16);
}

.feature-icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 14px;
    color: var(--primary-color);
}

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

.steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step {
    display: flex;
    align-items: center;
    gap: 40px;
}

.step:nth-child(2),
.step:nth-child(4) {
    flex-direction: row-reverse;
}

.step-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.step-image img {
    max-height: 520px;
}

.step-content {
    flex: 1;
    position: relative;
    padding-top: 40px;
}

.step-number {
    position: absolute;
    top: -30px;
    left: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.45rem;
    font-weight: bold;
    box-shadow: var(--shadow);
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.download {
    padding: 88px 0;
    background: linear-gradient(135deg, #f8fcff 0%, #e8f5ff 100%);
    text-align: center;
}

.download-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-text);
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.download .app-buttons {
    justify-content: center;
}

footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo img {
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 1.15rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.84);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.64);
}

.privacy-policy {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.privacy-content {
    background-color: var(--bg-color);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(47, 128, 237, 0.08);
}

.last-updated {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 30px;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.policy-section ul {
    margin-left: 20px;
    margin-top: 10px;
}

.policy-section li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-section li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .hero .container,
    .step,
    .step:nth-child(2),
    .step:nth-child(4) {
        flex-direction: column;
    }

    .hero-content,
    .step-content {
        text-align: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }

    .step-content {
        padding-top: 60px;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background-color: var(--bg-color);
        padding: 20px;
        box-shadow: var(--shadow);
        z-index: 99;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 100;
    }

    .hero {
        padding: 64px 0;
    }

    .hero-content h1 {
        font-size: 2.15rem;
    }

    .hero-content p,
    .download-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .app-buttons {
        justify-content: center;
    }

    .app-button {
        width: 100%;
        max-width: 260px;
    }

    .privacy-content {
        padding: 28px 22px;
    }
}
