:root {
    --bg: #ffffff;
    --text: #1f4736;
    --muted: #4b5260;
    --line: #dceee5;
    --accent: #3f8a65;
    --accent-dark: #2d6e50;
    --accent-soft: #f0f7f4;
    --charcoal-800: #363a44;
    --radius: 18px;
    --card-shadow: 0 10px 30px rgba(31, 71, 54, 0.08);
    --card-shadow-hover: 0 16px 35px rgba(31, 71, 54, 0.14);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
}

.brand img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.brand .paleclover-badge {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.header-links {
    display: none;
    align-items: center;
    gap: 1.25rem;
}

.header-links a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-links a:hover {
    color: var(--accent-dark);
}

.hero {
    background: linear-gradient(135deg, var(--accent-soft) 0%, #ffffff 55%, var(--accent-soft) 100%);
    padding-top: 3.7rem;
}

.hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 1.2rem 0 4.3rem;
}

.eyebrow {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 0.6rem;
}

.beta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: #ffffff;
    border: 1px solid #b9dccb;
    color: var(--accent-dark);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    margin: 0 0 1.1rem;
    box-shadow: 0 4px 14px rgba(63, 138, 101, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.beta-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(63, 138, 101, 0.18);
}

.beta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(63, 138, 101, 0.55);
    animation: beta-pulse 1.8s ease-out infinite;
}

@keyframes beta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 138, 101, 0.55);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(63, 138, 101, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(63, 138, 101, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .beta-dot {
        animation: none;
    }
}

/* ── Beta section ── */
.beta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-soft) 100%);
}

.beta-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 44px rgba(31, 71, 54, 0.10);
    padding: clamp(1.6rem, 4vw, 2.6rem);
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.beta-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, #8dc4a9 100%);
}

.beta-card-content {
    text-align: center;
}

.beta-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.beta-card h2 {
    margin: 0 0 0.85rem;
    font-size: clamp(1.6rem, 3.6vw, 2.3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #1f4736;
}

.beta-card > .beta-card-content > p {
    margin: 0 auto 1.4rem;
    max-width: 60ch;
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.04rem;
}

.beta-features {
    list-style: none;
    margin: 0 auto 1.7rem;
    padding: 0;
    display: inline-grid;
    gap: 0.55rem;
    text-align: left;
}

.beta-features li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #1f4736;
    font-weight: 500;
    line-height: 1.5;
}

.beta-cta-row {
    margin-top: 0.4rem;
}

.beta-note {
    margin: 1.3rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.beta-note a {
    color: var(--accent-dark);
    text-decoration: underline;
}

h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.2rem, 5.6vw, 3.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #1f4736;
}

.hero p {
    margin: 0 auto 1.75rem;
    max-width: 62ch;
    line-height: 1.75;
    color: var(--muted);
    font-size: clamp(1rem, 2.1vw, 1.16rem);
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid transparent;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.78rem 1.2rem;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--accent);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(63, 138, 101, 0.22);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #ffffff;
    color: var(--accent-dark);
    border-color: #8dc4a9;
}

.btn-secondary:hover {
    background: var(--accent-soft);
}

.hero-strip {
    background: var(--charcoal-800);
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    padding: 0.95rem 0;
    letter-spacing: 0.01em;
}

section {
    padding: 4.5rem 0;
}

.section-alt {
    background: #f8fbf9;
}

.section-title {
    margin: 0 0 1rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #1f4736;
}

.section-lead {
    margin: 0 0 1.7rem;
    color: var(--muted);
    max-width: 65ch;
    line-height: 1.7;
    font-size: 1.04rem;
}

.grid-3 {
    display: grid;
    gap: 1rem;
}

.card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: 1.2rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
}

.card h3 {
    margin: 0 0 0.48rem;
    font-size: 1.1rem;
    color: #1f4736;
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.screenshots-section .phone-shot {
    box-shadow: var(--card-shadow);
}

.phone-shot {
    background: #ffffff;
    border: 1px solid #d2e0d8;
    border-radius: 22px;
    overflow: hidden;
}

.steps {
    counter-reset: step;
}

.step {
    position: relative;
    padding-left: 2.75rem;
}

.step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dceee5;
    color: var(--accent-dark);
    font-weight: 700;
}

.pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.pill {
    border: 1px solid #b9dccb;
    border-radius: 999px;
    padding: 0.58rem 1rem;
    background: #ffffff;
    color: #245841;
    font-weight: 600;
}

.trust {
    background: #f0f7f4;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.85;
}

.trust-note {
    margin: 1rem 0 0;
    max-width: 68ch;
    color: var(--muted);
    line-height: 1.75;
}

.footer {
    background: #0f1a15;
    color: #d1d5db;
    padding: 2.4rem 0 2.7rem;
}

.footer .brand {
    color: #ffffff;
}

.footer-grid {
    display: grid;
    gap: 1.2rem;
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
}

.legal-links a {
    text-decoration: none;
    color: #8dc4a9;
    font-weight: 600;
}

.legal-links a:hover {
    color: #b9dccb;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    align-items: center;
}

