:root {
    --green: #6F9F8D;
    --green-deep: #5B8775;
    --green-soft: rgba(111, 159, 141, 0.12);
    --navy: #2F3E46;
    --bg: #F7F9F8;
    --amber: #E9C46A;
    --gray: #B8B8B8;
    --card: #FFFFFF;
    --text: #2F3E46;
    --text-muted: #6B7A80;
    --radius: 16px;
    --radius-sm: 10px;
    --max: 1100px;
    --shadow: 0 2px 14px rgba(47, 62, 70, 0.06);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--green-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header ===== */

.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(247, 249, 248, 0.85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    z-index: 10;
    border-bottom: 1px solid rgba(47, 62, 70, 0.06);
}
.header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--navy);
    font-size: 18px;
}
.brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}
.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
}
.nav a { color: var(--text-muted); }
.nav a.cta {
    background: var(--green);
    color: #fff;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 600;
}
.nav a.cta:hover { background: var(--green-deep); text-decoration: none; }

@media (max-width: 600px) {
    .nav .link { display: none; }
}

/* ===== Hero ===== */

.hero {
    padding: 64px 0 40px;
    text-align: center;
}
.hero h1 {
    font-size: clamp(36px, 6vw, 56px);
    line-height: 1.1;
    margin: 0 0 18px;
    color: var(--navy);
    letter-spacing: -0.02em;
    font-weight: 800;
}
.hero p.lead {
    font-size: clamp(18px, 2vw, 21px);
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 28px;
}
.hero .cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.15s, transform 0.15s;
}
.btn-primary {
    background: var(--green);
    color: #fff;
}
.btn-primary:hover { background: var(--green-deep); text-decoration: none; }
.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1px solid rgba(47, 62, 70, 0.18);
}
.btn-ghost:hover { background: rgba(47, 62, 70, 0.04); text-decoration: none; }

.hero-phone {
    max-width: 280px;
    margin: 0 auto;
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(47, 62, 70, 0.18);
}

/* ===== Trust strip ===== */

.trust {
    padding: 28px 0;
    text-align: center;
}
.trust p {
    color: var(--text-muted);
    font-size: 15px;
    margin: 0;
}
.trust strong { color: var(--navy); font-weight: 600; }

/* ===== Features (alternating screenshots + text) ===== */

.features { padding: 24px 0 32px; }
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px 0;
}
.feature-text h2 {
    font-size: clamp(26px, 3.2vw, 34px);
    line-height: 1.15;
    margin: 0 0 14px;
    color: var(--navy);
    letter-spacing: -0.01em;
    font-weight: 700;
}
.feature-text p {
    font-size: 17px;
    color: var(--text-muted);
    margin: 0 0 10px;
}
.feature-text ul {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}
.feature-text ul li {
    padding-left: 26px;
    position: relative;
    margin-bottom: 8px;
    color: var(--text);
}
.feature-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green-soft);
    box-shadow: inset 0 0 0 2px var(--green);
}
.feature-image {
    display: flex;
    justify-content: center;
}
.feature-image img {
    max-width: 320px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}
.feature.reverse .feature-text { order: 2; }
.feature.reverse .feature-image { order: 1; }

@media (max-width: 800px) {
    .feature {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 0;
        text-align: center;
    }
    .feature.reverse .feature-text,
    .feature.reverse .feature-image { order: initial; }
    .feature-text ul { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
}

/* ===== Pricing ===== */

.pricing {
    padding: 64px 0;
    text-align: center;
}
.pricing h2 {
    font-size: clamp(28px, 3.5vw, 38px);
    color: var(--navy);
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    font-weight: 700;
}
.pricing p.lead {
    color: var(--text-muted);
    margin: 0 auto 36px;
    max-width: 560px;
}
.plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
}
.plan {
    background: var(--card);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(47, 62, 70, 0.06);
    display: flex;
    flex-direction: column;
}
.plan.featured {
    border: 2px solid var(--green);
    position: relative;
}
.plan .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--amber);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.plan h3 {
    margin: 0 0 6px;
    font-size: 20px;
    color: var(--navy);
}
.plan .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin: 8px 0 4px;
}
.plan .price small {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}
.plan ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
}
.plan ul li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: var(--text);
}
.plan ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 6px;
    color: var(--green);
    font-weight: 700;
}
.plan ul li.muted { color: var(--text-muted); }
.plan ul li.muted::before { content: "·"; color: var(--gray); }

@media (max-width: 700px) {
    .plans { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */

.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 28px;
    margin-top: 40px;
}
.footer .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 60px;
    justify-content: space-between;
    align-items: flex-start;
}
.footer .brand { color: #fff; }
.footer .brand img { background: #fff; }
.footer .links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    font-size: 15px;
}
.footer .links a { color: rgba(255, 255, 255, 0.85); }
.footer .links a:hover { color: #fff; }
.footer .bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

/* ===== Legal pages ===== */

.legal {
    padding: 48px 0 24px;
    max-width: 760px;
    margin: 0 auto;
}
.legal h1 {
    font-size: clamp(28px, 4vw, 38px);
    color: var(--navy);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
    font-weight: 800;
}
.legal .meta {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 32px;
}
.legal h2 {
    font-size: 22px;
    color: var(--navy);
    margin: 36px 0 12px;
    font-weight: 700;
}
.legal h3 {
    font-size: 17px;
    color: var(--navy);
    margin: 24px 0 8px;
    font-weight: 600;
}
.legal p { margin: 0 0 14px; }
.legal ul {
    padding-left: 22px;
    margin: 0 0 16px;
}
.legal ul li { margin-bottom: 6px; }
.legal a { color: var(--green-deep); }
.legal hr {
    border: none;
    border-top: 1px solid rgba(47, 62, 70, 0.1);
    margin: 28px 0;
}
.legal code {
    background: var(--green-soft);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
}
