/* ── 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('/assets/images/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(73,101,32,0.15));
}

.hero-content-panel {
    background: linear-gradient(150deg, #496520 0%, #3d5a1a 60%, #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;
}

/* ── 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(45,61,18,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(73,101,32,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 ── */
.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%, #3d5a1a 60%, #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;
}

/* ── RESPONSIVE ── */
@media (max-width: 1114px) {
    .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;
    }

    .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);
    }
}

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

/* ── FUNERAL PLAN SECTION ── */
.funeral-plan-section {
    background: white;
    padding: 100px 48px;
}

.funeral-plan-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.funeral-plan-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
    margin-bottom: 8px;
}

.funeral-plan-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.funeral-plan-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.funeral-plan-feature-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

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

/* ── CARD PREVIEW ── */
.funeral-plan-visual {
    position: relative;
}

.funeral-plan-card-preview {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.fp-preview-header {
    background: linear-gradient(135deg, #496520, #2D3D12);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fp-preview-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.fp-preview-title {
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.fp-preview-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    margin-top: 2px;
}

.fp-preview-badge {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.fp-preview-rows {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.fp-preview-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}

.fp-preview-row:last-child {
    border-bottom: none;
}

.fp-preview-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.fp-preview-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-align: right;
}

.fp-preview-green {
    color: var(--green);
}

.fp-preview-link-bar {
    background: var(--green-light);
    border-top: 1px solid var(--green-border);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
}

.fp-preview-expiry {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

.funeral-plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-light);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    color: var(--green);
    margin-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1114px) {
    .funeral-plan-section {
        padding: 72px 24px;
    }

    .funeral-plan-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .funeral-plan-visual {
        order: -1;
    }
}