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

:root {
    --bg: #f0f4f3;
    --text: #2d3436;
    --teal: #00cec9;
    --teal-soft: rgba(0, 206, 201, 0.08);
    --teal-border: rgba(0, 206, 201, 0.3);
    --glass: rgba(255, 255, 255, 0.55);
    --glass-border: rgba(255, 255, 255, 0.8);
    --muted: rgba(45, 52, 54, 0.45);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: rgba(240, 244, 243, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
}
.nav-logo {
    font-size: 1rem;
    font-weight: 200;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    justify-content: center;
}
.nav-links a {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.55rem 1.2rem;
    border-radius: 10px;
    border: 1px solid var(--teal-border);
    background: var(--teal-soft);
    color: var(--teal);
    text-decoration: none;
    transition: all 0.3s;
    flex-shrink: 0;
}
.nav-cta:hover { background: rgba(0,206,201,0.15); }

/* SECTIONS */
section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 2rem 4rem;
    max-width: 760px;
    margin: 0 auto;
}
section.wide { max-width: 1060px; }
section.hero { min-height: 90vh; padding-top: 8rem; }

/* LABELS */
.label {
    font-size: 9px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.status-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px rgba(0,206,201,0.5);
    flex-shrink: 0;
}

/* TYPOGRAPHY */
.hero-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 200;
    line-height: 1.45;
    margin-bottom: 2rem;
}
.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 3rem;
    line-height: 1.8;
}
.section-title {
    font-size: clamp(1.1rem, 2.5vw, 1.55rem);
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}
.body-text {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.85;
    max-width: 600px;
}

/* DIVIDER */
.divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--teal-border), transparent);
    margin: 0 auto;
}

/* GLASS CARDS */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(30px) saturate(120%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.02);
}
.card-label {
    font-size: 8px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--teal);
    opacity: 0.7;
    margin-bottom: 0.6rem;
    display: block;
}
.card-title {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.card-text {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

/* VALUE LIST */
.value-list { margin-top: 1.5rem; }
.value-item {
    padding: 0.9rem 0;
    font-size: 0.95rem;
    font-weight: 300;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.value-item::before {
    content: '';
    width: 4px; height: 4px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.5;
    flex-shrink: 0;
}

/* STEPS */
.steps { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.step-num {
    font-size: 9px;
    letter-spacing: 0.2em;
    color: var(--teal);
    opacity: 0.6;
    flex-shrink: 0;
    padding-top: 0.25rem;
    min-width: 28px;
}
.step-title {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
}
.step-text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.7;
}

/* PRICING */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    padding: 1rem 0;
}
.pricing-card { position: relative; }
.pricing-card.featured {
    border-color: var(--teal-border);
    box-shadow: 0 0 40px rgba(0,206,201,0.06);
}
.price {
    font-size: 2rem;
    font-weight: 200;
    margin: 0.75rem 0 0.25rem;
    letter-spacing: -0.02em;
}
.price-unit {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.5;
}
.feature-list {
    list-style: none;
    margin-top: 0.5rem;
}
.feature-list li {
    font-size: 0.82rem;
    color: var(--muted);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.feature-list li::before {
    content: '';
    width: 3px; height: 3px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.5;
    flex-shrink: 0;
}

/* FAQ */
.faq-list { margin-top: 1.5rem; }
.faq-item {
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.6);
}
.faq-q {
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}
.faq-a {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
}

/* CTA */
.cta-primary {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    border: 1px solid var(--teal-border);
    background: var(--teal-soft);
    color: var(--teal);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-primary:hover {
    background: rgba(0,206,201,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,206,201,0.1);
}
.cta-outline {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.3);
    color: var(--muted);
    text-decoration: none;
    transition: all 0.3s;
}
.cta-outline:hover {
    background: rgba(255,255,255,0.5);
    color: var(--text);
}
.cta-secondary {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.9rem 1.5rem;
    color: var(--muted);
    text-decoration: none;
    margin-left: 1rem;
    transition: color 0.3s;
}
.cta-secondary:hover { color: var(--text); }

/* FOR TAGS */
.for-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.for-tag {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.4);
    color: var(--muted);
}

/* FINAL */
.final-section {
    text-align: center;
    padding: 5rem 2rem;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.final-title {
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 200;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}
.final-sub {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* FOOTER */
footer {
    border-top: 1px solid rgba(255,255,255,0.4);
    padding: 3rem 2rem 2rem;
    max-width: 1060px;
    margin: 0 auto;
}
.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title {
    font-size: 8px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.5;
    margin-bottom: 0.25rem;
}
.footer-col a {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    opacity: 0.7;
}
.footer-col a:hover { color: var(--text); opacity: 1; }
.footer-copy {
    font-size: 8px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.35;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.3);
}

/* FOR TAGS as links */
a.for-tag {
    text-decoration: none;
    transition: all 0.2s;
}
a.for-tag:hover {
    border-color: var(--teal-border);
    background: var(--teal-soft);
    color: var(--teal);
}

@media (max-width: 600px) {
    section { padding: 6rem 1.5rem 3rem; }
    .cta-secondary { display: block; margin-left: 0; margin-top: 1rem; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    footer { padding: 2.5rem 1.5rem 1.5rem; }
}
