/*
Theme Name: DAS Theme Child
Template: wordpress-theme
Author: Sajid Noor
Version: 1.0.2.1783670284
Updated: 2026-07-10 07:58:04

*/

:root {
    --green-dark: #064E3B;
    --green-mid: #0F6E56;
    --green-base: #1D9E75;
    --green-light: #5DCAA5;
    --green-pale: #E1F5EE;
    --ink: #0D1F1A;
    --ink-mid: #2D4A42;
    --ink-soft: #5A7A70;
    --white: #FFFFFF;
    --border: #C8E8DC;
    --sans: 'DM Sans', system-ui, sans-serif;
    --serif: 'DM Serif Display', Georgia, serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --shadow-sm: 0 2px 8px rgba(6, 78, 59, 0.08);
    --shadow-md: 0 8px 32px rgba(6, 78, 59, 0.12);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1)
}

::selection {
    background-color: #0f6e56;
    color: #fff
}

::-moz-selection {
    background-color: #0f6e56;
    color: #fff
}

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

body {
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0
}

p a {
	color: #0f6e56 !important;
	font-weight: 500 !important;
	transition: 0.3s all;
}

p a:hover {
	color: #0D1F1A !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all var(--transition)
}

.btn-primary {
    background: var(--green-base);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(29, 158, 117, .3)
}

.btn-primary:hover {
    background: var(--green-mid);
    box-shadow: 0 6px 24px rgba(29, 158, 117, .4);
    transform: translateY(-1px)
}

.btn-outline {
    background: 0 0;
    color: var(--green-dark);
    border: 1.5px solid var(--green-light)
}

.btn-outline:hover {
    background: var(--green-pale);
    border-color: var(--green-base)
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow var(--transition)
}

nav.scrolled {
    box-shadow: var(--shadow-sm)
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 32px
}

.site-logo {
    max-height: 50px;
    width: auto;
    cursor: pointer;
    transition: opacity .3s ease
}

.site-logo:hover {
    opacity: .8
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-mid);
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition)
}

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

.nav-links .has-dropdown {
    position: relative
}

.nav-links .has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 4px
}

.nav-links .has-dropdown>a::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    display: inline-block
}

.has-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 12px
}

.dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, visibility .15s ease;
    transition-delay: 120ms;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    min-width: 220px;
    box-shadow: var(--shadow-md);
    z-index: 200
}

.has-dropdown:hover .dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s
}

.dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    transition: all .2s ease
}

.dropdown a:hover {
    background: var(--green-pale);
    color: var(--green-dark)
}

.dropdown a svg {
    width: 24px;
    height: 24px;
    background: #e1f5ee;
    padding: 4px;
    border-radius: 4px;
    color: var(--green-dark);
    flex-shrink: 0;
    opacity: .6;
    transition: transform .2s ease, opacity .2s ease
}

.dropdown a:hover svg {
    opacity: 1;
    transform: translateX(3px)
}

.dropdown a span {
    font-size: 14px;
    line-height: 1.4
}

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

.hamburger {
    display: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--transition)
}

footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .7)
}

.footer-top {
    max-width: 1260px;
    margin: 0 auto;
    padding: 60px 0 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.7;
    margin: 16px 0 24px;
    max-width: 280px
}

.nav-logo-img {
    max-height: 50px;
    width: auto
}

.footer-col h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px
}

.footer-col ul li a {
    font-size: 15px;
    color: var(--white);
    transition: color var(--transition)
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: #f3f4f6
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--green-base);
    fill: none;
    stroke-width: 1.8;
    flex-shrink: 0;
    margin-top: 2px
}

.footer-contact-item a {
    color: inherit
}

.footer-contact-item a:hover {
    text-decoration: underline
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition)
}

.social-link:hover {
    background: var(--green-dark);
    border-color: var(--green-base)
}

.social-link svg {
    width: 14px;
    height: 14px;
    fill: #f3f4f6
}

.footer-bottom {
    max-width: 1260px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-bottom p {
    font-size: 14px;
    color: #f3f4f6
}

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

.footer-bottom-links a {
    font-size: 14px;
    color: #f3f4f6;
    transition: color var(--transition)
}

.footer-bottom-links a:hover {
    color: var(--green-light)
}

.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 8px auto
}

.billing-label {
    font-size: 16px;
    font-weight: 400;
    color: #5a7a70;
    cursor: pointer;
    transition: all .3s ease;
    user-select: none
}

