:root {
    --brand-green: #42b80e;
    --brand-dark: #292a2e;
    --brand-green-light: #e8f8e0;
    --brand-green-mid: #d0f0bb;
    --nav-height: 64px;
    --max-width: 1400px;
    --font-body: "DM Sans", sans-serif;
    --font-body-alt: "DM Sans", sans-serif;
    --font-heading: "DM Sans", sans-serif;
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.05);
    --shadow-dropdown:
        0 8px 40px rgba(41, 42, 46, 0.13), 0 2px 8px rgba(41, 42, 46, 0.07);
    --radius-dropdown: 14px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    
    --card-w: 300px;
    --card-gap: 16px;
    --card-radius: 22px;
    --card-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;

    --foot-border: #e8e9eb;
    --foot-muted: #8a8d96;
    --foot-link: #3a3b40;
    --foot-link-hover: var(--brand-green);
}

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

body {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Google Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Lexend", sans-serif;
}

.title-highlight {
    color: var(--brand);
}

.hero-section {
    width: 100%;
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: #f0f4f8;
    clip-path: polygon(0 0, 100% 0, 100% 62%, 0 88%);
    z-index: 0;
}

.hero-top {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-top-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 96px 2rem 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    min-height: 520px;
    position: relative;
}

.hero-content {
    padding-bottom: 4rem;
    opacity: 0;
    transform: translateX(-38px);
    transition:
        opacity 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.08s,
        transform 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.08s;
}

.hero-content.hero-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body-alt);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 1.2rem;
}

.hero-eyebrow-badge {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--brand-green-light);
    color: var(--brand-green);
    text-transform: uppercase;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.8px;
    color: var(--brand-dark);
    margin-bottom: 1.4rem;
}

.hero-heading span {
    color: var(--brand-green);
}

.hero-desc {
    font-family: var(--font-body-alt);
    font-size: 0.88rem;
    line-height: 1.82;
    color: #5a5d68;
    max-width: 440px;
    margin-bottom: 2.2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.65rem 1.4rem;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 7px;
    text-decoration: none;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 14px rgba(66, 184, 14, 0.28);
}

.hero-btn-primary:hover {
    background: #37a00c;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(66, 184, 14, 0.36);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body-alt);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    transition:
        gap var(--transition),
        color var(--transition);
}

.hero-btn-ghost:hover {
    color: var(--brand-green);
    gap: 10px;
}

.hero-images {
    position: relative;
    min-height: 520px;
    opacity: 0;
    transform: translateX(38px);
    transition:
        opacity 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.05s,
        transform 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.05s;
}

.hero-images.hero-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-img-dashboard {
    position: absolute;
    top: 0;
    right: -3rem;
    width: 78%;
    border-radius: 14px;
    box-shadow:
        0 20px 60px rgba(41, 42, 46, 0.18),
        0 4px 16px rgba(41, 42, 46, 0.1);
    display: block;
    z-index: 2;
}

.hero-img-phone {
    position: absolute;
    bottom: -3.5rem;
    left: 0;
    width: 34%;
    border-radius: 22px;
    display: block;
    z-index: 3;
}

.hero-strip {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 5rem 0 4rem;
    margin-top: 3rem;
}

.hero-strip-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-strip-label {
    font-family: var(--font-body-alt);
    font-size: 0.68rem;
    font-weight: 500;
    color: #aab0bb;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-strip-track-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-strip-track-wrap::before,
.hero-strip-track-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: 8rem;
    z-index: 1;
    pointer-events: none;
}

.hero-strip-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.hero-strip-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.hero-strip-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: heroStripSlide 38s linear infinite;
}

.hero-strip-track:hover {
    animation-play-state: paused;
}

@keyframes heroStripSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.hero-strip-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3rem;
    flex-shrink: 0;
    height: 44px;
}

.hero-strip-item img {
    height: 28px;
    width: auto;
    max-width: 110px;
    object-fit: contain;
    display: block;
    filter: brightness(0) opacity(0.28);
    transition: filter var(--transition);
}

.hero-strip-item:hover img {
    filter: brightness(0) opacity(0.55);
}

