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

html {
    overflow-x: clip;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #1a2e2a;
    background-color: #f4faf7;
    overflow-x: hidden;
}

/* ── Nav ── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0b4f3a;
    padding: 14px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.logo span {
    color: #4ecba0;
}

nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

nav a {
    color: #cde8dd;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 5px;
    transition: background 0.2s;
    white-space: nowrap;
}

nav a:hover {
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
}

nav a.sample-reports-link,
nav a.sample-reports-link:visited {
    /* color: #ff4d4f !important; */
    font-weight: 700;
}


nav a.sample-reports-link:hover {
    color: #ff6b6b !important;
    background-color: rgba(255, 77, 79, 0.12);
}

.nav-cta {
    background-color: #4ecba0;
    color: #0b4f3a !important;
    font-weight: 700 !important;
    padding: 9px 20px !important;
    border-radius: 6px;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background-color: #3ab88d !important;
    transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
    margin-top: 60px;
    /* background: linear-gradient(135deg, #0b4f3a 0%, #0d6e52 50%, #1a8a68 100%); */
    background-image: url('images/wb_screenshot.PNG');
    background-size: cover;        /* fills the full section */
    background-position: center;   /* centers the image */
    background-repeat: no-repeat;
    padding: 100px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65); /* increase for darker overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    header {
        gap: 14px;
    }

    nav {
        gap: 6px;
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(78,203,160,0.2);
    border: 1px solid #4ecba0;
    color: #4ecba0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero h1 {
    font-size: clamp(30px, 5vw, 56px);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #4ecba0;
}

.hero p {
    font-size: clamp(15px, 2vw, 18px);
    color: #b8ddd0;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

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

.btn-primary {
    background-color: #4ecba0;
    color: #0b4f3a;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-primary:hover {
    background-color: #3ab88d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78,203,160,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.08);
}

/* ── Stats Bar ── */
.stats-bar {
    background-color: #083d2d;
    padding: 28px 5%;
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 28px;
    font-weight: 800;
    color: #4ecba0;
}

.stat-item .label {
    font-size: 13px;
    color: #8cbfb0;
    margin-top: 4px;
}

/* ── Section Shared ── */
section {
    padding: 80px 5%;
}

.section-label {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #1a8a68;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    text-align: center;
    font-size: clamp(24px, 3.5vw, 38px);
    font-weight: 800;
    color: #0b3d2d;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: #4a7060;
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* ── Features ── */
.features {
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: #f4faf7;
    border: 1px solid #d0ece2;
    border-radius: 12px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11,79,58,0.1);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background-color: #e0f5ec;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b3d2d;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #4a7060;
    line-height: 1.7;
}

/* ── Sample Report ── */
.report-preview {
    background-color: #f4faf7;
}

.report-preview-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.report-text {
    flex: 1;
    min-width: 280px;
}

.report-text h2 {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: #0b3d2d;
    margin-bottom: 16px;
    line-height: 1.3;
}

.report-text p {
    font-size: 15px;
    color: #4a7060;
    line-height: 1.8;
    margin-bottom: 14px;
}

.report-checklist {
    list-style: none;
    margin: 20px 0 30px;
}

.report-checklist li {
    font-size: 15px;
    color: #2d6b52;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.report-checklist li::before {
    content: '✓';
    color: #4ecba0;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.report-image-wrap {
    flex: 1;
    min-width: 280px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(11,79,58,0.18);
    border: 3px solid #d0ece2;
}

.report-image-wrap img {
    width: 100%;
    display: block;
}

/* ── Pricing ── */
.apps-section {
    background: linear-gradient(180deg, #eef8f3 0%, #ffffff 100%);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.app-card {
    background: #ffffff;
    border: 1px solid #d0ece2;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 12px 32px rgba(11,79,58,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(11,79,58,0.12);
}

.app-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0f5ec;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #1a8a68;
    margin-bottom: 18px;
}

.app-card h3 {
    font-size: 20px;
    color: #0b3d2d;
    margin-bottom: 12px;
}

.app-card p {
    font-size: 14px;
    color: #4a7060;
    line-height: 1.75;
    margin-bottom: 18px;
}

.app-points {
    list-style: none;
}

.app-points li {
    font-size: 14px;
    color: #2d6b52;
    line-height: 1.6;
    padding: 7px 0 7px 22px;
    position: relative;
}

.app-points li::before {
    content: '+';
    position: absolute;
    left: 6px;
    color: #4ecba0;
    font-weight: 900;
}

/* â”€â”€ Methodology â”€â”€ */
.methodology {
    background-color: #ffffff;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.methodology-card {
    background: #f4faf7;
    border: 1px solid #d0ece2;
    border-radius: 16px;
    padding: 28px;
}

.methodology-card h3 {
    font-size: 20px;
    color: #0b3d2d;
    margin-bottom: 12px;
}

.methodology-card p {
    font-size: 15px;
    color: #4a7060;
    line-height: 1.75;
}

