:root {
    --green-primary: #1AAE9F;
    --green-secondary: #16A085;
    --navy-primary: #16324F;
    --navy-secondary: #0F2740;
    --text-primary: #16324F;
    --text-secondary: #64748B;
    --background: #F8FAFC;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --shadow-sm: 0 10px 30px rgba(15, 39, 64, .08);
    --shadow-md: 0 22px 55px rgba(15, 39, 64, .12);
    --shadow-lg: 0 34px 85px rgba(15, 39, 64, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.green-landing {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text-primary);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

a {
    color: inherit;
}

.landing-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.landing-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 80px;
    border-bottom: 1px solid rgba(226, 232, 240, .78);
    background: rgba(255, 255, 255, .94);
    transition: background .2s ease, box-shadow .2s ease, backdrop-filter .2s ease;
}

.landing-header.is-scrolled {
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}

.landing-nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand-link img {
    width: 190px;
    max-height: 62px;
    height: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.nav-menu a {
    color: var(--text-secondary);
    font-size: .93rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

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

.mobile-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--navy-primary);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: .86rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    color: var(--text-primary);
    font-size: .94rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 39, 64, .06);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(26, 174, 159, .35);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    border: 0;
    color: #fff !important;
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    box-shadow: 0 16px 35px rgba(26, 174, 159, .28);
}

.btn-primary:hover {
    box-shadow: 0 22px 48px rgba(26, 174, 159, .38);
}

.btn-secondary,
.btn-outline {
    background: #fff;
    color: var(--navy-primary);
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 70px 0 74px;
    background:
        radial-gradient(circle at 82% 18%, rgba(26, 174, 159, .14), transparent 32%),
        linear-gradient(180deg, #F7FCFB 0%, #F8FAFC 100%);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-section::before {
    width: 440px;
    height: 440px;
    top: -240px;
    right: -140px;
    background: rgba(26, 174, 159, .12);
}

.hero-section::after {
    width: 320px;
    height: 320px;
    left: -160px;
    bottom: -190px;
    background: rgba(22, 50, 79, .07);
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-secondary);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.eyebrow {
    padding: 9px 13px;
    border: 1px solid rgba(26, 174, 159, .22);
    border-radius: 999px;
    background: rgba(26, 174, 159, .08);
    letter-spacing: 0;
    text-transform: none;
    font-size: .9rem;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--green-primary);
    box-shadow: 0 0 0 6px rgba(26, 174, 159, .16);
}

.hero-copy h1 {
    max-width: 770px;
    margin: 22px 0 0;
    color: #16324F;
    font-size: clamp(2.55rem, 4.8vw, 4.8rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: .98;
}

.hero-copy h1 span {
    color: var(--green-primary);
}

.hero-copy p {
    max-width: 660px;
    margin: 25px 0 0;
    color: var(--text-secondary);
    font-size: 1.09rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.hero-campaign {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(26, 174, 159, .24);
    border-radius: 26px;
    background:
        radial-gradient(circle at 98% 0%, rgba(26, 174, 159, .16), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(240, 252, 250, .92));
    box-shadow: 0 22px 55px rgba(15, 39, 64, .1);
}

.hero-campaign-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.hero-campaign h2 {
    margin: 18px 0 0;
    color: var(--navy-primary);
    font-size: clamp(1.55rem, 2.4vw, 2.3rem);
    line-height: 1.08;
    letter-spacing: -.8px;
}

.hero-campaign > p {
    margin-top: 10px;
    font-size: .98rem;
}

.hero-lead-form {
    margin-top: 18px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 34px;
}

.hero-proof div {
    min-width: 132px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 10px 28px rgba(15, 39, 64, .05);
}

.hero-proof strong,
.hero-proof small {
    display: block;
}

.hero-proof strong {
    color: var(--navy-primary);
    font-size: 1.18rem;
}

.hero-proof small {
    margin-top: 3px;
    color: var(--text-secondary);
    font-weight: 700;
}

.dashboard-showcase {
    position: relative;
}

.dashboard-showcase::before {
    content: "";
    position: absolute;
    inset: 34px -18px -18px 46px;
    border-radius: 34px;
    background: linear-gradient(135deg, rgba(26, 174, 159, .2), rgba(22, 50, 79, .08));
    filter: blur(2px);
}

.dashboard-panel {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(226, 232, 240, .9);
    border-radius: 30px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow-lg);
}

.dashboard-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(26, 174, 159, .08), transparent 40%);
    pointer-events: none;
}

