/* =========================================================
   Tokens — Shopify-style palette
   ========================================================= */
:root {
    /* Backgrounds */
    --bg: #FBFBFA;
    /* off-white cream — shopify.com base */
    --bg-2: #F6F6F1;
    /* light cream surface */
    --bg-warm: #F1EFE7;
    /* warmer sand strip */
    --surface: #FFFFFF;
    /* pure white card */
    --evergreen: #002E25;
    /* deep brand band — shopify.com hero */
    --evergreen-2: #004C3F;
    /* slightly lighter evergreen */

    /* Lines */
    --line: #E5E5E0;
    --line-2: #D5D5CE;
    --line-dark: #163A33;
    /* on evergreen */

    /* Text */
    --ink: #1A1A1A;
    --ink-2: #303030;
    --muted: #616161;
    --muted-2: #878787;
    --on-dark: #F5F5F0;
    --on-dark-muted: #B5C0BB;

    /* Brand greens */
    --green: #008060;
    /* primary Shopify green */
    --green-2: #007057;
    /* hover */
    --green-deep: #004C3F;
    --green-light: #95BF47;
    /* classic Shopify logo green */
    --green-bg: #E5F1EC;
    /* very light green tint */

    /* Accents */
    --yellow: #FFD757;
    --coral: #F7654E;

    --r-sm: 8px;
    --r: 12px;
    --r-lg: 18px;
    --r-xl: 28px;

    --shadow-sm: 0 1px 2px rgba(20, 28, 30, .04), 0 2px 6px rgba(20, 28, 30, .04);
    --shadow: 0 1px 2px rgba(20, 28, 30, .04), 0 8px 24px -8px rgba(20, 28, 30, .08);
    --shadow-lg: 0 1px 2px rgba(20, 28, 30, .05), 0 24px 60px -20px rgba(20, 28, 30, .18);

    --maxw: 1240px;
    /*--pad:clamp(20px, 4vw, 56px);*/
    --pad: 20px;

    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

*::selection {
    background: var(--green-light);
    color: #000;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--sans);
    font-feature-settings: "cv11", "ss01", "ss03";
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: -.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.wrap {
    max-width: var(--maxw);
    margin-inline: auto;
    padding-inline: var(--pad);
    position: relative;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1.05;
    color: var(--ink);
    margin: 0;
}

p {
    margin: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--green);
    letter-spacing: -.005em;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 99px;
    font-size: 14.5px;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .15s ease, background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.btn-primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    transform: translateY(-1px);
}

.btn-green {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.btn-green:hover {
    background: var(--green-2);
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line-2);
}

.btn-ghost:hover {
    background: #fff;
    border-color: var(--ink);
}

.btn-on-dark {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

.btn-on-dark:hover {
    background: var(--green-light);
    border-color: var(--green-light);
}

.btn-on-dark.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
}

.btn-on-dark.ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .6);
}

.btn .arr {
    width: 14px;
    height: 14px;
    position: relative;
    display: inline-block;
    flex-shrink: 0;
    transition: transform .2s;
}

.btn .arr::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 1.5px;
    background: currentColor;
}

.btn .arr::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.btn:hover .arr {
    transform: translateX(3px);
}

/* =========================================================
   Top promo bar
   ========================================================= */
.promo {
    background: var(--evergreen);
    color: var(--on-dark);
    font-size: 13px;
    font-weight: 400;
}

.promo .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 10px;
    gap: 20px;
}

.promo .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-light);
    box-shadow: 0 0 0 0 rgba(149, 191, 71, .7);
    animation: pulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(149, 191, 71, .7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(149, 191, 71, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(149, 191, 71, 0);
    }
}

.promo a {
    color: var(--green-light);
    font-weight: 500;
    border-bottom: 1px solid rgba(149, 191, 71, .4);
}

.promo .right {
    display: flex;
    gap: 18px;
    color: var(--on-dark-muted);
}

@media(max-width:760px) {
    .promo .right {
        display: none;
    }
}

/* =========================================================
   Header
   ========================================================= */
header.site {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(251, 251, 250, .85);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid var(--line);
}

header.site .wrap {
    display: flex;
    align-items: center;
    gap: 36px;
    padding-block: 14px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 19px;
    letter-spacing: -.025em;
    color: var(--ink);
    max-width: 200px;
}

.logo .glyph {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--green);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .1);
}

