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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    background: #ffffff;
}

a { color: #4a6cf7; }
a:focus, button:focus { outline: 3px solid #4a6cf7; outline-offset: 2px; }

.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 0.75rem 1.5rem;
    background: #4a6cf7;
    color: #fff;
    z-index: 100;
    text-decoration: none;
    font-weight: 600;
}
.skip-link:focus { top: 0; }

header {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 100%);
    color: #fff;
    padding: 1rem 1.5rem;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.25rem; font-weight: 700; color: #fff; text-decoration: none; }

nav ul { list-style: none; display: flex; gap: 1.5rem; }
nav ul li a { color: #ccc; text-decoration: none; font-size: 0.95rem; }
nav ul li a:hover { color: #fff; }

.hero {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0d3320 100%);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #34d058;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: background 0.2s;
}
.cta-button:hover { background: #2ea44f; }

.cta-button-secondary {
    background: #0072ef;
    color: #fff;
}
.cta-button-secondary:hover { background: #005bc0; }

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

.badge { margin-top: 1rem; font-size: 0.9rem; opacity: 0.7; }

section { padding: 4rem 1.5rem; max-width: 1100px; margin: 0 auto; }

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.how-it-works ol {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    counter-reset: steps;
}

.how-it-works li {
    counter-increment: steps;
    padding: 1rem 0 1rem 3.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.how-it-works li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    background: #4a6cf7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.how-it-works li:last-child { border-bottom: none; }

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

.feature-card {
    padding: 2rem;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.15rem; }
.feature-card p { color: #555; font-size: 0.95rem; }

.privacy-section {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.privacy-section .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.privacy-points {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
}

.privacy-points li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
}

.privacy-points li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #34d058;
    font-weight: 700;
}

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

.faq-list {
    max-width: 700px;
    margin: 2rem auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 1.25rem 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item dt {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.faq-item dd {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.price-card {
    max-width: 400px;
    margin: 0 auto;
    padding: 2.5rem;
    border: 2px solid #4a6cf7;
    border-radius: 16px;
}

.price { font-size: 3rem; font-weight: 800; color: #4a6cf7; }
.price-period { font-size: 1.1rem; color: #666; }
.price-note { margin-top: 1rem; color: #767676; font-size: 0.9rem; }

.about-section {
    background: #f8f9fa;
    padding: 4rem 1.5rem;
}

.about-section .inner { max-width: 1100px; margin: 0 auto; }
.about-section a { color: #0c3cc0; }

.about-text {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    color: #555;
    line-height: 1.8;
}

.about-contact {
    max-width: 650px;
    margin: 1rem auto 0;
    text-align: center;
    color: #555;
}

.screenshots-section { padding-bottom: 2rem; }

.cta-section {
    text-align: center;
    padding-bottom: 5rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
}

.screenshot-item {
    text-align: center;
    margin: 0;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.screenshot-item figcaption {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .screenshots-grid { grid-template-columns: 1fr; max-width: 300px; }
}

footer {
    background: #0a0a1a;
    color: #999;
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

footer a { color: #ccc; }

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

@media (max-width: 600px) {
    nav ul { gap: 1rem; }
    .hero { padding: 3rem 1.5rem; }
    section { padding: 3rem 1rem; }
}