.panel-header,
.metrics-grid,
.dashboard-body,
.activity-list {
    position: relative;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.panel-header small {
    display: block;
    color: var(--text-secondary);
    font-weight: 700;
}

.panel-header strong {
    display: block;
    margin-top: 4px;
    color: var(--navy-primary);
    font-size: 1.08rem;
}

.panel-header > span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #EEF8F7;
    color: var(--green-secondary);
    font-size: .82rem;
    font-weight: 900;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.metrics-grid article,
.chart-card,
.inventory-card,
.activity-list div {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 39, 64, .06);
}

.metrics-grid article {
    padding: 16px;
}

.metrics-grid small,
.inventory-card small {
    display: block;
    color: var(--text-secondary);
    font-size: .78rem;
    font-weight: 800;
}

.metrics-grid strong,
.inventory-card strong {
    display: block;
    margin-top: 8px;
    color: var(--navy-primary);
    font-size: 1.35rem;
    line-height: 1;
}

.metrics-grid span {
    display: inline-flex;
    margin-top: 10px;
    color: var(--text-secondary);
    font-size: .78rem;
    font-weight: 800;
}

.metrics-grid .positive {
    color: var(--green-secondary);
}

.dashboard-body {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(160px, .75fr);
    gap: 14px;
    margin-top: 14px;
}

.chart-card,
.inventory-card {
    padding: 16px;
}

.chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.chart-title strong {
    color: var(--navy-primary);
    font-size: .92rem;
}

.chart-title span {
    color: var(--text-secondary);
    font-size: .76rem;
    font-weight: 700;
}

.bar-chart {
    height: 155px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 18px;
    padding: 0 4px;
}

.bar-chart i {
    flex: 1;
    min-width: 14px;
    border-radius: 999px 999px 8px 8px;
    background: linear-gradient(180deg, var(--green-primary), var(--green-secondary));
    box-shadow: 0 12px 22px rgba(26, 174, 159, .18);
}

.inventory-card p {
    margin: 14px 0 0;
    color: var(--text-secondary);
    font-size: .82rem;
    line-height: 1.5;
}

.progress {
    height: 9px;
    overflow: hidden;
    margin-top: 18px;
    border-radius: 999px;
    background: #E7EEF5;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green-primary), var(--green-secondary));
}

.activity-list {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.activity-list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 15px;
}

.activity-list span {
    color: var(--text-secondary);
    font-size: .86rem;
    font-weight: 750;
}

.activity-list strong {
    color: var(--navy-primary);
    white-space: nowrap;
}

.business-strip {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #fff;
}

.business-strip .landing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 34px;
}

.business-strip span {
    color: #94A3B8;
    font-weight: 900;
}

.section-block {
    padding: 92px 0;
    background: #fff;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.section-heading.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading h2,
.cta-card h2 {
    margin: 13px 0 0;
    color: var(--navy-primary);
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 850;
    letter-spacing: -1.2px;
    line-height: 1.08;
}

.section-heading p,
.cta-card p {
    margin: 16px 0 0;
    color: var(--text-secondary);
    font-size: 1.03rem;
    line-height: 1.7;
}

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

.feature-card,
.timeline-step,
.pricing-card,
.testimonial-card {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(15, 39, 64, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card {
    padding: 24px;
}

.feature-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.timeline-step:hover {
    transform: translateY(-6px);
    border-color: rgba(26, 174, 159, .3);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--green-secondary);
    background: #E8F8F6;
    font-size: .8rem;
    font-weight: 950;
}

.feature-card h3 {
    margin: 20px 0 9px;
    color: var(--navy-primary);
    font-size: 1.08rem;
}

.feature-card p,
.timeline-step p,
.pricing-card p,
.testimonial-card p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.62;
}

.process-section {
    background: linear-gradient(180deg, #F8FAFC, #FFFFFF);
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    right: 10%;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(26, 174, 159, .45), transparent);
}

.timeline-step {
    position: relative;
    padding: 24px;
}

.timeline-step span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    font-weight: 950;
    box-shadow: 0 16px 30px rgba(26, 174, 159, .24);
}