.logo .dot {
    color: var(--green);
    margin: 0 1px;
}

/* nav.primary{ display:flex; gap:2px; margin-left:6px; } */
nav.primary ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav.primary ul li+li {
    margin-left: 30px;
}

nav.primary a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    padding: 16px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

nav.primary a:hover {
    color: var(--green);
}

/* nav.primary a:hover{ color:var(--ink); background:rgba(0,0,0,.04); } */

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tel-pill {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tel-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
}

@media(max-width:980px) {

    nav.primary,
    .tel-pill {
        display: none;
    }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
    position: relative;
    padding-block: clamp(56px, 7vw, 70px) clamp(56px, 7vw, 60px);
    overflow: hidden;
}

.hero .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    inset: 0;z-index: -1;
}

.hero .bg-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 360px at 92% 0%, rgba(0, 128, 96, .08), transparent 60%),
        radial-gradient(500px 300px at -5% 95%, rgba(149, 191, 71, .10), transparent 60%);
    pointer-events: none;
} */

.hero-grid {
    display: flex;
    /* grid-template-columns: 1.2fr .9fr; */
    gap: 70px;
    /* align-items: center; */
}

.hero-grid .hero-text {
    width: 60%;
}

@media(max-width:1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

.hero h1 {
    font-size: clamp(40px, 6vw, 84px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .99;
    margin-block: 18px 24px;
    color: var(--ink);
}

.hero h1 .accent {
    color: var(--green);
}

.hero h1 .underline {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.hero h1 .underline::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: .04em;
    height: .18em;
    background: var(--green);
    z-index: -1;
    border-radius: 2px;
    opacity: .65;
}

.hero h1 em {
    font-style: normal;
    color: var(--green);
}

.hero .sub {
    font-size: clamp(15.5px, 1.2vw, 18px);
    color: var(--muted);
    max-width: 560px;
    line-height: 1.55;
}

.hero .sub strong {
    color: var(--ink);
    font-weight: 600;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 22px 16px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-meta .stat .n {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--ink);
}

.hero-meta .stat .n em {
    color: var(--green);
    font-style: normal;
}

.hero-meta .stat .l {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    font-weight: 500;
}

/* Hero side — App preview cards */
.hero-side {
    position: relative;
    min-height: 790px;
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
}

.awards-card {
    min-width: 120px;
    position: relative;
    max-width: 120px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    max-height: 120px;
    height: 120px;
    box-shadow:
        0 4px 10px rgba(0, 0, 0, 0.05),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.awards-card img {
    transition: all 0.3s ease;
    display: block;
    object-fit: contain;
    object-position: center center;
    width: 100%;
    height: 100%;
}

.awards-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.7) 50%,
            transparent 70%);

    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Hover */
.awards-card:hover::after {
    opacity: 0;
}

.awards-card:hover img {
    transform: scale(1.1);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
    padding: 30px 0;
}

.app-card {
    /* position: absolute; */
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 24px;
    width: 340px;
    box-shadow: var(--shadow);
    transition: transform .35s ease, box-shadow .35s ease;
}

.app-card.a1 {
    /* top: 0;
      right: 0; */
    transform: rotate(2deg);
    margin-left: auto;
    /* z-index: 2; */
}

.app-card.a2 {
    top: 28%;
    left: 0;
    transform: rotate(-2deg);
    z-index: -1;
    position: absolute;
    width: 320px;
}

.awards-list {
    display: flex;
    margin-top: auto;
    align-items: center;
    gap: 30px;
}

.hero-side:hover .app-card {
    box-shadow: var(--shadow-lg);
}

.hero-side:hover .app-card.a1 {
    transform: rotate(0deg) translateY(-4px);
}

.hero-side:hover .app-card.a2 {
    transform: rotate(0deg) translateY(-4px);
}

.app-card .head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.app-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.app-icon.green {
    background: var(--green);
}

.app-icon.coral {
    background: var(--coral);
}

.app-card h4 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.005em;
    color: var(--ink);
}

.app-card .by {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 2px;
}

.app-card .desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.app-card .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--line);
    font-size: 11.5px;
    color: var(--muted);
}

.app-card .stars {
    color: #FFB400;
    letter-spacing: 1.5px;
    font-size: 12.5px;
}

.app-card .badge {
    background: var(--green-bg);
    color: var(--green-deep);
    padding: 3px 9px;
    border-radius: 99px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0;
}