.billing-label.active {
    color: #0d1f1a
}

.toggle-track {
    position: relative;
    width: 56px;
    height: 30px;
    background: #cee8dc;
    border-radius: 999px;
    cursor: pointer;
    transition: all .3s ease
}

.toggle-track.active {
    background: #489d75
}

.toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: transform .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15)
}

.toggle-track.active .toggle-knob {
    transform: translateX(26px)
}

.save-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-size: 13px;
    font-weight: 600;
    line-height: 1
}

.annual-price {
    display: none
}

.show-annual .monthly-price {
    display: none
}

.show-annual .annual-price {
    display: inline
}

.icon {
    height: fit-content
}

h1 span,
h2 span {
    font-style: italic;
    color: #0f6e56
}

.iconbox:hover .icon {
    background-color: #4bb884
}

.countbox:hover .count p {
    color: #1d9e75 !important
}

.circle-box:hover .circle {
    background-color: #0a5e48 !important;
    border-color: #0a5e48 !important
}

.circle-box:hover .count p {
    color: #fff !important
}

.elementor-field-group-field_97ff83e .elementor-field-subgroup .elementor-field-option input[type=radio],
.elementor-field-group-field_a09d539 .elementor-field-subgroup .elementor-field-option input[type=radio] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.elementor-field-group-field_97ff83e .elementor-field-subgroup {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important
}

.elementor-field-group-field_97ff83e .elementor-field-subgroup .elementor-field-option {
    padding: 0 !important
}

.elementor-field-group-field_97ff83e .elementor-field-subgroup .elementor-field-option label {
    display: block !important;
    padding: 10px 16px !important;
    background-color: #f7fdfb !important;
    border: 1px solid #c8e8dc !important;
    border-radius: 6px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #5a7a70 !important;
    cursor: pointer !important;
    transition: all .25s ease !important;
    width: 100% !important;
    box-sizing: border-box !important
}

.elementor-field-group-field_97ff83e .elementor-field-subgroup .elementor-field-option input[type=radio]:checked+label,
.elementor-field-group-field_97ff83e .elementor-field-subgroup .elementor-field-option label:hover {
    border-color: #5dcaa5 !important;
    background-color: #f4fbf9 !important;
    color: #0f7654 !important
}

.elementor-field-group-field_a09d539 .elementor-field-subgroup {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin-top: 10px !important
}

.elementor-field-group-field_a09d539 .elementor-field-subgroup .elementor-field-option {
    display: inline-block !important;
    margin-right: 10px !important;
    margin-bottom: 12px !important;
    padding: 0 !important
}

.elementor-field-group-field_a09d539 .elementor-field-subgroup .elementor-field-option label {
    display: inline-block !important;
    padding: 8px 18px !important;
    background-color: #f7fdfb !important;
    border: 1px solid #c8e8dc !important;
    border-radius: 30px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #5a7a70 !important;
    cursor: pointer !important;
    transition: all .2s ease !important;
    white-space: nowrap !important
}

.elementor-field-group-field_a09d539 .elementor-field-subgroup .elementor-field-option input[type=radio]:checked+label,
.elementor-field-group-field_a09d539 .elementor-field-subgroup .elementor-field-option label:hover {
    border-color: #5dcaa5 !important;
    background-color: #e8f7f2 !important;
    color: #0f7654 !important
}

.compare-table {
    width: 100%;
    min-width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid #dbe7e2;
    border-radius: 20px;
    overflow: hidden
}

.compare-table th {
    padding: 24px 20px;
    background: #0d4f43;
    color: rgba(255, 255, 255, .85);
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1)
}

.compare-table th:first-child {
    text-align: left;
    width: 35%
}

.compare-table th span {
    display: block;
    margin-top: 6px;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, .7)
}

.compare-table th.highlighted {
    background: #0d4f43;
    color: #fff;
    position: relative
}

.compare-table th.highlighted::after {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid #5dcaa5
}

.compare-table td {
    padding: 18px 20px;
    font-size: 16px;
    color: #2d2d2d;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #e8f2ed
}

.compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #111
}

.compare-table td.highlighted {
    background: #e4f5ee;
    color: #1d9e75;
    font-weight: 700
}

.compare-table tbody td:nth-child(4) {
    color: #1d9e75;
    font-weight: 700
}

.compare-table .category-row td {
    background: #f7faf8;
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280 !important;
    text-align: left
}

