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

:root {
    --color-mint-light: #D3ECD9;
    --color-mint: #8AD1AA;
    --color-mint-dark: #26745F;
    --color-heading: #1D3944;
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-body: #374151;
    --color-muted: #6B7280;
    --color-bg-main: #F4FBF7;
    --color-bg-section: #ECF7F1;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--color-body);
    background-color: var(--color-bg-main);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #D3ECD9 0%, #8AD1AA 50%, #6BC492 100%);
    padding: 80px 20px 100px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--color-bg-main));
}

.hero-app-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 16px 48px rgba(38, 116, 95, 0.3);
    margin-bottom: 24px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--color-white);
    margin-bottom: 24px;
}

.badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.hero .tagline {
    font-size: 1.25rem;
    color: var(--color-white);
    opacity: 0.95;
    max-width: 550px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-dark {
    background: var(--color-black);
    color: var(--color-white);
}

.btn-dark:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-heading);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-mint-dark);
    color: var(--color-white);
}

.btn-primary:hover {
    background: #1F5C4B;
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hero-links {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.95rem;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.hero-link:hover {
    opacity: 1;
}

.hero-link svg {
    width: 16px;
    height: 16px;
}

/* Section Styles */
.section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Screenshots Section */
.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.screenshot-card {
    background: linear-gradient(180deg, #ECF7F1 0%, #D3ECD9 100%);
    border: 2px dashed var(--color-mint);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    aspect-ratio: 9/16;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.screenshot-card.has-image {
    background: transparent;
    border: none;
    padding: 0;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 16px;
}

.screenshot-card.has-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(38, 116, 95, 0.15);
    margin-bottom: 12px;
}

.screenshot-card.has-image h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-top: 8px;
}

.screenshot-icon {
    width: 48px;
    height: 48px;
    background: rgba(138, 209, 170, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-mint-dark);
}

.screenshot-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 4px;
}

.screenshot-card span {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.2s;
}

.feature-card:hover {
    box-shadow: 0 8px 30px rgba(38, 116, 95, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ECF7F1 0%, #D3ECD9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--color-mint-dark);
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.5;
}

/* Download Section */
.download-section {
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-section) 100%);
    padding: 80px 20px;
}

.download-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-mint-dark);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.download-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 12px;
}

.download-text p {
    font-size: 1rem;
    color: var(--color-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.download-icon-wrapper {
    display: flex;
    justify-content: center;
}

.app-icon {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #8AD1AA 0%, #26745F 100%);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(38, 116, 95, 0.3);
}

.app-icon svg {
    width: 80px;
    height: 80px;
    color: var(--color-white);
}

.app-icon-img {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(38, 116, 95, 0.3);
}

/* Privacy Section */
.privacy-section {
    padding: 40px 20px 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.privacy-card {
    background: linear-gradient(135deg, var(--color-mint-dark) 0%, #1F5C4B 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: var(--color-white);
}

.privacy-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.privacy-icon svg {
    width: 28px;
    height: 28px;
}

.privacy-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.privacy-card p {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 550px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.privacy-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1D3944;
    color: var(--color-white);
    text-align: center;
    padding: 24px 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Utility Classes */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Privacy & Support Page Styles */
.page-header {
    background: linear-gradient(180deg, #D3ECD9 0%, #8AD1AA 100%);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
}

.page-header .tagline {
    font-size: 1.1rem;
    color: var(--color-white);
    opacity: 0.9;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-mint-dark);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 24px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #1F5C4B;
}

.back-link::before {
    content: "\2190";
    font-size: 1.2rem;
}

.card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(38, 116, 95, 0.08);
}

.card h2 {
    color: var(--color-mint-dark);
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 600;
}

.card h3 {
    color: var(--color-heading);
    font-size: 1.2rem;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.card p {
    color: var(--color-body);
    margin-bottom: 16px;
}

.card ul {
    list-style: none;
    margin-bottom: 16px;
}

.card ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--color-body);
}

.card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-mint);
    border-radius: 50%;
}

.content-section {
    margin-bottom: 24px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(211, 236, 217, 0.5), rgba(138, 209, 170, 0.2));
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid var(--color-mint);
}

.highlight-box p {
    margin: 0;
    color: var(--color-heading);
    font-weight: 500;
}

.email-link {
    color: var(--color-mint-dark);
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .download-icon-wrapper {
        order: -1;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 60px 20px 80px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .tagline {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-links {
        flex-direction: column;
        gap: 16px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .screenshot-card {
        padding: 24px 12px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-card {
        padding: 40px 24px;
    }
    
    .privacy-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .page-header {
        padding: 40px 16px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 24px 16px;
    }
    
    .card {
        padding: 24px;
        border-radius: 12px;
    }
}