.app-card .badge.coral {
    background: #FEEDE9;
    color: #B43E27;
}

.app-card .pricing-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 5px 10px;
    border-radius: 99px;
    font-size: 11.5px;
    color: var(--ink-2);
    font-weight: 500;
    margin-bottom: 10px;
}

.app-card .pricing-pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.app-card .pricing-pill .dot.coral {
    background: var(--coral);
}

@media(max-width:1080px) {
    .hero-side {
        min-height: auto;
        display: grid;
        gap: 18px;
        grid-template-columns: 1fr 1fr;
    }

    .app-card {
        position: relative;
        transform: none !important;
        width: 100%;
        box-shadow: var(--shadow);
    }
}

@media(max-width:680px) {
    .hero-side {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding-block: 36px;
    position: relative;
    overflow: hidden;
}

.trust .lbl {
    text-align: center;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: .04em;
    margin-bottom: 24px;
}

.marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
    display: flex;
    gap: 56px;
    padding-right: 56px;
    animation: marquee 42s linear infinite;
    flex-shrink: 0;
    align-items: center;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--ink);
    white-space: nowrap;
    opacity: .45;
    transition: opacity .2s, color .2s;
}

.brand.italic {
    font-style: italic;
    font-weight: 500;
}

.brand.thin {
    font-weight: 400;
}

.brand.serif {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
}

.brand:hover {
    opacity: 1;
    color: var(--green-deep);
}

/* =========================================================
   Sections
   ========================================================= */
.section {
    padding-block: clamp(72px, 6vw, 130px);
    position: relative;
}

.section.divider {
    border-top: 1px solid var(--line);
}

.section.warm {
    background: var(--bg-warm);
}

.section.dark {
    background: var(--evergreen);
    color: var(--on-dark);
}

.section.dark h2,
.section.dark h3,
.section.dark h4 {
    color: #fff;
}

.section.dark .eyebrow {
    color: var(--green-light);
}

.section.dark .eyebrow::before {
    background: var(--green-light);
}

.section-head {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.section-head .lead {
    max-width: 700px;
}

.section-head h2 {
    font-size: clamp(34px, 4.6vw, 64px);
    font-weight: 600;
    margin-top: 14px;
    letter-spacing: -.03em;
    line-height: 1.02;
}

.section-head h2 em {
    color: var(--green);
    font-style: normal;
}

.section.dark .section-head h2 em {
    color: var(--green-light);
}

.section-head .right {
    font-size: 15px;
    color: var(--muted);
    max-width: 450px;
    margin-top: 20px;
    line-height: 1.55;
}

.section.dark .section-head .right {
    color: var(--on-dark-muted);
}

/* =========================================================
   Featured Apps
   ========================================================= */
.apps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media(max-width:980px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
}

.app-feature {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 36px 32px 30px;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.app-feature:hover {
    border-color: var(--line-2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.app-feature.green {
    background: linear-gradient(170deg, #F4FBF7 0%, #FFFFFF 60%);
    border-color: #D7EAE0;
}

.app-feature.coral {
    background: linear-gradient(170deg, #FFF4F0 0%, #FFFFFF 60%);
    border-color: #F4D9CF;
}

.app-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.app-head .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.02em;
    box-shadow: 0 6px 20px -6px rgba(0, 0, 0, .2), inset 0 -3px 0 rgba(0, 0, 0, .1);
}

.app-head .icon.green {
    background: linear-gradient(150deg, var(--green), var(--green-deep));
}

.app-head .icon.coral {
    background: linear-gradient(150deg, var(--coral), #B43E27);
}

.app-head .meta .name {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.025em;
    color: var(--ink);
    line-height: 1.1;
}

.app-head .meta .tag {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500;
}

.app-head .meta .stars-row {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
}

.app-head .meta .stars-row .stars {
    color: #FFB400;
    letter-spacing: 2px;
    font-size: 14px;
}

.app-feature p.desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-2);
    margin-bottom: 22px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-2);
    line-height: 1.45;
}

.feature-list .check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--green-bg);
    color: var(--green-deep);
    font-size: 11px;
    font-weight: 700;
    margin-top: 1px;
}

.app-feature.coral .feature-list .check {
    background: #FEEDE9;
    color: #B43E27;
}

.pricing-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}