.check-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #1d9e75;
    border-radius: 999px;
    margin: 0 auto
}

.check-yes svg {
    width: 14px;
    height: 14px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.check-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #f3f4f6;
    border-radius: 999px;
    margin: 0 auto
}

.check-no span {
    width: 12px;
    height: 2px;
    background: #9ca3af;
    display: block
}

.compare-table .check-val {
    font-size: 16px;
    color: inherit;
    font-weight: inherit
}

.compare-table .check-val.strong {
    color: #1d9e75;
    font-weight: 700
}

.compare-table tbody tr:hover td {
    background: #f8fcfa
}

.compare-table tbody tr:hover td.highlighted {
    background: #d9f0e6
}

.compare-table-wrap {
    width: 100%;
    overflow: hidden
}

.post-content h2 {
    font-family: "DM Serif Display", serif;
    font-weight: 700;
    font-size: 36px;
    margin: 14px 0;
    line-height: 1.2;
    color: #0f6e56;
    letter-spacing: 0.2px;
}

.post-content h3 {
    font-family: "DM Serif Display", serif;
    font-weight: 600;
    font-size: 28px;
    margin: 14px 0;
    line-height: 1.25;
    color: #1d9e75;
    letter-spacing: 0.2px;
}

.post-content a {
    color: #0f6e56
}

.post-content p {
    margin: 0 0 16px 0;
    line-height: 1.75
}

.post-content ul {
    padding-left: 0;
    list-style: none
}

.post-content ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    line-height: 1.6
}

.post-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background-image: url("https://dataanalyticsstack.com/wp-content/uploads/2026/04/fav.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center
}

.post-content blockquote {
    margin: 40px 0 !important;
    padding: 20px;
    background: #f0faf5;
    border-left: 4px solid #1d9e75;
    border-radius: 12px
}

.post-content blockquote h2,
.post-content blockquote h3 {
    font-size: 30px;
}


.post-content table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #1d2426;
    background: #fff;
    border: 1px solid #d9d9d9;
}

.post-content th,
.post-content td {
    border: 1px solid #d9d9d9;
    padding: 14px 16px;
    vertical-align: top;
    word-wrap: break-word;
    white-space: normal;
}

.post-content th {
    background: #f4f6f8;
    font-weight: 600;
    color: #1d9e75;
}

.post-content tr:nth-child(even) td {
    background: #fafafa;
}

.post-content tr:hover td {
    background: #f0f7ff;
}

.post-content b {
    color: #1d9e75;
    font-weight: 700;
}

.post-content span {
    font-weight: 400;
    color: #1d2426;
}

@media (max-width: 768px) {
    .post-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .post-content th,
    .post-content td {
        padding: 10px 12px;
    }
}

@media (min-width:993px) {
    #main-nav .container {
        max-width: 1260px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 10px;
        padding-bottom: 10px;
        box-sizing: border-box
    }

    #main-nav .nav-links>li>a {
        font-size: 16px
    }
}

@media (max-width:1024px) {
    .compare-table-wrap {
        overflow-x: hidden
    }

    .compare-table {
        width: 100%;
        min-width: unset;
        table-layout: fixed;
        display: table
    }

    .compare-table td,
    .compare-table th {
        padding: 14px 10px;
        font-size: 14px;
        word-break: break-word;
        white-space: normal
    }

    .compare-table th:first-child {
        width: auto
    }
}

