:root {
    --cream-50: #f8f1e8;
    --cream-100: #f4e7da;
    --cream-200: #e3d3c0;
    --forest-700: #2f4f4f;
    --forest-900: #253633;
    --sand-500: #c6a072;
    --rose-400: #dd8c7b;
    --charcoal: #202020;
    --muted: #7b7b7b;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--forest-900);
    background-color: var(--cream-50);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.header {
    background: var(--white);
    border-bottom: 1px solid rgba(37, 54, 51, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
}

.header__inner {
    margin: 0 auto;
    padding: 1.5rem 1rem;
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand__mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--sand-500), var(--rose-400));
    display: grid;
    place-items: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.brand__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest-900);
}

.header__login {
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    background: var(--forest-700);
    color: var(--white);
    font-weight: 600;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.header__login:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(47, 79, 79, 0.18);
}

.hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1rem 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.hero__content h1 {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 1.5rem;
    color: var(--forest-900);
}

.hero__content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button-primary {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    background: var(--sand-500);
    color: var(--forest-900);
    font-weight: 600;
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.button-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(198, 160, 114, 0.25);
}

.button-secondary {
    padding: 0.9rem 1.8rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 54, 51, 0.2);
    font-weight: 600;
}

.hero__card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 50px rgba(37, 54, 51, 0.08);
    position: relative;
    overflow: hidden;
}

.hero__card::after {
    content: '';
    position: absolute;
    inset: auto -30% -60% 40%;
    height: 220px;
    background: radial-gradient(circle at top, rgba(221, 140, 123, 0.25), transparent 70%);
    transform: rotate(-12deg);
}

.hero__stats {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat strong {
    font-size: 2rem;
    color: var(--forest-700);
}

.hero__stat span {
    color: var(--muted);
}

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 1rem;
}

.section__heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.section__heading h2 {
    font-size: 2.2rem;
    color: var(--forest-900);
    margin-bottom: 1rem;
}

.section__heading p {
    color: var(--muted);
    line-height: 1.6;
}

.pricing-table-container {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(37, 54, 51, 0.08);
    overflow: hidden;
    min-width: 640px;
}

.pricing-table caption {
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    color: var(--forest-700);
}

.pricing-table th,
.pricing-table td {
    padding: 1.1rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(37, 54, 51, 0.08);
}

.pricing-table thead th {
    background: rgba(47, 79, 79, 0.08);
    font-size: 1rem;
    font-weight: 700;
    color: var(--forest-900);
}

.pricing-table tbody th {
    text-align: left;
    font-weight: 600;
    color: var(--forest-900);
}

.pricing-badge {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: var(--sand-500);
    color: var(--forest-900);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.pricing-table__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    font-size: 1rem;
}

.pricing-table__icon--yes {
    background: rgba(47, 79, 79, 0.12);
    color: var(--forest-700);
}

.pricing-table__icon--no {
    background: rgba(221, 140, 123, 0.15);
    color: var(--rose-400);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(37, 54, 51, 0.08);
    box-shadow: 0 16px 30px rgba(37, 54, 51, 0.05);
    display: grid;
    gap: 1rem;
}

.feature-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(47, 79, 79, 0.08);
    color: var(--forest-700);
    font-weight: 600;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 0;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.section--contrast {
    background: linear-gradient(135deg, rgba(37, 54, 51, 0.95), rgba(47, 79, 79, 0.85));
    color: var(--white);
}

.section--contrast .section__heading h2,
.section--contrast .section__heading p {
    color: inherit;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: rgba(248, 241, 232, 0.08);
    border-radius: 18px;
    padding: 2rem;
    display: grid;
    gap: 1rem;
}

.highlight-card h3 {
    margin: 0;
    font-size: 1.35rem;
}

.highlight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid rgba(37, 54, 51, 0.08);
    box-shadow: 0 12px 30px rgba(37, 54, 51, 0.06);
    display: grid;
    gap: 1.5rem;
}

.testimonial-card__quote {
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--forest-700);
}

.cta {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 28px 50px rgba(37, 54, 51, 0.12);
}

.cta h2 {
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    color: var(--muted);
}

.footer {
    margin-top: 4rem;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(37, 54, 51, 0.1);
    background: var(--white);
    color: var(--muted);
}

.footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (max-width: 720px) {
    .hero {
        padding-top: 3rem;
    }

    .hero__card {
        padding: 2rem;
    }

    .pricing-table {
        min-width: 100%;
    }
}