.pricing-strip .tier {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    padding: 14px 12px;
    font-size: 12px;
}

.pricing-strip .tier .lbl {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.pricing-strip .tier .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-top: 4px;
    line-height: 1;
    letter-spacing: -.025em;
}

.pricing-strip .tier .price small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

.pricing-strip .tier.featured {
    background: var(--green-bg);
    border-color: #A9D5BD;
}

.pricing-strip .tier.featured .price {
    color: var(--green-deep);
}

.app-feature.coral .pricing-strip .tier.featured {
    background: #FEEDE9;
    border-color: #F4C5B6;
}

.app-feature.coral .pricing-strip .tier.featured .price {
    color: #B43E27;
}

@media(max-width:520px) {
    .pricing-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

.app-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 24px;
    flex-wrap: wrap;
}

.link-arrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.link-arrow:hover {
    gap: 10px;
}

.app-feature.coral .link-arrow {
    color: #B43E27;
}

/* =========================================================
   Services grid
   ========================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* border-top: 1px solid var(--line);
      border-left: 1px solid var(--line); */
    background: var(--bg);
    gap: 20px;
}

@media(max-width:980px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:580px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.svc {
    position: relative;
    /* border-right: 1px solid var(--line); */
    border: 1px solid var(--line);
    padding: 34px 30px 32px;
    transition: all 0.4s ease !important;
    -webkit-transition: all 0.4s ease !important;
    overflow: hidden;
    cursor: default;
    background-color: #fff;
    border-radius: 20px;
}

.svc:hover {
    background: var(--bg-2);
    box-shadow: 0 0 10px 0 #0000003d;
    transform: translateY(-6px) !important;
}

/* Top Left Border */
.svc::after,
.svc::before {
    content: "";
    position: absolute;

    width: 0;
    height: 0;

    background: transparent;

    transition:
        width 0.4s ease,
        height 0.4s ease;

    pointer-events: none;
}

/* Top Left */
.svc::after {
    top: 0;
    left: 0;

    border-top: 1px solid green;
    border-left: 1px solid green;

    border-radius: 20px 0 0 0;
}

/* Bottom Right */
.svc::before {
    bottom: 0;
    right: 0;

    border-right: 1px solid green;
    border-bottom: 1px solid green;

    border-radius: 0 0 20px 0;
}

/* Hover Animation */
.svc:hover::after,
.svc:hover::before {
    width: 100%;
    height: 100%;
}

/* .svc:hover::before {
      border: 0px;
      border-bottom: 1px solid green;
      border-right: 1px solid green;
      top: auto;
      left: auto;
      bottom: 0;
      right:0;
    } */

.svc .num {
    font-size: 56px;
    color: var(--green-2);
    margin-bottom: 18px;
    font-weight: 800;
    letter-spacing: .05em;
    position: absolute;
    top: 0px;
    right: 20px;
    opacity: 0.4;
    transition: all 0.3s ease;
    z-index: 1;
}

.svc:hover .num {
    opacity: 1;
}

.svc .icn {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--green-bg);
    border: 1px solid #D7EAE0;
    color: var(--green-deep);
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    transition: background .25s, border-color .25s, color .25s;
}

.svc:hover .icn {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

.svc h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -.012em;
    line-height: 1.3;
    margin-bottom: 10px;
    color: var(--ink);
}

.svc p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}

/* =========================================================
   Process
   ========================================================= */
.process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* background: var(--line); */
    /* border: 1px solid var(--line); */
    border-radius: var(--r-lg);
}

@media(max-width:1080px) {
    .process {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:680px) {
    .process {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:420px) {
    .process {
        grid-template-columns: 1fr;
    }
}

.step {
    background: #fff;
    padding: 28px 22px 30px;
    position: relative;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    border: 1px solid var(--line);
    border-radius: 20px;
}

.step:hover {
    transform: translateY(-6px);

    background: var(--bg-2);
    border-color: var(--green);

    box-shadow:
        0 0 0 1px rgba(0, 128, 96, 0.15),
        0 12px 35px rgba(0, 128, 96, 0.14),
        0 6px 14px rgba(0, 0, 0, 0.05);
}

.step .num {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--green);
    line-height: 1;
    margin-bottom: 18px;
}

.step h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.step p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* =========================================================
   Industries
   ========================================================= */
.industries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

@media(max-width:1080px) {
    .industries {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:680px) {
    .industries {
        grid-template-columns: repeat(2, 1fr);
    }
}

.indu {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 20px 22px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform .2s, border-color .2s, background .2s;
}

.indu:hover {
    transform: translateY(-2px);
    border-color: var(--green);
    background: #fff;
}

.indu .icn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--bg-warm);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-size: 18px;
}