@media (max-width:992px) {
    .hamburger {
        display: flex
    }

    .nav-cta {
        display: none !important
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease
    }

    .nav-links.active {
        max-height: 100vh;
        overflow-y: auto
    }

    .nav-links li {
        width: 100%
    }

    .nav-links>li>a {
        padding: 14px 20px;
        font-weight: 600;
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .dropdown {
        position: static;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-left: 15px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: max-height .3s ease
    }

    .has-dropdown.open .dropdown {
        max-height: 500px
    }

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

@media (max-width:767px) {
    .container {
        padding: 0 20px
    }

    #main-nav .container {
        padding-left: 20px;
        padding-right: 20px
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .compare-table-wrap {
        overflow: hidden
    }

    .compare-table {
        display: block;
        width: 100%
    }

    .compare-table thead {
        display: none
    }

    .compare-table tbody,
    .compare-table td,
    .compare-table tr {
        display: block;
        width: 100%
    }

    .compare-table tr {
        margin-bottom: 12px;
        border: 1px solid #e8f2ed;
        border-radius: 12px;
        overflow: hidden
    }

    .compare-table td {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 14px;
        font-size: 14px;
        border-bottom: 1px solid #f1f5f3
    }

    .compare-table td:last-child {
        border-bottom: none
    }

    .compare-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #111
    }

    .compare-table td:first-child {
        font-weight: 700
    }

    .post-content h2 {
        font-size: 30px;
        margin: 12px 0
    }

    .post-content h3 {
        font-size: 24px;
        margin: 12px 0
    }

    .post-content p {
        font-size: 16px;
        margin-bottom: 14px;
        line-height: 1.7
    }

    .post-content ul li {
        font-size: 15px;
        padding-left: 26px
    }

    .post-content ul li::before {
        width: 14px;
        height: 14px;
        top: 5px
    }

    .elementor-field-group-field_97ff83e .elementor-field-subgroup {
        grid-template-columns: 1fr !important
    }
}



/* new CSS */

@font-face {
    font-family: 'Lexend';
    src: url('fonts/Lexend-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('fonts/Lexend-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lexend';
    src: url('fonts/Lexend-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3 {
    font-family: Lexend, system-ui, sans-serif;
    font-weight: 700;
    color: #393939;
    margin: 0px;
    text-transform: capitalize;
}

h1 {
    font-size: 56px;
    line-height: 75.6px;
    color: #141A16;
}

h1 span {
    color: #31C283;
}

h2 {
    font-size: 48px;
    line-height: 1.4em;
    color: #393939;
}

h2 span {
    color: #31C283;
}

h3 {
    font-size: 20px;
    line-height: 1.4em;
    color: #393939;
}

h3 span {
    color: #0e59ae;
}

p {
    font-family: Lexend, system-ui, sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: #595959;
    margin: 0px;
}

p span {
    color: #2E9C71;
}

p.section-tag {
    color: #2E9C71;
    font-size: 18px;
    font-weight: 700;
}

li {
    font-family: Lexend, system-ui, sans-serif;
    font-size: 20px;
    line-height: 32px;
    color: #595959;
}

a.cta {
    display: inline-block;
    font-family: Lexend, system-ui, sans-serif;
    color: #fff;
    cursor: pointer;
    background-color: #175C3E;
    border: 1px solid #175C3E;
    border-radius: 50px;
    width: fit-content;
    padding: 16px 29px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
    height: fit-content;
}

a.cta:hover {
    color: #175C3E;
    background-color: #fff;
}

a.sub-cta {
    display: inline-block;
    font-family: Lexend, system-ui, sans-serif;
    color: #141A16;
    cursor: pointer;
    background: #FFFFFF;
    border: 1px solid #C4CFC7;
    border-radius: 50px;
    width: fit-content;
    padding: 16px 29px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    transition: all .3s;
    position: relative;
    text-decoration: none;
    height: fit-content;
}

a.sub-cta:hover {
    border: 1px solid #595959;
}

a.cta-white {
    display: inline-block;
    font-family: Lexend, system-ui, sans-serif;
    color: #175C3E;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 50px;
    width: fit-content;
    padding: 16px 29px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4em;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
    height: fit-content;
}

a.cta-white:hover {
    color: #fff;
    background-color: #175C3E;
}



#hero {

    background-image: url('images/hero-bg2.webp');
    background-size: 80vw 800px;
    background-position: center center;
    background-repeat: no-repeat;
    align-items: center;
    display: flex;
    flex-direction: column;


    .inner-section {
        display: flex;
        flex-direction: column;
        max-width: 1320px;
        padding: 90px 0px;

        .upper-section {
            display: flex;
            flex-direction: row;

            .left-column {
                width: 50%;
                display: flex;
                flex-direction: column;
                gap: 16px;

                .cta-section {
                    margin-top: 16px;
                    gap: 14px;
                    display: flex;
                    flex-direction: row;
                }

                .list-items {
                    display: flex;
                    flex-wrap: wrap;
                    column-gap: 40px;
                    row-gap: 20px;
                    width: 600px;

                    .list-item {
                        display: flex;
                        flex-direction: row;
                        gap: 20px;
                        align-items: center;

                        img {
                            width: 16px;
                            height: 16px;
                        }
                    }
                }
            }

            .right-column {
                width: 50%;

                img {
                    width: 100%;
                }
            }
        }

        .count-stripe {
            display: flex;
            flex-direction: row;
            gap: 24px;
            margin: 0px auto;
            width: 1280px;

            .count-box {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 20px 40px;
                align-items: center;

                .counter {
                    font-size: 40px;
                    font-weight: 700;
                    color: #175C3E;
                }

                .count-text {
                    color: #393939;
                }
            }
        }
    }
}

#marque {
    display: flex;
    overflow: hidden;
    width: 100%;
    white-space: nowrap;
    margin-bottom: 80px;
    background-color: #E7F6EF;
    padding: 28px 0px;


    .marque-track {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        animation: marque-scroll 20s linear infinite;



        img {
            height: 24px;
            margin: 0 12px;
        }

        p {
            margin: 0 32px 0 0;
            white-space: nowrap;
            color: #175C3E;
            font-weight: 500;
        }
    }
}

@keyframes marque-scroll {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}


#did-you-know {
    background-color: #003525;
    display: flexx;
    flex-direction: column;
    padding: 36px 0px;
    text-align: center;

    .inner-section {
        margin: 0px auto;
        width: 980px;


        h2,
        p {
            color: #fff;
        }

        img {
            width: 100%;
        }
    }
}



