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

:root {
    --green: #496520;
    --green-dark: #2D3D12;
    --green-light: #EEF3E6;
    --green-border: #C5D4A8;
    --brown: #6B583C;
    --brown-light: #F5F0E8;
    --white: #FFFFFF;
    --bg: #F7F6F2;
    --text: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #888;
    --border: #E4E4DF;
    --shadow: 0 2px 16px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 100;
}

.nav-logo {
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-logo .rootz {
    color: var(--brown);
}

.nav-logo .amp {
    color: var(--text-muted);
    margin: 0 2px;
}

.nav-logo .branches {
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline {
    padding: 10px 22px;
    border: 1.5px solid var(--green);
    border-radius: 10px;
    color: var(--green);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
}

.btn-outline:hover {
    background: var(--green-light);
}

.btn-primary {
    padding: 10px 22px;
    background: var(--green);
    border: 1.5px solid var(--green);
    border-radius: 10px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-primary-lg {
    padding: 16px 40px;
    background: var(--green);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary-lg:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,140,47,0.35);
}

.btn-outline-lg {
    padding: 16px 40px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 12px;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline-lg:hover {
    background: rgba(255,255,255,0.12);
    border-color: white;
}

/* ── HERO ── */
.hero {
    margin-top: 80px;
    height: 74vh;
    min-height: 560px;
    max-height: 800px;
    display: grid;
    grid-template-columns: 55% 45%;
    overflow: hidden;
}

.hero-image-panel {
    background: url('hero-bg.png') center 30% / cover no-repeat;
    position: relative;
}

.hero-image-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 70%, rgba(31,140,47,0.15));
}

.hero-content-panel {
    background: linear-gradient(150deg, #496520 0%, #2D3D12 55%, #6B583C 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 56px 56px 52px;
    position: relative;
    overflow: hidden;
}

.hero-content-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 100px;
    padding: 7px 16px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
    width: fit-content;
}

.hero-title {
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-title em {
    font-style: normal;
    color: rgba(255,255,255,0.65);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-stat {
    padding-right: 28px;
}

.hero-stat:last-child {
    padding-right: 0;
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.18);
    margin-right: 28px;
}

.hero-stat-value {
    font-size: 26px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    margin-top: 4px;
}

/* ── CONTAINER ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 900;
    color: var(--text);
    line-height: 1.13;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 520px;
    line-height: 1.75;
}

/* ── FEATURES ── */
.features {
    background: var(--white);
    padding: 100px 48px;
}

.features-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 72px;
}

.features-collage {
    position: relative;
    height: 480px;
}

.collage-main {
    position: absolute;
    top: 0;
    left: 60px;
    right: 0;
    bottom: 60px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.collage-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.collage-top-right {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    border: 4px solid white;
    z-index: 2;
}

.collage-top-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.collage-bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.22);
    border: 4px solid white;
    z-index: 2;
}

.collage-bottom-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.features-photo-badge {
    position: absolute;
    bottom: 80px;
    right: 10px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    z-index: 3;
}

.badge-icon {
    font-size: 28px;
    line-height: 1;
}

.badge-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--text);
}

.badge-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-border);
}

.feature-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ── HOW IT WORKS ── */
.how {
    background: var(--bg);
    padding: 0;
}

.how-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

.how-photo-panel {
    position: relative;
    overflow: hidden;
}

.how-photo-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.how-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22,107,34,0.92) 0%, transparent 100%);
    padding: 48px 40px 40px;
}

.how-quote {
    font-size: 20px;
    font-weight: 700;
    color: white;
    line-height: 1.5;
    font-style: italic;
}

.how-content-panel {
    background: white;
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.how-content-panel .section-title {
    margin-bottom: 12px;
}

.how-content-panel .section-subtitle {
    margin-bottom: 48px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    position: relative;
    padding-bottom: 40px;
}

.step:last-child {
    padding-bottom: 0;
}

.step::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 56px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--green-border), transparent);
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(31,140,47,0.3);
}