@media (max-width: 960px) {
    .hero-top-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-content {
        transform: translateX(0);
        opacity: 0;
        transition:
            opacity 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.08s,
            transform 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.08s;
        padding-bottom: 2rem;
    }

    .hero-images {
        transform: translateX(0);
        opacity: 0;
        transition:
            opacity 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.22s,
            transform 0.72s cubic-bezier(0.22, 0.68, 0, 1.1) 0.22s;
        min-height: 320px;
        margin-bottom: 4rem;
    }

    .hero-img-dashboard {
        width: 72%;
        right: 0;
    }

    .hero-img-phone {
        width: 30%;
        bottom: -2.5rem;
    }

    .hero-bg {
        clip-path: polygon(0 0, 100% 0, 100% 78%, 0 94%);
    }
}

@media (max-width: 600px) {
    .hero-top-inner {
        padding: 72px 1.2rem 2rem;
    }

    .hero-strip {
        padding: 4rem 0 3rem;
        margin-top: 1rem;
    }

    .hero-strip-inner {
        padding: 0 1.2rem;
    }

    .hero-heading {
        font-size: 2.0rem;
    }

    .hero-desc {
        font-size: 0.84rem;
    }

    .hero-images {
        min-height: 260px;
    }

    .hero-img-dashboard {
        width: 75%;
    }

    .hero-img-phone {
        width: 34%;
        bottom: -2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-strip-item {
        padding: 0 2rem;
    }

    .hero-strip-track-wrap::before,
    .hero-strip-track-wrap::after {
        width: 3rem;
    }
}

.use-section {
    width: 100%;
    background: #fff;
    padding: 6rem 0 5rem;
}

.use-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.use-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.6px;
    color: var(--brand-dark);
    margin-bottom: 2.8rem;
    text-align: left;
}

.use-swiper {
    width: 100%;
    overflow: hidden;
}

.use-slide {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    gap: 1.2rem;
    align-items: stretch;
    height: auto;
}

.use-card {
    background: #fff;
    border-radius: 18px;
    box-shadow:
        0 2px 8px rgba(17, 17, 26, 0.05),
        0 8px 32px rgba(17, 17, 26, 0.06);
    padding: 2.4rem 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
}

.use-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6rem;
}

.use-card-label {
    font-family: var(--font-body-alt);
    font-size: 0.72rem;
    font-weight: 600;
    color: #8a8d96;
    letter-spacing: 0.3px;
}

.use-card-icon {
    font-size: 1.05rem;
    color: #c8ccd6;
}

.use-card-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.3px;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    flex: 1;
}

.use-card--wide .use-card-headline {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.use-card-headline span {
    color: var(--brand-green);
}

.use-card-sub {
    font-family: var(--font-body-alt);
    font-size: 0.82rem;
    line-height: 1.78;
    color: #6b6e7a;
    margin-bottom: 1.8rem;
}

.use-card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    flex-wrap: wrap;
}

.use-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.58rem 1.25rem;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.77rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 10px rgba(66, 184, 14, 0.24);
}

.use-btn-primary:hover {
    background: #37a00c;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(66, 184, 14, 0.32);
}

.use-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body-alt);
    font-size: 0.77rem;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    transition: gap var(--transition), color var(--transition);
}

.use-btn-ghost:hover {
    color: var(--brand-green);
    gap: 10px;
}

.use-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
}

.use-pagination {
    display: flex;
    gap: 6px;
    align-items: center;
}

.use-dot {
    width: 24px;
    height: 3px;
    background: rgba(41, 42, 46, 0.18);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.use-dot.use-dot-active {
    background: var(--brand-green);
    width: 38px;
}

.use-nav {
    display: flex;
    gap: 8px;
}

.use-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e2e4e9;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 8px rgba(17, 17, 26, 0.06);
}

.use-nav-btn:hover {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
    box-shadow: 0 4px 14px rgba(66, 184, 14, 0.28);
}

.use-nav-btn:disabled {
    opacity: 0.35;
    pointer-events: none;
}

.use-card--wide .use-card-sub {
    max-width: 520px;
}