#second-section {
    .inner-section {
        display: flex;
        flex-direction: column;
        max-width: 1320px;
        margin: 90px auto;
        align-items: center;
        gap: 24px;

        .upper-section {
            display: flex;
            flex-direction: column;
            width: 1100px;
            text-align: center;
        }

        .problem-boxes {
            display: flex;
            flex-direction: row;
            width: 100%;
            gap: 24px;

            .problem-item {
                position: relative;
                padding: 29px;
                gap: 20px;
                display: flex;
                flex-direction: column;
                background: linear-gradient(to bottom, #FFFF, #E8EFEC);
                border-radius: 16px;
                z-index: 0;
                text-align: center;

                .count {
                    font-size: 96px;
                    line-height: 1.4em;
                    font-weight: 700;
                    text-align: center;
                    background: linear-gradient(to bottom,
                            #E8EFEC 20%,
                            #31C283 120%);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
            }

            .problem-item::before {
                content: "";
                position: absolute;
                inset: 0;
                border-radius: 16px;
                padding: 1px;
                background: linear-gradient(to bottom, #FFF, #8ECDB2);
                mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
                mask-composite: exclude;
                z-index: -1;
            }
        }
    }
}


#ai-retail-analytics {

    .inner-section {
        margin: 0px auto;
        max-width: 1320px;
        gap: 24px;
        display: flex;
        flex-direction: column;
        text-align: center;

        img {
            width: 100%;
            height: auto;
        }

        .button-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            row-gap: 16px;
            margin: 0px auto;
            max-width: 1200px;
            column-gap: 24px;

            .ai-button {
                padding: 15px 29px;
                color: #175C3E;
                font-weight: 700;
                background-color: #E7F6EF;
                border-radius: 8px;
                border: 1px solid #B7CCC3;
                gap: 12px;
                font-size: 16px;
                display: flex;
                align-items: center;
                transition: all 0.3s;

                img {
                    width: 24px;
                }

                &:hover {

                    border: 1px solid #175C3E;
                }
            }
        }
    }
}


#third-section {
    display: flex;
    flex-direction: column;
    padding: 96px 0px;

    .inner-section {
        background-color: #175C3E;
        padding: 48px 58px;
        width: 1220px;
        border-radius: 24px;
        margin: 0px auto;

        h2,
        h3,
        p {
            color: #fff;
        }

        .upper-section {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 80px;

            .left-column {
                width: 60%;
                display: flex;
            }

            .right-column {
                width: 40%;
                display: flex;
                flex-direction: column;
                gap: 24px;
            }
        }

        .middle-section {
            display: flex;
            flex-direction: row;
            margin-top: 40px;

            .box-item {
                padding: 26px 24px;

                .step {
                    font-size: 14px;
                    color: #94B4A6;
                }

                .sub {
                    font-size: 14px;
                    font-weight: 400;
                    line-height: 1.4em;
                }
            }

            img {
                width: 95px;
                height: auto;
                object-fit: contain;
            }
        }
    }
}

#fourth-section {
    .inner-section {
        max-width: 1320px;
        margin: 0 auto;

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

        .middle-section {
            display: flex;
            flex-wrap: wrap;
            margin-top: 32px;
            gap: 24px;

            .box-item {
                display: flex;
                width: 28%;
                flex-direction: column;
                gap: 20px;
                padding: 40px 24px;
                border-radius: 12px;
                box-shadow: 0px 4px 16px #17805A26;

                img {
                    width: 32px;
                }
            }
        }
    }
}




