/* ============================================================
   RESET & ROOT
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #4a8c2a;
    --green-dark: #3a6e20;
    --green-light: #5fa832;
    --green-bg: #eef5e9;
    --green-bg2: #dcefd2;
    --ink: #1a2212;
    --ink-soft: #3d4a35;
    --ink-muted: #6b7a62;
    --surface: #ffffff;
    --surface-2: #f7faf4;
    --surface-3: #eff5ea;
    --border: rgba(74, 140, 42, 0.15);
    --border-strong: rgba(74, 140, 42, 0.28);
    --gray-border: rgba(0, 0, 0, 0.09);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-pill: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background: var(--surface);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.section-h {
    font-family: 'Nunito', sans-serif;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.8px;
    color: var(--ink);
    line-height: 1.18;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 540px;
    line-height: 1.68;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    font-family: 'Nunito Sans', sans-serif;
}

.btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    border: 1px solid var(--gray-border);
}

.btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--border-strong);
    color: var(--green);
}

.btn-primary {
    background: var(--green);
    color: #fff;
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(74, 140, 42, 0.35);
}

.btn-sm {
    padding: 7px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 12px 26px;
    font-size: 15px;
}

.btn-xl {
    padding: 14px 32px;
    font-size: 16px;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-border);
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
}

.nav-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: var(--green);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.2s;
}

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

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

/* HERO */
.hero-wrap {
    background: var(--surface-2);
    border-bottom: 1px solid var(--gray-border);
}

.hero {
    padding: 80px 0 72px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-bg);
    color: var(--green-dark);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-pill);
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3)
    }
}

.hero h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--ink);
    margin-bottom: 18px;
}

.hero h1 em {
    font-style: normal;
    color: var(--green);
}

.hero p {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-trust-text {
    font-size: 12px;
    color: var(--ink-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 7px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
}

/* Hero dashboard */
.dashboard-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.dash-topbar {
    background: var(--ink);
    padding: 0 14px;
    height: 36px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dash-topbar-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.dash-topbar-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: var(--green-light);
    margin-left: 10px;
}

.dash-topbar-nav {
    display: flex;
    gap: 14px;
    margin-left: 14px;
}

.dash-topbar-nav span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.45);
}

.dash-topbar-nav span.active {
    color: #fff;
    font-weight: 600;
}

.dash-body {
    padding: 16px;
}

.dash-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.dash-metric {
    background: var(--surface-2);
    border: 1px solid var(--gray-border);
    border-radius: 7px;
    padding: 10px 11px;
}

.dash-metric-label {
    font-size: 9px;
    color: var(--ink-muted);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 4px;
    font-weight: 700;
}

.dash-metric-val {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink);
}

.dash-metric-val.green {
    color: var(--green);
}

.dash-metric-sub {
    font-size: 9px;
    color: var(--ink-muted);
    margin-top: 2px;
}

.ai-alert {
    background: var(--green-bg);
    border: 1px solid var(--border-strong);
    border-radius: 7px;
    padding: 10px 12px;
    display: flex;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 10px;
}

.ai-chip {
    background: var(--green);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 1px;
}

.ai-alert-text {
    font-size: 11px;
    color: var(--ink-soft);
    line-height: 1.5;
}

.ai-alert-text strong {
    color: var(--ink);
}

.channel-row {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.chan-tag {
    background: var(--surface-3);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 4px;
}

.chan-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

/* ============================================================
   LOGOS STRIP
   ============================================================ */
.logos-strip {
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 36px 0;
    background: #fff;
}

.logos-strip-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-muted);
    margin-bottom: 28px;
    font-weight: 700;
    text-align: center;
}

/* Two rows: channels top, carriers bottom */
.logos-section-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos-section-row+.logos-section-row {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.logos-row-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--ink-muted);
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
}

/* Each logo item */
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s;
    opacity: 0.75;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Logos on white/transparent bg — just display the image */
.logo-item img {
    display: block;
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* Logos with dark/colored backgrounds — wrap in a rounded card */
.logo-card {
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
}

.logo-card img {
    display: block;
    height: 28px;
    width: auto;
    object-fit: contain;
}

.logo-card-dark {
    background: #000;
}

.logo-card-blue {
    background: #1A73E8;
}

/* Walmart blue */
.logo-card-green {
    background: #000;
}

/* Shopify (white logo on black) */

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
    padding: 72px 0;
}

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

.feature-card {
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all 0.2s;
}

.feature-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(74, 140, 42, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.feature-card h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 7px;
    color: var(--ink);
}

.feature-card p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.feature-pill {
    display: inline-block;
    margin-top: 10px;
    background: var(--green-bg);
    color: var(--green-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* ============================================================
   AI SECTION
   ============================================================ */
.ai-section-wrap {
    background: var(--ink);
    padding: 72px 0;
}

.ai-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ai-section .section-label {
    color: var(--green-light);
}

.ai-section .section-h {
    color: #fff;
}

.ai-section .section-sub {
    color: rgba(255, 255, 255, 0.6);
}

.ai-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ai-point {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ai-point-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(74, 140, 42, 0.25);
    border: 1px solid rgba(74, 140, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.ai-point-text h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.ai-point-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
}

.patent-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 140, 42, 0.2);
    border: 1px solid rgba(74, 140, 42, 0.35);
    border-radius: var(--radius-pill);
    padding: 6px 14px;
    font-size: 12px;
    color: var(--green-light);
    margin-top: 24px;
    font-weight: 600;
}

.ai-visual {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
}

.ai-visual-title {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.forecast-bars {
    display: flex;
    gap: 6px;
    align-items: flex-end;
    height: 90px;
    margin-bottom: 14px;
}

.bar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    background: rgba(74, 140, 42, 0.35);
}

.bar.active {
    background: var(--green);
}

.bar.warn {
    background: rgba(230, 160, 30, 0.75);
}

.bar-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.ai-rec {
    background: rgba(74, 140, 42, 0.15);
    border: 1px solid rgba(74, 140, 42, 0.3);
    border-radius: 8px;
    padding: 12px 13px;
}

.ai-rec-tag {
    font-size: 10px;
    color: var(--green-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.ai-rec-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.55;
}

.ai-rec-btns {
    display: flex;
    gap: 7px;
    margin-top: 9px;
}

.mini-btn {
    padding: 4px 11px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: 'Nunito Sans', sans-serif;
}

.mini-btn-primary {
    background: var(--green);
    color: #fff;
}

.mini-btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* HOW IT WORKS */
.steps-wrap {
    background: var(--surface-2);
    border-top: 1px solid var(--gray-border);
    border-bottom: 1px solid var(--gray-border);
    padding: 72px 0;
}

.steps-section {
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 23px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--green-bg2);
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    padding: 0 14px;
}

.step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--gray-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 17px;
    color: var(--ink-muted);
    margin: 0 auto 18px;
}

.step.active .step-num {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 7px var(--green-bg);
}

.step h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 7px;
}

.step p {
    font-size: 13px;
    color: var(--ink-soft);
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section .section-h {
    font-size: 36px;
    margin-bottom: 14px;
}

.cta-section .section-sub {
    margin: 0 auto 32px;
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.free-note {
    font-size: 13px;
    color: var(--ink-muted);
    margin-top: 14px;
}

.free-note strong {
    color: var(--green);
    font-weight: 700;
}

/* FOOTER */
footer {
    background: #1a2212;
    color: rgba(255, 255, 255, 0.55);
    padding: 48px 0 28px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-logo {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--green-light);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.footer-patent {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 14px;
}

.footer-col h5 {
    font-family: 'Nunito', sans-serif;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green-light);
}

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

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, 0.65);
}