.step-content {
    padding-top: 12px;
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.how-cta {
    display: inline-flex;
    align-items: center;
    margin-top: 44px;
    color: var(--green);
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    gap: 4px;
    transition: gap 0.2s;
}

.how-cta:hover {
    gap: 10px;
}

/* ── PRICING ── */
.pricing {
    background: var(--white);
    padding: 100px 48px;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    margin: 32px 0 52px;
    gap: 4px;
}

.toggle-btn {
    padding: 9px 22px;
    border-radius: 9px;
    border: none;
    background: transparent;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.toggle-btn.active {
    background: white;
    color: var(--text);
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

.save-badge {
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.pricing-card.popular {
    background: var(--green);
    border-color: var(--green);
    color: white;
    transform: translateY(-10px);
}

.pricing-card.popular:hover {
    transform: translateY(-14px);
}

.popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brown);
    color: white;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 100px;
    white-space: nowrap;
}

.plan-name {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    opacity: 0.65;
}

.plan-price {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.plan-price sup {
    font-size: 22px;
    vertical-align: top;
    margin-top: 10px;
}

.plan-period {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 24px;
}

.plan-desc {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 28px;
    line-height: 1.65;
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 36px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.plan-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

.plan-features li.plan-feature-no::before {
    content: '✕';
    background: #FEE2E2;
    color: #DC2626;
}

.plan-addons {
    border-top: 1px solid var(--border);
    margin-top: 16px;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.plan-addon {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-card.popular .plan-addons {
    border-color: rgba(255,255,255,0.2);
}

.pricing-card.popular .plan-addon {
    color: rgba(255,255,255,0.75);
}

.pricing-card.popular .plan-features li::before {
    background: rgba(255,255,255,0.2);
    color: white;
}

.plan-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
}

.plan-btn-outline {
    background: transparent;
    border: 2px solid var(--green);
    color: var(--green);
}

.plan-btn-outline:hover {
    background: var(--green-light);
}

.plan-btn-white {
    background: white;
    border: 2px solid white;
    color: var(--green);
}

.plan-btn-white:hover {
    background: rgba(255,255,255,0.9);
}

.trust {
    background: var(--bg);
    padding: 100px 48px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
}

.trust-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

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

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.trust-card-title {
    font-size: 17px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 10px;
}

.trust-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ── CTA ── */
.cta-section {
    background: linear-gradient(150deg, #496520 0%, #2D3D12 55%, #6B583C 100%);
    padding: 100px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '🌳';
    position: absolute;
    font-size: 320px;
    opacity: 0.04;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    color: white;
    margin-bottom: 18px;
    position: relative;
    letter-spacing: -0.3px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 44px;
    position: relative;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── FOOTER ── */
footer {
    background: #181818;
    color: rgba(255,255,255,0.55);
    padding: 64px 48px 40px;
}

.footer-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand-name {
    font-size: 19px;
    font-weight: 900;
    color: white;
    margin-bottom: 14px;
}

.footer-brand-name span {
    color: var(--green);
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 800;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1180px;
    margin: 32px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* ── HAMBURGER ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px 28px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    padding: 13px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--bg);
}

.mobile-menu-cta {
    background: var(--green) !important;
    color: white !important;
    text-align: center;
    margin-top: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1114px) {
    nav {
        padding: 0 24px;
        height: 72px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .mobile-menu {
        top: 72px;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
        max-height: none;
        margin-top: 72px;
    }

    .hero-image-panel {
        height: 320px;
        min-height: unset;
    }

    .hero-content-panel {
        padding: 44px 28px 56px;
    }

    .features {
        padding: 72px 24px;
    }

    .trust,
    .pricing {
        padding: 72px 24px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    footer {
        padding: 52px 24px 36px;
    }

    .features-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .features-collage {
        height: 320px;
    }

    .collage-top-right {
        width: 120px;
        height: 150px;
        right: -10px;
        top: -10px;
    }

    .collage-bottom-left {
        width: 140px;
        height: 110px;
    }

    .features-photo-badge {
        bottom: 50px;
        right: 5px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .how-inner {
        grid-template-columns: 1fr;
    }

    .how-photo-panel {
        height: 320px;
    }

    .how-content-panel {
        padding: 52px 28px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .btn-primary-lg,
    .btn-outline-lg {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (min-width: 961px) and (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── SUBSCRIBE PAGE PLAN BUTTONS ── */
.plan-select-btn {
    width: 100%;
    padding: 15px;
    border-radius: 14px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    border: none;
    background: var(--green);
    color: white;
    transition: all 0.2s;
}

.plan-select-btn:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31,140,47,0.35);
}

.plan-card.popular .plan-select-btn {
    background: white;
    color: var(--green);
    border: none;
}

.plan-card.popular .plan-select-btn:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