.social-links a {
    color: #8dc4a9;
    transition: color 0.2s;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    color: #ffffff;
}

.muted {
    color: #9ca3af;
}

.legal-main {
    padding: 2.8rem 0 3.2rem;
}

.legal-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: clamp(1rem, 2.5vw, 2rem);
}

.legal-card h1 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.7rem, 3.8vw, 2.5rem);
}

.legal-card h2 {
    margin: 1.45rem 0 0.5rem;
    font-size: 1.15rem;
}

.legal-card p,
.legal-card li {
    color: #3f4450;
    line-height: 1.78;
}

.legal-card ul {
    margin-top: 0.45rem;
}

.nav-cta {
    display: none;
    padding: 0.55rem 1.05rem;
    font-size: 0.9rem;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    width: 40px;
    height: 40px;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.6rem;
    background: #ffffff;
    border-bottom: 1px solid var(--line);
    padding: 1rem 4vw 1.2rem;
}

.mobile-nav.is-open {
    display: flex;
}

.mobile-nav a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0.3rem 0;
}

.mobile-nav .btn {
    margin-top: 0.4rem;
    text-align: center;
}

.footer-nav-label {
    margin: 0 0 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6b7280;
}

/* ── Shared page header ── */
.page-hero {
    background: linear-gradient(135deg, var(--accent-soft) 0%, #ffffff 55%, var(--accent-soft) 100%);
    padding: 3.5rem 0 3rem;
    text-align: center;
}

.page-hero h1 {
    margin: 0 0 0.9rem;
}

.page-hero .section-lead {
    margin: 0 auto;
    max-width: 64ch;
}

/* ── Feature icon cards ── */
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--accent-soft);
    display: grid;
    place-items: center;
    margin-bottom: 0.9rem;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--accent-dark);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ── Pricing ── */
.pricing-card {
    background: #ffffff;
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    box-shadow: 0 16px 40px rgba(63, 138, 101, 0.14);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 460px;
    margin: 0 auto;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    margin-bottom: 1.2rem;
}

.pricing-price {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #1f4736;
    line-height: 1;
    letter-spacing: -0.04em;
}

.pricing-price sup {
    font-size: 0.45em;
    vertical-align: top;
    margin-top: 0.35em;
}

.pricing-label {
    color: var(--muted);
    font-size: 1rem;
    margin: 0.4rem 0 1.5rem;
}

.pricing-includes {
    list-style: none;
    margin: 0 0 1.8rem;
    padding: 0;
    text-align: left;
}

.pricing-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--line);
    color: #1f4736;
    font-weight: 500;
    line-height: 1.5;
}

.pricing-includes li:last-child {
    border-bottom: none;
}

.check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dceee5;
    display: grid;
    place-items: center;
    margin-top: 0.1rem;
}

.check-icon svg {
    width: 13px;
    height: 13px;
    stroke: var(--accent-dark);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pricing-note {
    color: var(--muted);
    font-size: 0.88rem;
    margin-top: 1rem;
    line-height: 1.6;
}

/* ── About ── */
.about-content {
    max-width: 780px;
}

.about-content h2 {
    font-size: clamp(1.55rem, 3.5vw, 2.2rem);
    color: #1f4736;
    margin: 2.5rem 0 0.75rem;
    letter-spacing: -0.02em;
}

.about-content p,
.about-content li {
    color: var(--muted);
    line-height: 1.8;
    font-size: 1.04rem;
}

.about-content ul {
    padding-left: 1.2rem;
    margin: 0.6rem 0 1rem;
}

.about-content ul li {
    margin-bottom: 0.4rem;
}

.mission-block {
    background: var(--accent-soft);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.4rem 1.6rem;
    margin: 1.5rem 0;
}

.mission-block p {
    margin: 0;
    color: #1f4736 !important;
    font-weight: 500;
}

/* ── Contact ── */
.contact-form-wrap {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 640px;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #1f4736;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1.5px solid #c8ddd4;
    border-radius: 10px;
    padding: 0.72rem 0.9rem;
    font-family: inherit;
    font-size: 1rem;
    color: #1f4736;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(63, 138, 101, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-info-cards {
    display: grid;
    gap: 1rem;
}

.contact-info-card {
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.3rem 1.4rem;
    box-shadow: var(--card-shadow);
}

.contact-info-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    color: #1f4736;
}

.contact-info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.contact-info-card .placeholder-tag {
    display: inline-block;
    background: #f3f4f6;
    border: 1px dashed #9ca3af;
    color: #6b7280;
    border-radius: 6px;
    font-size: 0.82rem;
    padding: 0.2rem 0.55rem;
    margin-top: 0.3rem;
}

/* ── PDF sample cards ── */
.pdf-card {
    display: flex;
    flex-direction: column;
}

.pdf-btn {
    margin-top: auto;
    text-align: center;
    display: block;
}

.section-note {
    margin: 1.8rem 0 0;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 72ch;
}

.contact-layout {
    display: grid;
    gap: 2.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 760px) {
    .header-links {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr auto auto;
        align-items: start;
        gap: 2rem;
    }

    .contact-info-cards {
        grid-template-columns: 1fr 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}
