:root {
    --primary: #1f96ad;
    --primary-light: #e8f4f6;
    --bg: #f8fbfe;
    --text-main: #1a1c1e;
    --text-secondary: #5d6d7e;
    --card-shadow: 0 10px 30px rgba(31, 150, 173, 0.08);
}

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

a,
a:visited {
    color: var(--primary);
}

.brand-logo {
    height: 36px;
    width: 36px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    margin-right: 8px;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: var(--bg);
    color: var(--text-main);
    line-height: 1.6;
}

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

/* Navigation */
nav {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.app-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge img {
    height: 48px;
    border-radius: 8px;
    transition: transform 0.2s;
}

.badge:hover img {
    transform: translateY(-3px);
}

.hero-mockup {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-frame {
    width: 320px;
    border: 8px solid #2d3436;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.15);
    background: #fff;
}

.phone-frame img {
    width: 100%;
    display: block;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
    border-radius: 60px 60px 0 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.feature-card {
    padding: 40px;
    background: var(--bg);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.stat-item h4 {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

footer {
    padding: 60px 0;
    text-align: center;
    color: var(--text-secondary);
}

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    .hero-mockup {
        order: -1;
    }
}

/* Privacy page specific styles */
.privacy-hero {
    background: var(--primary-light);
    padding: 60px 0 40px 0;
    text-align: center;
}
.privacy-hero-logo {
    height: 60px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 18px;
}
.privacy-hero-title {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.privacy-hero-date {
    color: var(--text-secondary);
    font-size: 1.1rem;
}
.privacy-container {
    max-width: 700px;
    margin: -40px auto 40px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 48px 36px 36px 36px;
}
.privacy-section {
    margin-bottom: 28px;
}
.privacy-section-intro {
    margin-bottom: 32px;
}
.privacy-section-title {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.privacy-section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}
.privacy-section-subtitle {
    color: var(--primary);
    margin-bottom: 8px;
}
.privacy-list {
    margin-bottom: 10px;
}
.privacy-highlight {
    color: var(--primary);
    font-weight: 600;
}
.privacy-link {
    color: var(--primary);
    text-decoration: underline;
}
.privacy-footer {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 32px;
}

/* Support page specific styles */
.support-hero {
    background: var(--primary-light);
    padding: 60px 0 40px 0;
    text-align: center;
}
.support-hero-logo {
    height: 60px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 18px;
}
.support-hero-title {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 10px;
}
.support-hero-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
}
.support-container {
    max-width: 700px;
    margin: -40px auto 40px auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    padding: 48px 36px 36px 36px;
}
.support-section {
    margin-bottom: 32px;
}
.support-section-title {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 12px;
}
.support-list {
    margin-bottom: 10px;
    padding-left: 20px;
}
.support-list li {
    margin-bottom: 8px;
    color: var(--text-main);
    font-size: 1.05rem;
}
.support-tip {
    background: var(--primary-light);
    color: var(--primary);
    border-left: 4px solid var(--primary);
    padding: 10px 16px;
    border-radius: 8px;
    margin-top: 10px;
    font-size: 1rem;
}
.support-link {
    color: var(--primary);
    text-decoration: underline;
    word-break: break-all;
}