.timeline-step h3 {
    margin: 22px 0 9px;
    color: var(--navy-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.promo-panel,
.lead-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid rgba(26, 174, 159, .22);
    border-radius: 24px;
    background:
        radial-gradient(circle at 95% 10%, rgba(26, 174, 159, .16), transparent 28%),
        linear-gradient(135deg, #FFFFFF, #F3FBFA);
    box-shadow: 0 18px 42px rgba(15, 39, 64, .08);
}

.promo-kicker,
.discount-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(26, 174, 159, .12);
    color: var(--green-secondary);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.promo-panel h3,
.lead-box h3 {
    margin: 12px 0 0;
    color: var(--navy-primary);
    font-size: clamp(1.45rem, 2.4vw, 2.15rem);
    line-height: 1.08;
    letter-spacing: -.7px;
}

.promo-panel p,
.lead-box p {
    margin: 10px 0 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.promo-countdown {
    min-width: 260px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(15, 39, 64, .07);
}

.hero-campaign .promo-countdown {
    min-width: 238px;
    padding: 14px;
}

.promo-countdown > span {
    display: block;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: .82rem;
    font-weight: 850;
}

.promo-countdown div {
    display: grid;
    grid-template-columns: repeat(4, auto auto);
    gap: 5px 8px;
    align-items: baseline;
}

.promo-countdown strong {
    color: var(--navy-primary);
    font-size: 1.55rem;
    line-height: 1;
}

.promo-countdown small {
    color: var(--text-secondary);
    font-size: .74rem;
    font-weight: 800;
}

.countdown-progress {
    grid-column: 1 / -1;
    height: 7px;
    overflow: hidden;
    margin-top: 12px;
    border-radius: 999px;
    background: #E2E8F0;
}

.countdown-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green-primary), var(--green-secondary));
    transition: width .45s ease;
}

.lead-box {
    grid-template-columns: .85fr 1.15fr;
    margin-bottom: 28px;
}

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

.landing-lead-form label {
    display: grid;
    gap: 7px;
    color: var(--navy-primary);
    font-size: .84rem;
    font-weight: 850;
}

.landing-lead-form input,
.landing-lead-form select {
    min-height: 48px;
    width: 100%;
    padding: .78rem .9rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #FFFFFF;
    color: var(--text-primary);
    font: inherit;
    box-shadow: 0 10px 24px rgba(15, 39, 64, .04);
}

.landing-lead-form input:focus,
.landing-lead-form select:focus {
    outline: 3px solid rgba(26, 174, 159, .14);
    border-color: rgba(26, 174, 159, .55);
}

.landing-lead-form .btn,
.lead-success,
.lead-error {
    grid-column: 1 / -1;
}

.lead-success,
.lead-error {
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
}

.lead-success {
    background: rgba(26, 174, 159, .12);
    color: #0F766E;
}

.lead-error {
    background: rgba(239, 68, 68, .1);
    color: #B91C1C;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.pricing-card.featured {
    border-color: rgba(26, 174, 159, .45);
    background:
        radial-gradient(circle at 90% 0%, rgba(26, 174, 159, .14), transparent 30%),
        #fff;
    box-shadow: 0 28px 70px rgba(26, 174, 159, .18);
    transform: translateY(-8px);
}

.popular-badge {
    align-self: flex-start;
    padding: 8px 11px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-primary), var(--green-secondary));
    font-size: .72rem;
    font-weight: 950;
    letter-spacing: .06em;
}

.discount-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #E9FBF8;
}

.old-price {
    display: block;
    margin-top: 14px;
    color: #94A3B8;
    font-size: 1.08rem;
    font-weight: 900;
    text-decoration: line-through;
}

.pricing-card h3 {
    margin: 12px 0 0;
    color: var(--navy-primary);
    font-size: 1.26rem;
}

.pricing-card strong {
    display: block;
    margin-top: 18px;
    color: var(--navy-primary);
    font-size: 2.45rem;
    letter-spacing: -1px;
}

.pricing-card small {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-weight: 800;
}

.pricing-card p {
    margin-top: 18px;
}

.pricing-card ul {
    display: grid;
    gap: 11px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.pricing-card li {
    position: relative;
    padding-left: 25px;
    color: var(--text-secondary);
    font-weight: 700;
}

.pricing-card li::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green-primary);
}

.pricing-card .btn {
    margin-top: auto;
}

.testimonials-section {
    color: #fff;
    background:
        radial-gradient(circle at 10% 10%, rgba(26, 174, 159, .18), transparent 28%),
        linear-gradient(135deg, var(--navy-secondary), var(--navy-primary));
}