/* =========================================================
   Why us
   ========================================================= */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

@media(max-width:980px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why h2 {
    font-size: clamp(34px, 4.6vw, 60px);
    letter-spacing: -.03em;
}

.why .pull {
    font-size: 21px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.4;
    border-left: 3px solid var(--green);
    padding-left: 22px;
    margin: 30px 0;
    letter-spacing: -.012em;
}

.why p {
    color: var(--muted);
    line-height: 1.65;
    margin-block: 18px;
    font-size: 15.5px;
}

.why-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media(max-width:520px) {
    .why-side {
        grid-template-columns: 1fr;
    }
}

.why-stat {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    padding: 26px 22px 24px;
}

.why-stat .n {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1;
    color: var(--ink);
}

.why-stat .n em {
    color: var(--green);
    font-style: normal;
}

.why-stat .l {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 8px;
    line-height: 1.4;
    font-weight: 500;
}

/* =========================================================
   Engagement Models
   ========================================================= */
.eng-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media(max-width:980px) {
    .eng-grid {
        grid-template-columns: 1fr;
    }
}

.eng-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 34px 28px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.eng-card:hover {
    border-color: var(--line-2);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.eng-card.featured {
    background: linear-gradient(180deg, #F4FBF7 0%, #FFFFFF 70%);
    border-color: #A9D5BD;
}

.eng-card.featured::before {
    content: "Most Picked";
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 10.5px;
    letter-spacing: .05em;
    font-weight: 600;
    background: var(--green);
    color: #fff;
    padding: 5px 11px;
    border-radius: 99px;
}

.eng-card .ico {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--green-bg);
    color: var(--green-deep);
    margin-bottom: 22px;
}

.eng-card h3 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -.025em;
    margin-bottom: 6px;
}

.eng-card .desc {
    color: var(--muted);
    font-size: 14.5px;
    margin-bottom: 22px;
}

.eng-card .min-buy {
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-bottom: 18px;
}

.eng-card .min-buy .v {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -.035em;
    color: var(--green-deep);
    line-height: 1;
}

.eng-card .min-buy .u {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

.eng-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.eng-card ul li {
    font-size: 14px;
    color: var(--ink-2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.eng-card ul li::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--green-bg);
    flex-shrink: 0;
    margin-top: 3px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7.5l3 3 5-6.5' fill='none' stroke='%23004C3F' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* =========================================================
   Tech stack
   ========================================================= */
.stack-table {
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    overflow: hidden;
    background: var(--surface);
}

.stack-row {
    display: grid;
    grid-template-columns: 240px 1fr;
    border-bottom: 1px solid var(--line);
}

.stack-row:last-child {
    border-bottom: 0;
}

@media(max-width:680px) {
    .stack-row {
        grid-template-columns: 1fr;
    }
}

.stack-row .lbl {
    background: var(--bg-2);
    padding: 24px 26px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    border-right: 1px solid var(--line);
    display: flex;
    align-items: center;
    letter-spacing: -.005em;
}

@media(max-width:680px) {
    .stack-row .lbl {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding-block: 16px;
    }
}

.stack-row .vals {
    padding: 24px 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-row .vals span {
    font-size: 13px;
    font-weight: 500;
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 6px 12px;
    border-radius: 7px;
    color: var(--ink-2);
    transition: border-color .2s, color .2s, background .2s;
}

.stack-row .vals span:hover {
    border-color: var(--green);
    color: var(--green-deep);
    background: var(--green-bg);
}

/* =========================================================
   Reviews
   ========================================================= */
/* REMOVE OLD display:flex */
.testimonial-slider {
    display: flex;
    /* margin: 0 -10px; */
}

.testimonial .section-head {
    margin-bottom: 60px;
}

.testimonial-slider .items {
    width: 33.33%;
    height: 100%;
    /* padding: 10px; */
}

/* Card */
.testimonial-slider .testimonial-card {
    position: relative;
    overflow: hidden;

    height: 100%;
    padding: 30px 26px;

    display: flex;
    flex-direction: column;

    background: linear-gradient(180deg,
            rgba(255, 255, 255, .96),
            rgba(255, 255, 255, .92));

    backdrop-filter: blur(14px);

    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 24px;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, .03),
        0 18px 40px rgba(0, 0, 0, .06);
    transform: scale(0.9);
}

/* Hover */
.testimonial-slider .testimonial-card:hover,
.testimonial-slider .slick-slide.slick-current.slick-active .testimonial-card {
    transform: translateY(-6px) scale(1);

    border-color: rgba(0, 128, 96, .18);

    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1),
            rgba(245, 255, 250, 1));

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .08),
        0 28px 60px rgba(0, 0, 0, .12);
}