.pricing {
    background-color: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background-color: #f4faf7;
    border: 2px solid #d0ece2;
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(11,79,58,0.12);
}

.pricing-card.featured {
    background: linear-gradient(145deg, #0b4f3a, #1a8a68);
    border-color: #4ecba0;
    color: white;
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4ecba0;
    color: #0b4f3a;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a8a68;
    margin-bottom: 12px;
}

.pricing-card.featured .plan-name {
    color: #b8f0dc;
}

.plan-price {
    font-size: 48px;
    font-weight: 900;
    color: #0b3d2d;
    line-height: 1;
}

.pricing-card.featured .plan-price {
    color: #ffffff;
}

.plan-price sup {
    font-size: 22px;
    vertical-align: super;
    font-weight: 700;
}

.plan-period {
    font-size: 13px;
    color: #6a9e88;
    margin-bottom: 24px;
    margin-top: 4px;
}

.pricing-card.featured .plan-period {
    color: #b8ddd0;
}

.plan-desc {
    font-size: 14px;
    color: #4a7060;
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-card.featured .plan-desc {
    color: #b8ddd0;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    font-size: 14px;
    color: #2d6b52;
    padding: 8px 0;
    border-bottom: 1px solid #d0ece2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card.featured .plan-features li {
    color: #cde8dd;
    border-bottom-color: rgba(255,255,255,0.15);
}

.plan-features li::before {
    content: '✓';
    color: #4ecba0;
    font-weight: 700;
    flex-shrink: 0;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid #1a8a68;
    background-color: transparent;
    color: #1a8a68;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-plan:hover {
    background-color: #1a8a68;
    color: white;
}

.contact-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 24, 19, 0.6);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    padding: 24px;
    z-index: 1200;
}

.contact-modal {
    position: relative;
    width: min(760px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
    border: 1px solid #cfe8de;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(4, 24, 19, 0.24);
    padding: 32px;
}

.contact-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #1a8a68;
    margin-bottom: 10px;
}

.contact-modal h3 {
    font-size: 30px;
    color: #0b3d2d;
    margin-bottom: 10px;
}

.contact-note {
    font-size: 15px;
    color: #537665;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: none;
    background: transparent;
    color: #537665;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

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

.contact-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-field-wide {
    grid-column: 1 / -1;
}

.contact-field span {
    font-size: 13px;
    font-weight: 700;
    color: #0b4f3a;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid #cfe8de;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1a2e2a;
    background: #ffffff;
    font-family: inherit;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    outline: none;
    border-color: #4ecba0;
    box-shadow: 0 0 0 4px rgba(78, 203, 160, 0.18);
}

.contact-field textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.contact-submit {
    border: none;
    background: linear-gradient(135deg, #0b4f3a, #1a8a68);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.contact-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(11, 79, 58, 0.2);
}

.contact-submit:disabled {
    opacity: 0.7;
    cursor: wait;
}

.contact-status {
    font-size: 14px;
    color: #537665;
}

.contact-status.is-success {
    color: #1a8a68;
    font-weight: 700;
}

.contact-status.is-error {
    color: #b33a3a;
    font-weight: 700;
}

.contact-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.pricing-card.featured .btn-plan {
    background-color: #4ecba0;
    border-color: #4ecba0;
    color: #0b4f3a;
}

.pricing-card.featured .btn-plan:hover {
    background-color: #3ab88d;
    border-color: #3ab88d;
}

/* ── Testimonials ── */
.testimonials {
    background-color: #083d2d;
    padding: 80px 5%;
}

.testimonials .section-title {
    color: #ffffff;
}

.testimonials .section-sub {
    color: #8cbfb0;
}

.testimonials .section-label {
    color: #4ecba0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(78,203,160,0.2);
    border-radius: 12px;
    padding: 28px;
}

.testimonial-text {
    font-size: 15px;
    color: #cde8dd;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4ecba0, #1a8a68);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.author-title {
    font-size: 12px;
    color: #8cbfb0;
    margin-top: 2px;
}

/* ── CTA Banner ── */
.cta-banner {
    background: linear-gradient(135deg, #4ecba0, #1a8a68);
    padding: 80px 5%;
    text-align: center;
}

.cta-banner h2 {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: #0b3d2d;
    margin-bottom: 14px;
}

.cta-banner p {
    font-size: 16px;
    color: #0b4f3a;
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-banner .btn-dark {
    display: inline-block;
    background-color: #0b4f3a;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.cta-banner .btn-dark:hover {
    background-color: #083d2d;
    transform: translateY(-2px);
}

/* ── Footer ── */
footer {
    background-color: #061f17;
    padding: 60px 5% 30px;
    color: #8cbfb0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-brand .logo {
    font-size: 20px;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: #8cbfb0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #4ecba0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}

.footer-bottom a {
    color: #8cbfb0;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #4ecba0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .report-preview-inner {
        flex-direction: column;
    }

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

    .contact-modal {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    header {
        padding: 10px 4%;
    }

    nav a:not(.nav-cta) {
        display: none;
    }

    .stats-bar {
        gap: 30px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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