@media (max-width: 1024px) {

    #hero {
        background-size: cover;
        background-position: top center;

        .inner-section {
            max-width: 100%;
            padding: 60px 24px;

            .upper-section {
                flex-direction: column;
                gap: 32px;

                .left-column {
                    width: 100%;

                    .list-items {
                        width: 100%;
                    }
                }

                .right-column {
                    width: 100%;
                }
            }

            .count-stripe {
                width: 100%;
                flex-wrap: wrap;
                justify-content: center;

                .count-box {
                    padding: 16px 24px;
                }
            }
        }
    }

    #did-you-know {
        .inner-section {
            width: 100%;
            padding: 0px 24px;
        }
    }

    #second-section {
        .inner-section {
            max-width: 100%;
            padding: 0px 24px;
            margin: 60px auto;

            .upper-section {
                width: 100%;
            }

            .problem-boxes {
                flex-wrap: wrap;

                .problem-item {
                    width: calc(50% - 12px);
                }
            }
        }
    }

    #ai-retail-analytics {
        .inner-section {
            max-width: 100%;
            padding: 0px 24px;

            .button-section {
                max-width: 100%;
            }
        }
    }

    #third-section {
        padding: 60px 24px;

        .inner-section {
            width: 100%;
            padding: 40px 32px;

            .upper-section {
                flex-direction: column;
                gap: 32px;

                .left-column {
                    width: 100%;
                }

                .right-column {
                    width: 100%;
                }
            }

            .middle-section {
                flex-wrap: wrap;
            }
        }
    }

    #fourth-section {
        .inner-section {
            max-width: 100%;
            padding: 0px 24px;

            .middle-section {
                .box-item {
                    width: calc(50% - 12px);
                }
            }
        }
    }
}


@media (max-width: 767px) {

    h1 {
        font-size: 36px;
        line-height: 1.4em;
    }

    h2 {
        font-size: 28px;
        line-height: 1.4em;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 16px;
        line-height: 1.6em;
    }

    li {
        font-size: 16px;
        line-height: 1.6em;
    }

    a.cta,
    a.sub-cta,
    a.cta-white {
        font-size: 16px;
        padding: 14px 24px;
        width: 100%;
        text-align: center;
    }

    #hero {
        .inner-section {
            padding: 40px 16px;

            .upper-section {
                gap: 24px;

                .left-column {
                    gap: 12px;

                    .cta-section {
                        flex-direction: column;
                        gap: 12px;
                    }

                    .list-items {
                        flex-direction: column;
                        row-gap: 16px;
                    }
                }
            }

            .count-stripe {
                flex-direction: column;
                gap: 16px;

                .count-box {
                    width: 100%;
                    padding: 12px;
                }
            }
        }
    }

    #marque {
        padding: 20px 0px;
        margin-bottom: 48px;

        .marque-track {
            animation-duration: 12s;

            img {
                height: 18px;
                margin: 0 8px;
            }

            p {
                margin: 0 20px 0 0;
            }
        }
    }

    #did-you-know {
        padding: 24px 0px;

        .inner-section {
            padding: 0px 16px;
        }
    }

    #second-section {
        .inner-section {
            padding: 0px 16px;
            margin: 40px auto;
            gap: 16px;

            .problem-boxes {
                flex-direction: column;

                .problem-item {
                    width: 100%;
                    padding: 20px;

                    .count {
                        font-size: 64px;
                    }
                }
            }
        }
    }

    #ai-retail-analytics {
        .inner-section {
            padding: 0px 16px;
            gap: 16px;

            .button-section {
                .ai-button {
                    width: 100%;
                    justify-content: center;
                }
            }
        }
    }

    #third-section {
        padding: 40px 16px;

        .inner-section {
            padding: 32px 20px;
            border-radius: 16px;

            .middle-section {
                flex-direction: column;
                margin-top: 24px;

                .box-item {
                    padding: 16px 0px;
                }

                img {
                    width: 64px;
                }
            }
        }
    }

    #fourth-section {
        .inner-section {
            padding: 0px 16px;

            .middle-section {
                flex-direction: column;
                margin-top: 24px;

                .box-item {
                    width: 100%;
                    padding: 24px 20px;
                }
            }
        }
    }
}