/* Accent + Shine */
.testimonial-slider .testimonial-card::before,
.testimonial-slider .testimonial-card::after {
    content: "";
    position: absolute;
}

.testimonial-slider .testimonial-card::before {
    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            #008060,
            #00b386,
            #008060);

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .4s ease;
}

.testimonial-slider .testimonial-card:hover::before,
.testimonial-slider .slick-slide.slick-current.slick-active .testimonial-card::before {
    transform: scaleX(1);
}

.testimonial-slider .testimonial-card::after {
    top: 0;
    left: -120%;

    width: 55%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .55),
            transparent);

    transform: skewX(-20deg);

    transition: left .7s ease;
}

.testimonial-slider .testimonial-card:hover::after {
    left: 130%;
}

/* Slick */
.testimonial-slider .slick-list {
    margin: 0 -12px;
    padding: 10px 0 30px;
}

.testimonial-slider .slick-slide,
.testimonial-slider .slick-slide>div {
    height: 100%;
}

/* Content */
.testimonial-slider .testimonial-card .stars {
    display: block;

    margin-bottom: 16px;

    font-size: 24px;
    line-height: 1;
    letter-spacing: 2px;

    color: gold;
}

.testimonial-slider .testimonial-card h4 {
    margin-bottom: 16px;

    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.testimonial-slider .testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.testimonial-slider .testimonial-card .textbox {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
}

/* Bottom */
.testimonial-slider .testimonial-card .bottom-contante {
    display: flex;
    align-items: center;
    gap: 20px;

    margin-top: auto;
}

.testimonial-slider .testimonial-card .bottom-contante h6 {
    margin: 0 0 4px;

    font-size: 16px;
    line-height: 1.5;

    color: gray;
}

.testimonial-slider .testimonial-card .bottom-contante p {
    margin: 0;
    font-size: 12px;
}

.testimonial-slider .testimonial-card .bottom-contante .imgbox {
    display: flex;
    align-items: center;
    justify-content: center;

    max-width: 60px;
    height: 60px;

    overflow: hidden;
    border-radius: 50%;

    border: 1px solid rgba(0, 0, 0, .08);

    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.testimonial-slider .testimonial-card .bottom-contante .imgbox img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;
}

/* Dots Wrapper */
.testimonial-slider .slick-dots {
    bottom: -55px;

    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;

    list-style: none;
}

/* Dot Item */
.testimonial-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

/* Button */
.testimonial-slider .slick-dots li button {
    width: 12px;
    height: 12px;

    padding: 0;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 128, 96, 0.2);

    transition:
        width .3s ease,
        background .3s ease,
        border-radius .3s ease;

    font-size: 0;
    cursor: pointer;
}

/* Remove Default Slick Dot */
.testimonial-slider .slick-dots li button::before {
    display: none;
}

/* Active Dot */
.testimonial-slider .slick-dots li.slick-active button {
    width: 34px;

    border-radius: 30px;

    background: linear-gradient(90deg,
            #008060,
            #00b386);
}



/* Arrows */
.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    position: absolute;
    bottom: -72px;
    top: auto;

    width: 50px;
    height: 50px;

    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 50%;

    background: #fff;

    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 0;
    cursor: pointer;

    transition: .3s ease;

    box-shadow:
        0 4px 10px rgba(0, 0, 0, .04),
        0 10px 24px rgba(0, 0, 0, .06);

    z-index: 3;
}

/* Prev Left Side */
.testimonial-slider .slick-prev {
    left: 45%;
    transform: translateX(-140px);
}

/* Next Right Side */
.testimonial-slider .slick-next {
    right: 45%;
    transform: translateX(140px);
}

