:root {
    --bg: #f5f3ee;
    --surface: #ffffff;
    --surface-soft: #ece9e1;
    --text: #1f2724;
    --muted: #66706b;
    --border: #d9ddd9;
    --primary: #2f6b55;
    --primary-dark: #245340;
    --accent: #dbe9df;
    --danger-bg: #fff0ef;
    --danger: #a72e2e;
    --shadow: 0 24px 70px rgba(37, 57, 48, 0.12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.narrow {
    width: min(760px, calc(100% - 40px));
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(217, 221, 217, 0.8);
    background: rgba(245, 243, 238, 0.9);
    backdrop-filter: blur(14px);
}

.nav,
.footer-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.container.brand {
    align-items: center;
}

.brand img {
    display: block;
    width: auto;
    height: 40px;
    max-width: 270px;
    object-fit: contain;
}

@media (max-width: 760px) {
    .brand img {
        height: 30px;
        max-width: 200px;
    }
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
}

.hero {
    padding: 72px 0 92px;
    background:
        radial-gradient(circle at 12% 20%, rgba(177, 207, 190, 0.35), transparent 28%),
        radial-gradient(circle at 86% 15%, rgba(224, 211, 177, 0.35), transparent 24%);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.88fr);
    gap: 64px;
    align-items: center;
}

.hero-copy h1,
.result-hero h1 {
    margin: 12px 0 20px;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-text,
.lead {
    color: var(--muted);
    font-size: 1.14rem;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
    color: #3f4b45;
    font-weight: 650;
}

.eyebrow {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.form-card,
.comparison-card {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.93);
    box-shadow: var(--shadow);
}

.form-card {
    padding: 30px;
}

.form-card-heading h2,
.section-heading h2,
.content-grid h2,
.comparison-toolbar h2,
.cta-box h2 {
    margin: 6px 0 8px;
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.form-card-heading p,
.section-heading p,
.products-heading p,
.cta-box p {
    margin: 0;
    color: var(--muted);
}

.step-badge,
.demo-label {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 800;
}

.upload-box {
    min-height: 170px;
    margin: 24px 0;
    padding: 24px;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 1.5px dashed #aab7b0;
    border-radius: 18px;
    background: #fafbf9;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-box:hover {
    border-color: var(--primary);
    background: #f4f8f5;
}

.upload-box input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.upload-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.8rem;
}

.upload-box strong {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.upload-box > span:last-child {
    color: var(--muted);
    font-size: 0.9rem;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: block;
    margin-bottom: 18px;
}

.field > span {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
    font-weight: 750;
}

.field select {
    width: 100%;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.primary-button {
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

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

.inline-button {
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-note {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    text-align: center;
}

.alert {
    padding: 13px 15px;
    margin: 18px 0;
    border-radius: 12px;
}

.alert-error {
    background: var(--danger-bg);
    color: var(--danger);
}

.section {
    padding: 88px 0;
}

.section-tight {
    padding-top: 52px;
}

.section-muted {
    background: var(--surface-soft);
}

.section-heading {
    max-width: 700px;
    margin-bottom: 34px;
}

.steps-grid,
.changes-grid,
.products-grid {
    display: grid;
    gap: 20px;
}

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

.step-card,
.change-card,
.product-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--surface);
}

.step-card > span,
.change-card > span {
    color: var(--primary);
    font-weight: 850;
}

.step-card h3,
.change-card h3,
.product-card h3 {
    margin: 14px 0 8px;
    line-height: 1.2;
}

.step-card p,
.change-card p,
.product-card p {
    margin: 0;
    color: var(--muted);
}

.result-main {
    min-height: 70vh;
}

.result-hero {
    padding: 62px 0 24px;
    text-align: center;
}

.result-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.result-hero p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.comparison-card {
    overflow: hidden;
}

.comparison-toolbar {
    padding: 25px 28px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.comparison {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #dfe3df;
	cursor: ew-resize;
	touch-action: none;
	user-select: none;
}

.comparison-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-after-wrap {
    position: absolute;
    inset: 0 auto 0 0;
    width: 50%;
    overflow: hidden;
}

.comparison-after {
    width: calc(100vw - 40px);
    max-width: 1160px;
}

.comparison-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    pointer-events: none;
}

.comparison-divider::after {
    content: "↔";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    color: var(--primary);
    font-weight: 900;
}

.comparison-label {
    position: absolute;
    top: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(18, 26, 22, 0.72);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
}

.before-label {
    left: 18px;
}

.after-label {
    right: 18px;
}

.comparison-range-label {
    padding: 20px 28px 25px;
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 700;
	display: none;
}

.comparison-range-label input {
    width: 100%;
    margin-top: 10px;
    accent-color: var(--primary);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 52px;
    align-items: start;
}

.summary-card {
    padding: 22px;
    display: grid;
    gap: 16px;
    border-radius: 20px;
    background: var(--surface);
}

.summary-card div {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.summary-card div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.summary-card span,
.summary-card strong {
    display: block;
}

.summary-card span {
    color: var(--muted);
    font-size: 0.8rem;
}

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

.change-card {
    min-height: 230px;
}

.products-heading {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.products-heading > p {
    max-width: 410px;
}

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

.product-card {
    display: flex;
    flex-direction: column;
}

.product-card p {
    flex: 1;
}

.product-card a {
    margin-top: 18px;
    color: var(--primary);
    font-weight: 800;
    text-decoration: none;
}

.product-icon {
    width: 43px;
    height: 43px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.2rem;
}

.disclaimer-box {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid #d7caa6;
    border-radius: 14px;
    background: #fffaf0;
    color: #5c5136;
}

.cta-section {
    padding-top: 64px;
}

.cta-box {
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-radius: var(--radius);
    background: var(--text);
    color: white;
}

.cta-box p {
    color: #bdc5c1;
}

.site-footer {
    border-top: 1px solid var(--border);
    color: var(--muted);
    font-size: 0.86rem;
}

@media (max-width: 1000px) {
    .hero-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 42px;
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .hero {
        padding: 48px 0 60px;
    }

    .hero-copy h1 {
        font-size: 3.15rem;
    }

    .form-card {
        padding: 21px;
    }

    .field-grid,
    .steps-grid,
    .changes-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .comparison-toolbar,
    .products-heading,
    .cta-box,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
    .footer-inner {
        align-items: center;
		justify-content: center;
		gap: 5px;
    }

    .comparison {
        aspect-ratio: 4 / 3;
    }

    .comparison-after {
        width: calc(100vw - 24px);
    }

    .change-card {
        min-height: auto;
    }

    .nav {
        min-height: 64px;
    }
}


.brand img{display:block;width:auto;height:50px;max-width:300px;object-fit:contain}.field textarea,.field input[type="email"]{width:100%;padding:13px 14px;border:1px solid var(--border);border-radius:13px;background:#fff;color:var(--text);font:inherit;resize:vertical}.uploaded-room-card{position:relative;overflow:hidden;border-radius:24px;background:#fff;border:1px solid var(--border)}.uploaded-room-card img{display:block;width:100%;max-height:650px;object-fit:cover}.uploaded-room-card span{position:absolute;left:16px;bottom:16px;padding:7px 11px;border-radius:999px;background:rgba(20,30,25,.75);color:#fff;font-size:.78rem;font-weight:800}.assessment-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.assessment-grid .change-card{min-height:auto}.product-chip-grid{display:flex;flex-wrap:wrap;gap:12px}.product-chip{padding:12px 16px;border:1px solid var(--border);border-radius:999px;background:#fff;font-weight:700}.center-heading{max-width:760px;margin-left:auto;margin-right:auto;text-align:center}.pricing-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;max-width:900px;margin:0 auto}.pricing-card{position:relative;padding:32px;border:1px solid var(--border);border-radius:24px;background:#fff}.pricing-card.featured{border:2px solid var(--primary)}.pricing-card h3{margin:0}.price{margin:12px 0;font-size:2.5rem;font-weight:850;letter-spacing:-.05em}.pricing-card ul{padding-left:20px;margin:20px 0 28px}.pricing-card li{margin:8px 0}.popular-badge{position:absolute;right:20px;top:20px;padding:6px 10px;border-radius:999px;background:var(--accent);color:var(--primary-dark);font-size:.75rem;font-weight:800}.early-card{text-align:center}.early-card h1{font-size:clamp(2.2rem,5vw,4rem);line-height:1;letter-spacing:-.055em}.selected-plan{margin:24px 0;padding:18px;display:flex;justify-content:space-between;border-radius:16px;background:var(--surface-soft);font-size:1.1rem}.legal{max-width:760px}.legal h1{font-size:3rem;letter-spacing:-.05em}.legal h2{margin-top:34px}@media(max-width:760px){.brand img{height:40px;max-width:220px}.assessment-grid,.pricing-grid{grid-template-columns:1fr}.selected-plan{align-items:flex-start;flex-direction:column;gap:8px}}

/* Pricing v3 */
.pricing-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1180px;
    align-items: stretch;
}

.pricing-grid-three .pricing-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.pricing-grid-three .pricing-card ul {
    flex: 1;
}

.pricing-grid-three .pricing-card.featured {
    transform: translateY(-10px);
    box-shadow: 0 22px 60px rgba(37, 74, 57, 0.14);
}

.plan-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.08em;
}

.billing-note {
    margin-top: -8px;
    color: var(--muted);
    font-size: 0.82rem;
}

.plan-description {
    min-height: 68px;
    color: var(--muted);
    line-height: 1.55;
}

.price-coming {
    font-size: 2rem;
    letter-spacing: -0.035em;
}

.pro-card {
    border-color: rgba(29, 62, 47, 0.34);
}

.secondary-plan-button {
    width: 100%;
    min-height: 54px;
    padding: 14px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    border-radius: 14px;
    background: #fff;
    color: var(--primary);
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.secondary-plan-button:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

@media (max-width: 980px) {
    .pricing-grid-three {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .pricing-grid-three .pricing-card.featured {
        transform: none;
    }

    .plan-description {
        min-height: 0;
    }
}