.testimonials-section .section-heading h2 {
    color: #fff;
}

.testimonials-section .section-heading p {
    color: #D3DCE8;
}

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

.testimonial-card {
    padding: 28px;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .13);
    box-shadow: none;
}

.testimonial-card p {
    color: #E2E8F0;
    font-size: 1.02rem;
}

.testimonial-card div {
    margin-top: 22px;
}

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

.testimonial-card strong {
    color: #fff;
}

.testimonial-card span {
    margin-top: 4px;
    color: #9FB1C4;
    font-size: .9rem;
}

.cta-section {
    padding: 92px 0;
    background: #fff;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 44px;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 12%, rgba(26, 174, 159, .32), transparent 28%),
        linear-gradient(135deg, var(--navy-primary), var(--navy-secondary));
    box-shadow: var(--shadow-lg);
}

.cta-card h2 {
    max-width: 760px;
    color: #fff;
}

.cta-card p {
    max-width: 720px;
    color: #D4DEE9;
}

.landing-footer {
    padding: 56px 0 26px;
    color: #CBD5E1;
    background: #0B1F33;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.footer-brand img {
    width: 142px;
    height: auto;
}

.footer-brand p {
    max-width: 320px;
    margin: 16px 0 0;
    color: #9FB1C4;
    line-height: 1.6;
}

.landing-footer strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
}

.landing-footer a {
    display: block;
    margin: 10px 0;
    color: #B8C5D4;
    text-decoration: none;
    transition: color .18s ease;
}

.landing-footer a:hover {
    color: var(--green-primary);
}

.footer-bottom {
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: #8EA1B7;
    font-size: .9rem;
}

.reveal-up {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-up,
    .reveal-up.is-visible,
    .btn,
    .feature-card,
    .pricing-card,
    .testimonial-card,
    .timeline-step {
        transition: none;
        transform: none;
    }
}

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

    .dashboard-showcase {
        max-width: 720px;
        margin: 0 auto;
    }

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

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

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

@media (max-width: 900px) {
    .mobile-toggle {
        display: inline-flex;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: grid;
        gap: 6px;
        padding: 14px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: rgba(255, 255, 255, .96);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .18s ease, transform .18s ease;
        backdrop-filter: blur(16px);
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-menu a {
        padding: 12px;
        border-radius: 14px;
    }

    .nav-menu a:hover {
        background: #F0FAF9;
    }

    .nav-menu .btn {
        width: 100%;
        margin-top: 4px;
    }
}

@media (max-width: 680px) {
    .landing-container {
        width: min(100% - 24px, 1180px);
    }

    .landing-header,
    .landing-nav {
        height: 72px;
    }

    .brand-link img {
        width: 156px;
        max-height: 54px;
    }

    .hero-section {
        padding: 54px 0 48px;
    }

    .hero-copy h1 {
        font-size: 2.55rem;
        letter-spacing: -1.2px;
    }

    .hero-copy p,
    .section-heading p,
    .cta-card p {
        font-size: .98rem;
    }

    .hero-actions,
    .hero-actions .btn,
    .cta-card .btn {
        width: 100%;
    }

    .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .dashboard-panel {
        padding: 16px;
        border-radius: 22px;
    }

    .metrics-grid,
    .dashboard-body,
    .features-grid,
    .timeline,
    .pricing-grid,
    .promo-panel,
    .lead-box,
    .hero-campaign-header,
    .landing-lead-form,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-campaign-header {
        display: grid;
    }

    .panel-header,
    .activity-list div,
    .cta-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .bar-chart {
        height: 126px;
        gap: 8px;
    }

    .section-block,
    .cta-section {
        padding: 64px 0;
    }

    .section-heading h2,
    .cta-card h2 {
        font-size: 2rem;
        letter-spacing: -.7px;
    }

    .timeline::before {
        display: none;
    }

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

    .promo-panel,
    .hero-campaign,
    .lead-box {
        padding: 18px;
        border-radius: 20px;
    }

    .promo-countdown {
        min-width: 0;
        width: 100%;
    }

    .promo-countdown div {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
        text-align: center;
    }

    .promo-countdown small {
        display: none;
    }

    .discount-badge {
        position: static;
        margin-top: 12px;
    }

    .cta-card {
        padding: 28px;
        border-radius: 22px;
    }
}