@media (max-width: 860px) {
    .use-slide {
        grid-template-columns: 1fr;
    }

    .use-card--narrow {
        display: none;
    }

    .use-heading {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .use-section {
        padding: 4.5rem 0 4rem;
    }

    .use-inner {
        padding: 0 1.2rem;
    }

    .use-card {
        padding: 1.8rem 1.6rem 1.8rem;
    }

    .use-footer {
        margin-top: 1.6rem;
    }
}
:root {
    --why-card-w: 340px;
    --why-gap: 20px;
}

.why-section {
    width: 100%;
    background: #fff;
    padding: 5.5rem 0 5.5rem;
    overflow: hidden;
}

.why-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.why-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: var(--brand-dark);
}

.why-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.why-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition:
        background 0.2s,
        color 0.2s,
        transform 0.15s;
    flex-shrink: 0;
}
.why-nav-btn-prev {
    background: #ecedf0;
    color: #8a8d96;
}
.why-nav-btn-prev.why-active {
    background: var(--brand-green);
    color: #fff;
}
.why-nav-btn-next {
    background: var(--brand-green);
    color: #fff;
}
.why-nav-btn-next.why-inactive {
    background: #ecedf0;
    color: #8a8d96;
}
.why-nav-btn:active {
    transform: scale(0.92);
}

.why-track-outer {
    width: 100%;
    overflow: visible;
}

.why-track-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.why-track {
    display: flex;
    gap: var(--why-gap);
    will-change: transform;
}

.why-card {
    flex-shrink: 0;
    width: var(--why-card-w);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        rgba(17, 17, 26, 0.08) 0px 4px 20px,
        rgba(17, 17, 26, 0.04) 0px 8px 36px;
    display: flex;
    flex-direction: column;
}

.why-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.why-card-body {
    padding: 1.6rem 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-dark);
    line-height: 1.3;
}

.why-card-desc {
    font-family: var(--font-body-alt);
    font-size: 0.82rem;
    line-height: 1.78;
    color: #5a5d68;
}

@media (max-width: 768px) {
    :root {
        --why-card-w: 290px;
    }
    .why-section {
        padding: 4rem 0;
    }
    .why-heading {
        font-size: 1.5rem;
    }
    .why-card-img {
        height: 170px;
    }
}

@media (max-width: 480px) {
    :root {
        --why-card-w: 250px;
    }
    .why-header {
        padding: 0 1.2rem;
    }
    .why-track-inner {
        padding: 0 1.2rem;
    }
    .why-card-img {
        height: 150px;
    }
}

.cta-outer {
    max-width: var(--max-width);
    margin: 50px auto 0;
    padding: 0 2rem 6rem;
}

.cta-card {
    position: relative;
    background: #000;
    border-radius: 28px;
    height: 240px;
    display: flex;
    align-items: center;
    overflow: visible;
    padding: 0 3.5rem 0 calc(340px + 3rem);
}

.cta-person {
    position: absolute;
    left: 2.8rem;
    bottom: 0;
    height: calc(100% + 3.5rem);
    width: 280px;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1),
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1);
}
.cta-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px 16px 0 0;
    display: block;
}
.cta-person.cta-visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 0.68, 0, 1.1) 0.2s,
        transform 0.65s cubic-bezier(0.22, 0.68, 0, 1.1) 0.2s;
}
.cta-body.cta-visible {
    opacity: 1;
    transform: translateX(0);
}

.cta-desc {
    font-family: var(--font-body-alt);
    font-size: 0.83rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 360px;
}

.cta-action {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    font-family: var(--font-body-alt);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--transition);
}
.cta-action i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition:
        border-color var(--transition),
        background var(--transition),
        color var(--transition);
}
.cta-action:hover {
    color: #fff;
}
.cta-action:hover i {
    border-color: var(--brand-green);
    background: var(--brand-green);
    color: #fff;
}

/* ── MOBILE ── */
@media (max-width: 860px) {
    .cta-card {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border-radius: 22px;
        overflow: hidden;
    }

    .cta-person {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 260px;
        transform: translateY(-20px);
        border-radius: 0;
    }
    .cta-person img {
        border-radius: 0;
        object-position: top center;
    }
    .cta-person.cta-visible {
        transform: translateY(0);
    }

    .cta-body {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.4rem;
        padding: 1.8rem 2rem 2.2rem;
        transform: translateX(0);
        opacity: 0;
    }
    .cta-desc {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-outer {
        padding: 0 1rem 4rem;
    }
    .cta-person {
        height: 220px;
    }
    .cta-body {
        padding: 1.5rem 1.5rem 2rem;
    }
}

