:root {
    --navy: #0d1b3e;
    --navy-2: #14295c;
    --blue: #1f5fd6;
    --blue-light: #2f7bf0;
    --bg: #f4f7fc;
    --white: #ffffff;
    --text: #1c2536;
    --muted: #5b6478;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
img,
svg {
    display: block;
}
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid #e7ebf3;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}
.logo-text {
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
}
.logo-text span {
    color: var(--blue);
}
.tagline-small {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--muted);
    font-weight: 600;
}
nav.links {
    display: flex;
    gap: 28px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
}
nav.links a:hover {
    color: var(--blue);
}
.btn {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}
.btn-primary {
    background: var(--blue);
    color: white;
}
.btn-primary:hover {
    background: var(--blue-light);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: white;
}

/* Hero */
.hero {
    padding: 72px 0 56px;
}
.hero-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1 1 480px;
}
.hero-badge {
    display: inline-block;
    background: #e8f0ff;
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.hero h1 {
    font-size: 44px;
    line-height: 1.15;
    color: var(--navy);
    font-weight: 800;
}
.hero h1 .accent {
    color: var(--blue);
}
.hero-divider {
    width: 60px;
    height: 4px;
    background: var(--blue);
    margin: 18px 0;
    border-radius: 2px;
}
.hero p {
    font-size: 17px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 28px;
}
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-visual {
    flex: 1 1 360px;
    height: 320px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual .cart {
    font-size: 110px;
    opacity: 0.95;
}
.hero-visual::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

/* Industries strip */
.industries {
    background: var(--blue);
    color: white;
    padding: 0;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 1.4fr;
    min-height: 260px;
}
.ind-panel {
    display: flex;
    align-items: flex-end;
    padding: 20px 18px;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
    color: white;
}
.ind-panel.hardware {
    background:
        linear-gradient(180deg, rgba(13, 27, 62, 0.1), rgba(13, 27, 62, 0.85)),
        repeating-linear-gradient(
            45deg,
            #2b3a5c,
            #2b3a5c 10px,
            #24325199 10px,
            #24325199 20px
        );
}
.ind-panel.farmers {
    background:
        linear-gradient(180deg, rgba(13, 27, 62, 0.1), rgba(13, 27, 62, 0.85)),
        repeating-linear-gradient(
            45deg,
            #3f7a4a,
            #3f7a4a 10px,
            #35693f99 10px,
            #35693f99 20px
        );
}
.ind-panel.fmcg {
    background:
        linear-gradient(180deg, rgba(13, 27, 62, 0.1), rgba(13, 27, 62, 0.85)),
        repeating-linear-gradient(
            45deg,
            #c0492c,
            #c0492c 10px,
            #a83d2399 10px,
            #a83d2399 20px
        );
}
.benefits-panel {
    background: var(--blue);
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
}
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.benefit-icon {
    flex: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.benefit-item h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
}
.benefit-item p {
    font-size: 12.5px;
    color: #dce7ff;
    margin: 0;
}

/* Section titles */
.section {
    padding: 72px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 48px;
}
.section-title h2 {
    font-size: 30px;
    color: var(--navy);
    font-weight: 800;
}
.section-title h2 .accent {
    color: var(--blue);
}
.section-title p {
    color: var(--muted);
    margin-top: 10px;
    font-size: 15px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.feature-card {
    background: white;
    border-radius: 14px;
    padding: 28px 18px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(15, 31, 73, 0.06);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 31, 73, 0.12);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 16px;
}
.feature-card h3 {
    font-size: 14px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}
.feature-card p {
    font-size: 13px;
    color: var(--muted);
}

/* Deployment options */
.deploy-section {
    background: white;
}
.deploy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}
.deploy-card {
    border-radius: 16px;
    padding: 32px;
    position: relative;
    border: 1px solid #e7ebf3;
}
.deploy-card.onprem {
    background: var(--navy);
    color: white;
}
.deploy-card.cloud {
    background: linear-gradient(135deg, var(--blue), var(--blue-light));
    color: white;
}
.deploy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 20px;
}
.deploy-card ul {
    list-style: none;
    margin-top: 18px;
}
.deploy-card li {
    padding: 8px 0;
    font-size: 14.5px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.deploy-card li::before {
    content: "✓";
    font-weight: 900;
}
.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-weight: 800;
    font-size: 13px;
    margin: -22px auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.price-card {
    background: white;
    border-radius: 14px;
    padding: 26px 22px;
    border: 1px solid #e7ebf3;
}
.price-card .icon {
    font-size: 26px;
    margin-bottom: 12px;
}
.price-card h4 {
    font-size: 13px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 8px;
}
.price-card .value {
    font-size: 22px;
    color: var(--blue);
    font-weight: 800;
    margin: 6px 0;
}
.price-card p {
    font-size: 12.5px;
    color: var(--muted);
}
.price-highlight {
    background: var(--navy);
    color: white;
    border-radius: 12px;
    padding: 8px 16px;
    display: inline-block;
    font-weight: 800;
    font-size: 20px;
    margin-top: 6px;
}

/* CTA banner */
.cta-banner {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: white;
    text-align: center;
    padding: 64px 24px;
    border-radius: 20px;
    margin: 0 24px;
}
.cta-banner h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-banner p {
    color: #dce7ff;
    margin-bottom: 26px;
}
.cta-banner .btn-primary {
    background: white;
    color: var(--navy);
}
.cta-banner .btn-primary:hover {
    background: #eef3ff;
}

/* Footer */
footer {
    background: var(--navy);
    color: white;
    margin-top: 72px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1140px;
    margin: 0 auto;
}
.footer-top h3 {
    font-size: 20px;
    font-weight: 800;
}
.footer-top p {
    color: #b9c4de;
    font-size: 14px;
    margin-top: 6px;
}
.footer-top .footer-sub {
    color: var(--blue-light);
    font-weight: 700;
    margin-top: 4px;
}
.footer-bottom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #b9c4de;
}
.footer-bottom .items {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
}
.footer-bottom .item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }
    .benefits-panel {
        grid-column: span 2;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .deploy-grid {
        grid-template-columns: 1fr;
    }
    .or-divider {
        margin: -22px auto;
    }
    nav.links {
        display: none;
    }
    .hero h1 {
        font-size: 32px;
    }
}