/* Hover */
.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover {
    background: linear-gradient(180deg,
            #00b386,
            #008060);

    border-color: rgba(0, 128, 96, .2);

    box-shadow:
        0 10px 20px rgba(0, 128, 96, .18),
        0 18px 40px rgba(0, 128, 96, .22);
}

/* Icons */
.testimonial-slider .slick-prev::before,
.testimonial-slider .slick-next::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    font-size: 20px;
    color: #111;

    transition: .3s ease;
}

.testimonial-slider .slick-prev::before {
    content: "\f104";
}

.testimonial-slider .slick-next::before {
    content: "\f105";
}

.testimonial-slider .slick-prev:hover::before,
.testimonial-slider .slick-next:hover::before {
    color: #fff;
}

/* =========================================================
   Big CTA — evergreen dark band
   ========================================================= */
.cta-band {
    position: relative;
    border-radius: var(--r-xl);
    background: var(--evergreen);
    color: var(--on-dark);
    padding: clamp(40px, 6vw, 72px);
    overflow: hidden;
    display: flex;
    align-items: end;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px 380px at 100% 0%, rgba(149, 191, 71, .18), transparent 60%),
        radial-gradient(500px 300px at 0% 100%, rgba(0, 128, 96, .18), transparent 55%);
    pointer-events: none;
}

.cta-band>* {
    position: relative;
}

.right-image {
    max-width: 44%;
}

.right-image img {
    transform: scale(1.4);
}

.cta-band .eyebrow {
    color: var(--green-light);
}

.cta-band .eyebrow::before {
    background: var(--green-light);
}

.cta-band h2 {
    font-size: clamp(34px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: -.03em;
    max-width: 880px;
    margin-block: 14px 18px;
    color: #fff;
    line-height: 1.04;
}

.cta-band h2 em {
    color: var(--green-light);
    font-style: normal;
}

.cta-band p {
    color: var(--on-dark-muted);
    max-width: 620px;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-band .ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-band .signoff {
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    flex-wrap: wrap;
    gap: 14px 36px;
    font-size: 13px;
    color: var(--on-dark-muted);
}

.cta-band .signoff strong {
    color: #fff;
    font-weight: 600;
}

/* =========================================================
   Footer
   ========================================================= */
footer.site {
    background: var(--bg-2);
    border-top: 1px solid var(--line);
    padding-block: 64px 30px;
    margin-top: 0;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

@media(max-width:980px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:560px) {
    .foot-grid {
        grid-template-columns: 1fr;
    }
}

footer h5 {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 18px;
    letter-spacing: -.005em;
    text-transform: uppercase;
    letter-spacing: .06em;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer ul a {
    font-size: 14px;
    color: var(--muted);
    transition: color .15s;
}

footer ul a:hover {
    color: var(--green-deep);
}

.foot-about {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 380px;
}

.foot-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.foot-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--muted);
    background: #fff;
    transition: all .2s;
}

.foot-socials a:hover {
    border-color: var(--green);
    color: var(--green);
}

.address {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Country */
.address .country {
    display: inline-block;

    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: #008060;
    line-height: 1;
}

/* Item */
.address .email-address {
    display: flex;
    align-items: center;
    gap: 18px;
}

/* Label */
.address .email-address .email {
    position: relative;

    min-width: 72px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;

    color: #8b8b8b;
}

/* Vertical Line */
.address .email-address .email::after {
    content: "";

    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);

    width: 1px;
    height: 28px;

    background: #008060;
}

/* Link */
.address .email-address a {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;

    color: #1a1a1a;
    text-decoration: none;

    transition: color 0.3s ease;
}

.address .email-address a:hover {
    color: #008060;
}

/* Mobile Responsive */
@media (max-width: 575px) {
    .address .email-address {
        gap: 14px;
    }

    .address .email-address .email {
        min-width: 60px;
        font-size: 12px;
    }

    .address .email-address a {
        font-size: 14px;
        word-break: break-word;
    }
}

@media(max-width:680px) {
    .offices {
        grid-template-columns: 1fr;
    }
}


.foot-bottom {
    margin-top: 36px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: space-between;
    font-size: 12.5px;
    color: var(--muted);
}

.foot-bottom a {
    color: var(--ink-2);
}

.foot-bottom a:hover {
    color: var(--green-deep);
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}