@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --product-ink: #102b2b;
    --product-muted: #54706c;
    --product-mint: #c9f4df;
    --product-green: #157a63;
    --product-lime: #e8f39b;
    --product-paper: #f7f8f2;
    --product-line: #d9e5dc;
    --product-coral: #ed775d;
}

.product-page {
    background: var(--product-paper);
    color: var(--product-ink);
    font-family: 'DM Sans', sans-serif;
}

.product-page .navbar-area {
    background: rgba(247, 248, 242, .96);
}

.product-page h1,
.product-page h2,
.product-page h3,
.product-page h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--product-ink);
}

.product-page p {
    color: var(--product-muted);
    font-size: 16px;
}

.product-page .nav-link {
    color: var(--product-ink);
}

.product-hero {
    padding: 30px 0 30px;
    position: relative;
    overflow: hidden;
}

.product-hero-inner {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 55px;
    align-items: center;
}

.product-hero-content {
    grid-column: 1;
}

.product-hero-visual {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 480px;
}

.product-hero-circle {
    width: min(400px, 100%);
    aspect-ratio: 1;
    border: 1px solid #b7d7c4;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    box-shadow: 0 0 0 34px rgba(201, 244, 223, .55), 0 0 0 70px rgba(232, 243, 155, .35);
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-circle img {
    width: 48%;
    height: auto;
    object-fit: contain;
}

.product-kicker {
    color: var(--product-green);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-hero h1 {
    font-size: clamp(20px, 6vw, 42px);
    /* line-height: .98;
    letter-spacing: -2px; */
    max-width: 560px;
    margin-bottom: 25px;
}

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

.product-hero-copy {
    max-width: 590px;
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 21px;
    border-radius: 4px;
    background: var(--product-green);
    color: #fff;
    font-weight: 700;
}

.product-btn:hover {
    background: var(--product-ink);
    color: #fff;
}

.product-btn.alt {
    background: transparent;
    color: var(--product-ink);
    border: 1px solid var(--product-line);
}

.product-btn.alt:hover {
    border-color: var(--product-green);
    color: var(--product-green);
}

.product-proof {
    display: flex;
    gap: 28px;
    margin-top: 64px;
    padding-top: 22px;
    border-top: 1px solid var(--product-line);
    max-width: 760px;
}

.product-proof strong {
    display: block;
    font: 700 26px 'Space Grotesk';
}

.product-proof span {
    color: var(--product-muted);
    font-size: 13px;
}

.product-section {
    padding: 90px 0;
}

.product-section.tinted {
    background: var(--product-mint);
}

.product-section.dark {
    background: var(--product-ink);
}

.product-section.dark h2,
.product-section.dark h3 {
    color: #fff;
}

.product-section.dark p,
.product-section.dark .product-kicker {
    color: #b9d4ca;
}

.section-intro {
    max-width: 680px;
    margin-bottom: 42px;
}

.section-intro h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    margin-bottom: 16px;
}

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

.feature-card {
    background: #fff;
    border: 1px solid var(--product-line);
    padding: 26px;
    min-height: 190px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(16, 43, 43, .08);
}

.feature-card i {
    display: inline-flex;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    background: var(--product-lime);
    color: var(--product-ink);
    font-size: 21px;
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 9px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.65;
}

.gst-panel {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 55px;
    align-items: center;
}

.gst-panel h2 {
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    margin-bottom: 18px;
}

.gst-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 0;
}

.gst-list li {
    padding: 13px 0 13px 31px;
    border-bottom: 1px solid rgba(185, 212, 202, .28);
    position: relative;
    color: #e2f0e9;
}

.gst-list li:before {
    content: '\e9a4';
    font-family: boxicons;
    position: absolute;
    left: 0;
    color: var(--product-lime);
}

.gst-visual {
    padding: 30px;
    border: 1px solid rgba(201, 244, 223, .3);
    background: rgba(255, 255, 255, .06);
}

.gst-visual-top {
    display: flex;
    justify-content: space-between;
    color: #b9d4ca;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gst-meter {
    height: 13px;
    background: #294c45;
    margin: 32px 0 14px;
}

.gst-meter span {
    display: block;
    height: 100%;
    width: 88%;
    background: var(--product-lime);
}

.gst-status {
    display: flex;
    justify-content: space-between;
    color: #fff;
    font-weight: 700;
}

.stat-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--product-line);
    border-bottom: 1px solid var(--product-line);
}

.stat-strip div {
    padding: 27px 18px;
    border-right: 1px solid var(--product-line);
}

.stat-strip div:last-child {
    border: 0;
}

.stat-strip strong {
    display: block;
    font: 700 30px 'Space Grotesk';
}

.stat-strip span {
    color: var(--product-muted);
    font-size: 13px;
}

.cta-band {
    padding: 76px 0;
    background: var(--product-lime);
}

.cta-band h2 {
    font-size: clamp(30px, 4vw, 48px);
    margin: 0;
}

.site-footer {
    background: var(--product-ink);
    color: #b9d4ca;
    padding: 30px 0;
}

.site-footer a {
    color: #fff;
}

.tech-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.tech-tag {
    width: 108px;
    min-height: 104px;
    border: 1px solid var(--product-line);
    padding: 13px 8px 10px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: #fff;
}

.tech-tag img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.tech-name {
    color: var(--product-ink);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--product-line);
}

.process-step {
    padding: 25px 20px 20px 0;
    border-right: 1px solid var(--product-line);
    margin-right: 20px;
}

.process-step:last-child {
    border: 0;
}

.process-step b {
    color: var(--product-coral);
    font: 700 32px 'Space Grotesk';
}

.process-step h3 {
    font-size: 19px;
    margin: 20px 0 8px;
}

.feature-card {
    display: flex;
    flex-direction: column;
}

.feature-card h3 {
    text-align: left;
}

.feature-card p {
    text-align: justify;
    line-height: 1.7;
    margin-bottom: 0;
}


@media (max-width: 991px) {
    .product-hero {
        padding-top: 30px;
    }

    .product-hero-inner {
        gap: 30px;
    }

    .product-hero-visual {
        min-height: 360px;
    }

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

    .gst-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    
}

@media (max-width: 575px) {
    .product-hero {
        padding: 30px 0 60px;
    }

    .product-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 38px;
    }

    .product-hero-visual {
        order: 1;
        width: 100%;
        min-height: 0;
        padding: 35px 35px 10px;
    }

    .product-hero-content {
        order: 2;
        width: 100%;
    }

    .product-hero-circle {
        width: min(250px, 100%);
        box-shadow: 0 0 0 22px rgba(201, 244, 223, .55), 0 0 0 46px rgba(232, 243, 155, .35);
    }

    /* .product-hero h1 {
        letter-spacing: -1px;
    } */

    .product-proof {
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 42px;
    }

    .product-section {
        padding: 62px 0;
    }

    .feature-grid,
    .stat-strip,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .stat-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--product-line);
    }

    .process-step {
        border-right: 0;
        border-bottom: 1px solid var(--product-line);
        padding-right: 0;
        margin-right: 0;
    }
}