:root {
    --brand-green: #42b80e;
    --brand-dark: #292a2e;
    --brand-green-light: #e8f8e0;
    --brand-green-mid: #d0f0bb;
    --nav-height: 64px;
    --max-width: 1400px;
    --font-body: "Space Grotesk", 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);
}

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    /* box-shadow: var(--shadow-nav); */
    transition: box-shadow var(--transition);
}

.nav-wrapper.nav-scrolled {
    box-shadow: 0 2px 32px rgba(41, 42, 46, 0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
    margin-right: 36px;
}

.nav-logo img {
    height: 34px;
    width: auto;
    display: block;
}

/* Desktop links */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
    flex: 1;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 13px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: #3a3b40;
    text-decoration: none;
    border-radius: 7px;
    transition:
        color var(--transition),
        background var(--transition);
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: -0.01em;
    border: none;
    background: none;
    line-height: 1;
    height: 34px;
}

.nav-link:hover,
.nav-item.nav-open > .nav-link {
    color: var(--brand-green);
    background: var(--brand-green-light);
}

.nav-link .nav-chevron {
    font-size: 11px;
    transition: transform var(--transition);
    opacity: 0.6;
    margin-top: 1px;
}

.nav-item.nav-open > .nav-link .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #fff;
    border-radius: 0 0 var(--radius-dropdown) var(--radius-dropdown);
    box-shadow: var(--shadow-dropdown);
    padding: 8px;
    min-width: 230px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--transition),
        transform var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    rotate: 45deg;
    border-radius: 2px 0 0 0;
}

.nav-item.nav-open > .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    border-radius: 9px;
    text-decoration: none;
    color: #3a3b40;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font-body);
    transition:
        background var(--transition),
        color var(--transition);
    cursor: pointer;
}

.nav-dropdown-item:hover {
    background: var(--brand-green-light);
    color: var(--brand-green);
}

.nav-dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.nav-dropdown-label {
    font-weight: 500;
    font-size: 13px;
    color: inherit;
    line-height: 1.2;
}

.nav-dropdown-sub {
    font-size: 11px;
    color: #8a8d96;
    font-weight: 400;
    line-height: 1.2;
}

.nav-dropdown-divider {
    height: 1px;
    background: #f0f1f3;
    margin: 6px 4px;
}

/* Right side */
.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    flex-shrink: 0;
}

.nav-btn-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    height: 36px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: var(--brand-green);
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    letter-spacing: -0.01em;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(66, 184, 14, 0.22);
}

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

.nav-btn-cta:active {
    transform: translateY(0);
}

/* Mobile toggle */
.nav-mobile-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    border: 1.5px solid #e8e9eb;
    background: none;
    cursor: pointer;
    color: var(--brand-dark);
    font-size: 17px;
    transition: all var(--transition);
    margin-left: 8px;
    flex-shrink: 0;
}

.nav-mobile-toggle:hover {
    background: var(--brand-green-light);
    border-color: var(--brand-green);
    color: var(--brand-green);
}

/* Mobile drawer */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(41, 42, 46, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    pointer-events: none;
}

.nav-mobile-overlay.nav-mobile-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 88vw);
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -8px 0 40px rgba(41, 42, 46, 0.15);
}

.nav-drawer.nav-drawer-open {
    transform: translateX(0);
}

.nav-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #f0f1f3;
    flex-shrink: 0;
}

.nav-drawer-header img {
    height: 30px;
    width: auto;
    display: block;
}

.nav-drawer-close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1.5px solid #e8e9eb;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--brand-dark);
    transition: all var(--transition);
}

.nav-drawer-close:hover {
    background: #fde8e8;
    border-color: #f5a5a5;
    color: #d64040;
}

.nav-drawer-body {
    padding: 12px 16px 24px;
    flex: 1;
}

.nav-mobile-item {
    margin-bottom: 2px;
}

.nav-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #3a3b40;
    font-family: var(--font-body);
    text-decoration: none;
    transition:
        background var(--transition),
        color var(--transition);
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.nav-mobile-link:hover,
.nav-mobile-item.nav-mobile-open > .nav-mobile-link {
    background: var(--brand-green-light);
    color: var(--brand-green);
}

.nav-mobile-link .nav-chevron {
    font-size: 11px;
    transition: transform var(--transition);
    opacity: 0.5;
}

.nav-mobile-item.nav-mobile-open > .nav-mobile-link .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-mobile-submenu {
    display: none;
    padding: 4px 0 4px 12px;
}

.nav-mobile-item.nav-mobile-open > .nav-mobile-submenu {
    display: block;
}

.nav-mobile-sub-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    font-family: var(--font-body);
    transition:
        background var(--transition),
        color var(--transition);
    margin-bottom: 1px;
}

.nav-mobile-sub-link:hover {
    background: var(--brand-green-light);
    color: var(--brand-green);
}

.nav-mobile-sub-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--brand-green);
    flex-shrink: 0;
}

.nav-mobile-divider {
    height: 1px;
    background: #f0f1f3;
    margin: 10px 0;
}

.nav-drawer-footer {
    padding: 16px 20px 24px;
    border-top: 1px solid #f0f1f3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.nav-drawer-footer .nav-btn-cta {
    justify-content: center;
    height: 42px;
    font-size: 14px;
    border-radius: 10px;
}

@media (max-width: 900px) {
    .nav-links,
    .nav-right .nav-btn-ghost {
        display: none;
    }

    .nav-mobile-toggle {
        display: flex;
    }

    .nav-mobile-overlay {
        display: block;
    }

    .nav-right .nav-btn-cta {
        display: none;
    }
}

@media (max-width: 600px) {
    .nav-container {
        padding: 0 18px;
    }
}

.hero-section-wrapper {
    width: 100%;
    padding: 1.5rem 1rem 0;
    margin-top: 70px;
}

.hero-outer {
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-section {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 50vh;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: stretch;
}

.hero-slide[data-theme="green"] {
    background: var(--brand-green);
}

.hero-slide[data-theme="dark"] {
    background: #000;
}

.hero-image-half {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image-half img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content-half {
    position: relative;
    z-index: 3;
    width: 52%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2.8rem 3rem 2.8rem 3rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.4px;
    color: #fff;
    margin-bottom: 0.85rem;
    opacity: 0;
    transform: translateY(22px);
}

.hero-title em {
    font-style: normal;
}

.hero-slide[data-theme="green"] .hero-title em {
    color: var(--brand-dark);
}

.hero-slide[data-theme="dark"] .hero-title em {
    color: var(--brand-green);
}

.hero-desc {
    font-size: 0.8rem;
    line-height: 1.72;
    max-width: 320px;
    margin-bottom: 1.6rem;
    opacity: 0;
    transform: translateY(22px);
}

.hero-slide[data-theme="green"] .hero-desc {
    color: rgba(255, 255, 255, 0.88);
}

.hero-slide[data-theme="dark"] .hero-desc {
    color: rgba(255, 255, 255, 0.72);
}

.hero-cta-row {
    opacity: 0;
    transform: translateY(22px);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0.58rem 1.3rem;
    font-family: var(--font-body);
    font-size: 0.77rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    border: none;
    transition: all 0.2s ease;
}

.hero-slide[data-theme="green"] .hero-btn {
    background: var(--brand-dark);
    color: #fff;
}

.hero-slide[data-theme="dark"] .hero-btn {
    background: var(--brand-green);
    color: #fff;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.hero-slide.hero-active .hero-title,
.hero-slide.hero-active .hero-desc,
.hero-slide.hero-active .hero-cta-row {
    animation: heroSlideUp 0.6s cubic-bezier(0.22, 0.68, 0, 1.2) forwards;
}

.hero-slide.hero-active .hero-title {
    animation-delay: 0.1s;
}

.hero-slide.hero-active .hero-desc {
    animation-delay: 0.22s;
}

.hero-slide.hero-active .hero-cta-row {
    animation-delay: 0.34s;
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-pagination {
    position: absolute;
    bottom: 1.2rem;
    left: 2rem;
    z-index: 10;
    display: flex;
    gap: 6px;
    align-items: center;
}

.hero-dot {
    width: 24px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dot.active {
    background: #fff;
    width: 38px;
}

.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 0.95rem;
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.28);
}

.hero-prev {
    left: 1rem;
}

.hero-next {
    right: 1rem;
}

.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 10;
    width: 100%;
}

.hero-progress-bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    width: 0%;
    transition: width linear;
}

.strp-partners {
    width: 100%;
    background: #fff;
    padding: 0;
    margin-top: 2rem;
    overflow: hidden;
}

.strp-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.strp-label {
    flex-shrink: 0;
    padding: 1.4rem 2rem 1.4rem 1.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    white-space: nowrap;
    border-right: 1px solid #ebebeb;
}

.strp-track-wrap {
    position: relative;
    flex: 1;
    overflow: hidden;
    height: 4.5rem;
    display: flex;
    align-items: center;
}

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

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

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

.strp-logos {
    list-style: none;
    display: flex;
    align-items: center;
    animation: strp-slide 35s linear infinite;
}

.strp-logos li {
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.strp-logos img {
    height: 28px;
    width: 110px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.7);
    transition: filter 0.3s;
}

.strp-logos li:hover img {
    filter: grayscale(0) opacity(1);
}

@keyframes strp-slide {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 700px) {
    .strp-label {
        display: none;
    }

    .strp-track-wrap {
        height: 3.8rem;
    }

    .strp-logos li {
        width: 8rem;
    }

    .strp-logos img {
        height: 22px;
        width: 88px;
    }

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

@media (max-width: 700px) {
    .hero-section {
        border-radius: 12px;
        min-height: 60vh;
    }

    .hero-slide {
        min-height: 60vh;
    }

    .hero-image-half {
        width: 55%;
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-content-half {
        width: 65%;
        padding: 2rem 1.5rem 2.5rem 1.5rem;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-desc {
        font-size: 0.76rem;
        max-width: 100%;
    }

    .hero-nav-btn {
        display: none;
    }

    .hero-pagination {
        left: 1.2rem;
        bottom: 0.9rem;
    }
}

@media (max-width: 420px) {
    .hero-content-half {
        width: 78%;
        padding: 1.8rem 1.2rem 2.2rem 1.2rem;
    }

    .hero-image-half {
        width: 52%;
        clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-title {
        font-size: 1.4rem;
    }

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

.ind-section {
    width: 100%;
    background: #fff;
    padding: 88px 0 96px;
    position: relative;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ind-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 0 0 40px;
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    width: 100%;
}

.ind-header {
    flex-shrink: 0;
    width: 400px;
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.ind-rating {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 18px;
    font-family: var(--font-body-alt);
    font-size: 13px;
    color: #5a5d66;
    font-weight: 400;
}
.ind-rating-star {
    color: #f5a623;
    font-size: 14px;
}
.ind-rating strong {
    color: var(--brand-dark);
    font-weight: 600;
}

.ind-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.6vw, 56px);
    font-weight: 700;
    line-height: 1.02;
    color: var(--brand-dark);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.ind-subtitle {
    font-family: var(--font-body-alt);
    font-size: 14px;
    font-weight: 400;
    color: #8a8d96;
    line-height: 1.55;
    margin-bottom: 24px;
}

.ind-controls {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

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

.ind-cards-outer {
    flex: 1;
    min-width: 0;
    position: relative;
    height: 460px;
    overflow: hidden;
}

.ind-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: var(--card-gap);
    will-change: transform;
}

.ind-card {
    flex-shrink: 0;
    width: var(--card-w);
    height: 420px;
    border-radius: var(--card-radius);
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    box-shadow: var(--card-shadow);
    position: relative;
    will-change: transform, opacity;
    transform-origin: left center;
}

.ind-card-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ind-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--brand-green-light);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ind-card-desc {
    font-family: var(--font-body-alt);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #5a5d66;
}

.ind-card-bottom {
    margin-top: 20px;
}

.ind-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--brand-dark);
    text-transform: uppercase;
    line-height: 1.1;
}

.ind-fade-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff);
    pointer-events: none;
    z-index: 10;
}

@media (max-width: 900px) {
    :root {
        --card-gap: 12px;
    }

    .ind-section {
        overflow: hidden;
    }

    .ind-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 32px;
    }

    .ind-header {
        width: 100%;
        padding-right: 0;
    }
    .ind-subtitle {
        margin-bottom: 20px;
    }
    .ind-controls {
        margin-top: 0;
    }

    .ind-cards-outer {
        width: 100vw;
        margin-left: -24px;
        height: auto;
        overflow-x: hidden;
        overflow-y: visible;
    }

    .ind-track {
        position: relative;
        top: auto;
        left: auto;
        height: auto;
        padding: 16px 24px 24px;
    }

    .ind-card {
        height: 360px;
    }
}

@media (max-width: 560px) {
    .ind-section {
        padding: 60px 0 72px;
    }
    .ind-title {
        font-size: 34px;
    }
    .ind-card {
        height: 320px;
    }
    .ind-card-desc {
        font-size: 14px;
    }
}

.ftr-section {
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 1.5rem;
}

.ftr-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(860px, 120vw);
    height: min(860px, 120vw);
    pointer-events: none;
    z-index: 0;
}
.ftr-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(66, 184, 14, 0.09);
}
.ftr-ring:nth-child(1) {
    width: 22%;
    height: 22%;
}
.ftr-ring:nth-child(2) {
    width: 42%;
    height: 42%;
}
.ftr-ring:nth-child(3) {
    width: 62%;
    height: 62%;
}
.ftr-ring:nth-child(4) {
    width: 82%;
    height: 82%;
}
.ftr-ring:nth-child(5) {
    width: 100%;
    height: 100%;
}

.ftr-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.ftr-header {
    text-align: center;
    margin-bottom: 4.5rem;
}
.ftr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 1.1rem;
}
.ftr-eyebrow i {
    font-size: 0.82rem;
}
.ftr-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.8vw, 2.9rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.ftr-subhead {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.75;
    max-width: 440px;
    margin: 0 auto 2.2rem;
}
.ftr-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.62rem 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.77rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition:
        background 0.2s,
        border-color 0.2s,
        transform 0.2s;
}
.ftr-cta:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.ftr-stage {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: center;
}

.ftr-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.ftr-card {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--card-radius);
    padding: 1.5rem 1.6rem 1.4rem;
    width: var(--card-w);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    cursor: default;
    opacity: 0;
    transform: scale(0.86) translateY(16px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 0.68, 0, 1.1),
        transform 0.55s cubic-bezier(0.22, 0.68, 0, 1.1),
        background 0.22s,
        border-color 0.22s;
}
.ftr-card.ftr-visible {
    opacity: 1;
    transform: scale(1) translateY(0);
}
.ftr-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(66, 184, 14, 0.28);
}

.ftr-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(66, 184, 14, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.9rem;
    color: var(--brand-green);
    font-size: 0.95rem;
}
.ftr-card-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}
.ftr-card-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.68;
}

.ftr-col-left {
    align-items: flex-end;
}
.ftr-col-left .ftr-card {
    text-align: right;
}
.ftr-col-left .ftr-card-icon {
    margin-left: auto;
    margin-right: 0;
}
.ftr-col-left .ftr-card-link {
    margin-left: auto;
}

.ftr-col-right {
    align-items: flex-start;
}

.ftr-phone-wrap {
    position: relative;
    width: 400px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ftr-phone-glow {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(66, 184, 14, 0.38) 0%,
        rgba(66, 184, 14, 0.1) 50%,
        transparent 72%
    );
    z-index: 0;
    filter: blur(6px);
    pointer-events: none;
}
.ftr-phone-img {
    position: relative;
    z-index: 1;
    width: 400px;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
    display: block;
    opacity: 0;
    transform: scale(0.8);
    transition:
        opacity 0.75s cubic-bezier(0.22, 0.68, 0, 1.15) 0.05s,
        transform 0.75s cubic-bezier(0.22, 0.68, 0, 1.15) 0.05s;
}
.ftr-phone-img.ftr-visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1050px) {
    :root {
        --card-w: 230px;
    }
    .ftr-stage {
        gap: 1.5rem;
    }
    .ftr-phone-wrap {
        width: 300px;
    }
    .ftr-phone-img {
        width: 300px;
        height: 390px;
    }
    .ftr-phone-glow {
        width: 360px;
        height: 360px;
    }
}

@media (max-width: 740px) {
    .ftr-section {
        padding: 4.5rem 1.2rem 5rem;
        min-height: auto;
    }
    .ftr-stage {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 0;
    }
    .ftr-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 0.9rem;
    }
    .ftr-col-left {
        order: 2;
        margin-top: 1.5rem;
    }
    .ftr-col-right {
        order: 3;
        margin-top: 0.9rem;
    }
    .ftr-phone-wrap {
        order: 1;
        margin: 0 auto 0.5rem;
        width: 220px;
    }
    .ftr-phone-img {
        width: 220px;
        height: 285px;
    }
    :root {
        --card-w: calc(50% - 0.5rem);
    }
    .ftr-card {
        width: 100%;
        min-width: 130px;
    }
    .ftr-col-left {
        align-items: stretch;
    }
    .ftr-col-left .ftr-card {
        text-align: left;
    }
    .ftr-col-left .ftr-card-icon {
        margin-left: 0;
    }
    .ftr-col-left .ftr-card-link {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    :root {
        --card-w: 100%;
    }
    .ftr-col {
        flex-direction: column;
        align-items: stretch;
    }
    .ftr-phone-img {
        width: 180px;
        height: 234px;
    }
    .ftr-phone-glow {
        width: 240px;
        height: 240px;
    }
    .ftr-header {
        margin-bottom: 3rem;
    }
}

.faq-section {
    background: #fff;
    width: 100%;
    overflow-x: hidden;
  }

  .faq-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    padding: 88px 40px;
  }

  .faq-header {
    position: sticky;
    top: 88px;
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }

  .faq-header.faq-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .faq-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    color: var(--brand-dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
  }

  .faq-subtitle {
    font-family: var(--font-body-alt);
    font-size: 14.5px;
    color: #6b6f7a;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 320px;
  }

  .faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-green);
    text-decoration: none;
    transition: gap var(--transition);
  }

  .faq-contact:hover {
    gap: 10px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: #f7f8fa;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: background var(--transition), border-color var(--transition);
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1), background var(--transition), border-color var(--transition);
  }

  .faq-item.faq-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .faq-item:hover {
    background: #f0f2f4;
  }

  .faq-item.faq-active {
    background: var(--brand-green-light);
    border-color: var(--brand-green-mid);
  }

  .faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    cursor: pointer;
    gap: 20px;
    -webkit-user-select: none;
    user-select: none;
  }

  .faq-question {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.5;
    flex: 1;
    font-family: var(--font-body);
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow var(--transition);
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    font-size: 14px;
    color: var(--brand-dark);
  }

  .faq-item:hover .faq-icon {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 2px 12px rgba(66,184,14,0.25);
  }

  .faq-item.faq-active .faq-icon {
    background: var(--brand-green);
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 2px 12px rgba(66,184,14,0.25);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4,0,0.2,1), padding 0.42s ease;
  }

  .faq-item.faq-active .faq-answer {
    max-height: 400px;
    padding: 0 26px 26px;
  }

  .faq-answer p {
    font-family: var(--font-body-alt);
    font-size: 14px;
    line-height: 1.75;
    color: #5a5d66;
    padding-top: 2px;
    border-top: 1px solid rgba(66,184,14,0.15);
    padding-top: 16px;
  }

  @media (max-width: 1024px) {
    .faq-container {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .faq-header {
      position: static;
    }
    .faq-subtitle {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .faq-container { padding: 60px 24px; }
    .faq-title { font-size: 34px; }
    .faq-question { font-size: 14px; }
    .faq-question-wrapper { padding: 18px 20px; }
    .faq-item.faq-active .faq-answer { padding: 0 20px 22px; }
    .faq-answer p { font-size: 13.5px; }
    .faq-icon { width: 26px; height: 26px; font-size: 12px; }
  }
.how-section {
    width: 100%;
    background: #fff;
    padding: 88px 0 96px;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.how-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.how-header {
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.how-header.how-visible {
    opacity: 1;
    transform: translateY(0);
}

.how-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.05;
    color: var(--brand-dark);
    letter-spacing: -0.3px;
}

.how-title span {
    color: var(--brand-green);
}

.how-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.how-card {
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    min-height: 420px;
    cursor: default;
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
}

.how-card.how-visible {
    opacity: 1;
    transform: translateY(0);
}

.how-card:hover {
    box-shadow: 0 20px 50px rgba(41, 42, 46, 0.18);
}

.how-card:hover .how-card-img {
    transform: scale(1.04);
}

.how-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.how-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(41, 42, 46, 0.08) 0%,
        rgba(41, 42, 46, 0.22) 30%,
        rgba(41, 42, 46, 0.78) 65%,
        rgba(41, 42, 46, 0.96) 100%
    );
    z-index: 1;
}

.how-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px 28px 30px;
    z-index: 2;
}

.how-card-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.how-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.2px;
}

.how-card-desc {
    font-family: var(--font-body-alt);
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.how-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    transition: gap var(--transition);
}

.how-card-link:hover {
    gap: 10px;
}

@media (max-width: 900px) {
    .how-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        margin: 0 auto;
        width: 100%;
    }

    .how-card {
        min-height: 380px;
    }
}

@media (max-width: 580px) {
    .how-section {
        padding: 64px 0 72px;
    }
    .how-inner {
        padding: 0 24px;
    }
    .how-header {
        margin-bottom: 36px;
    }

    .how-cards {
        grid-template-columns: 1fr;
    }

    .how-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }

    .how-card {
        min-height: 340px;
    }
}

.dev-section {
    width: 100%;
    background-color: var(--brand-green-light);
    background-image: url(../images/pattern.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 96px 0;
    overflow: hidden;
}

.dev-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.dev-content {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-48px);
    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);
}
.dev-content.dev-revealed {
    opacity: 1;
    transform: translateX(0);
}

.dev-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.04;
    color: var(--brand-dark);
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.dev-title span {
    color: var(--brand-green);
}

.dev-lead {
    font-family: var(--font-body-alt);
    font-size: 16px;
    line-height: 1.75;
    color: #4a4d58;
    margin-bottom: 14px;
    max-width: 460px;
}

.dev-lead strong {
    color: var(--brand-dark);
    font-weight: 600;
}

.dev-sub {
    font-family: var(--font-body-alt);
    font-size: 14px;
    line-height: 1.72;
    color: #6b6f7a;
    margin-bottom: 40px;
    max-width: 440px;
}

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

.dev-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 9px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 14px rgba(66, 184, 14, 0.3);
}

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

.dev-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 12px 22px;
    color: var(--brand-dark);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 9px;
    text-decoration: none;
    border: 1.5px solid rgba(41, 42, 46, 0.22);
    transition: all var(--transition);
    letter-spacing: -0.01em;
}

.dev-btn-ghost:hover {
    border-color: var(--brand-dark);
    background: rgba(41, 42, 46, 0.05);
}

.dev-visuals {
    position: relative;
    height: 520px;
    opacity: 0;
    transform: translateX(48px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.15s,
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.15s;
}
.dev-visuals.dev-revealed {
    opacity: 1;
    transform: translateX(0);
}

.dev-tab-bar {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.dev-tab {
    padding: 8px 18px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    -webkit-user-select: none;
    user-select: none;
    letter-spacing: -0.01em;
}

.dev-tab-active {
    background: var(--brand-green);
    color: #fff;
    cursor: default;
}

.dev-tab-inactive {
    background: rgba(41, 42, 46, 0.07);
    color: rgba(41, 42, 46, 0.38);
    border: 1px solid rgba(41, 42, 46, 0.1);
    pointer-events: none;
    cursor: default;
}

.dev-img-code {
    position: absolute;
    top: 50px;
    left: 0;
    width: 88%;
    border-radius: 14px;
    box-shadow:
        0 24px 60px rgba(41, 42, 46, 0.22),
        0 4px 16px rgba(41, 42, 46, 0.12);
    display: block;
    z-index: 10;
}

.dev-img-ui {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    border-radius: 24px;
    display: block;
    z-index: 5;
}

.dev-langs-strip {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 56px 0 0;
}

.dev-langs-slider {
    position: relative;
    width: 100%;
    height: 5rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dev-langs-slider::before,
.dev-langs-slider::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 10rem;
    z-index: 1;
    pointer-events: none;
}

.dev-langs-slider::before {
    left: 0;
    background: linear-gradient(
        to right,
        var(--brand-green-light) 0%,
        transparent 100%
    );
}

.dev-langs-slider::after {
    right: 0;
    background: linear-gradient(
        to left,
        var(--brand-green-light) 0%,
        transparent 100%
    );
}

.dev-langs-logos {
    list-style: none;
    display: flex;
    width: calc(10rem * 8 * 2);
    animation: dev-slide-left 40s linear infinite;
}

.dev-langs-logos li {
    width: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dev-langs-logos img {
    height: 44px;
    width: 120px;
    object-fit: contain;
    filter: brightness(0) opacity(0.35);
    transition: filter 0.3s;
}

.dev-langs-logos li:hover img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(98%) saturate(400%)
        hue-rotate(68deg) brightness(95%) contrast(96%) opacity(1);
}

@keyframes dev-slide-left {
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

@media (max-width: 1024px) {
    .dev-inner {
        grid-template-columns: 1fr;
        gap: 52px;
    }
    .dev-visuals {
        height: 400px;
    }
    .dev-lead,
    .dev-sub {
        max-width: 100%;
    }
    .dev-content {
        transform: translateX(0);
        opacity: 0;
    }
    .dev-visuals {
        transform: translateX(0);
        opacity: 0;
    }
    .dev-content {
        animation: none;
    }
}

@media (max-width: 768px) {
    .dev-langs-slider {
        height: 4rem;
    }
    .dev-langs-slider::before,
    .dev-langs-slider::after {
        width: 6rem;
    }
    .dev-langs-logos img {
        height: 34px;
        width: 90px;
    }
}

@media (max-width: 640px) {
    .dev-section {
        padding: 68px 0 0;
    }
    .dev-inner {
        padding: 0 24px;
        gap: 40px;
    }
    .dev-title {
        font-size: 36px;
    }
    .dev-visuals {
        height: 300px;
    }
    .dev-img-code {
        width: 84%;
    }
    .dev-img-ui {
        width: 46%;
    }
    .dev-langs-strip {
        padding: 40px 0 0;
    }
}

.test-section {
    width: 100%;
    background: #fff;
    padding: 100px 0 110px;
    overflow: hidden;
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.test-header {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.test-tracks,
.test-header {
    width: 100%;
}

.test-header.in-view {
    opacity: 1;
    transform: translateY(0);
}

.test-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1;
    color: var(--brand-dark);
    letter-spacing: -0.3px;
}

.test-title span {
    color: var(--brand-green);
}

.test-header-right {
    max-width: 400px;
    flex-shrink: 0;
}

.test-desc {
    font-size: 15.5px;
    color: #6b6f7a;
    line-height: 1.75;
    font-family: var(--font-body-alt);
}

.test-tracks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.test-track-wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tes-track-wrap::-webkit-scrollbar {
    display: none;
}

.test-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    padding: 0 24px;
}

.test-card {
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 290px;
}

.test-stat-card {
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
}

.test-stat-card.test-green-bg {
    background: var(--brand-green-mid);
}

.test-stat-card.test-dark-bg {
    background: #000;
}

.test-stat-num {
    font-family: var(--font-heading);
    font-size: clamp(60px, 6.5vw, 90px);
    line-height: 1;
    letter-spacing: -1px;
}

.test-stat-num span {
    font-size: 0.48em;
    vertical-align: super;
}

.test-green-bg .test-stat-num {
    color: var(--brand-dark);
}
.test-dark-bg .test-stat-num {
    color: var(--brand-green);
}

.test-stat-label {
    font-size: 14.5px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.45;
    font-family: var(--font-body-alt);
}

.test-green-bg .test-stat-label {
    color: rgba(41, 42, 46, 0.6);
}
.test-dark-bg .test-stat-label {
    color: rgba(255, 255, 255, 0.55);
}

.test-quote-card {
    width: 460px;
    background: #f7f8fa;
    border: 1px solid #ecedf0;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition:
        border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.test-quote-card:hover {
    border-color: var(--brand-green);
    box-shadow: 0 4px 24px rgba(66, 184, 14, 0.08);
}

.test-quote-icon {
    font-size: 22px;
    color: var(--brand-green);
    opacity: 0.7;
    margin-bottom: 14px;
}

.test-quote-text {
    font-size: 16px;
    color: #4a4d58;
    line-height: 1.72;
    font-family: var(--font-body-alt);
    font-weight: 400;
    flex: 1;
}

.test-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    flex-shrink: 0;
}

.test-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--brand-green-light);
    border: 1.5px solid var(--brand-green-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-green);
    flex-shrink: 0;
    overflow: hidden;
}

.test-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-author-name {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--brand-dark);
    font-family: var(--font-body);
}

.test-author-role {
    font-size: 12.5px;
    color: #8a8d96;
    margin-top: 2px;
    font-family: var(--font-body-alt);
}

.test-img-card {
    width: 360px;
    position: relative;
}

.test-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.test-img-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(41, 42, 46, 0.82) 0%,
        transparent 55%
    );
}

.test-img-overlay {
    position: absolute;
    bottom: 26px;
    left: 26px;
    z-index: 2;
}

.test-img-name {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    font-family: var(--font-body);
}

.test-img-company {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
    font-family: var(--font-body-alt);
}

.test-img-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    background: var(--brand-green);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .test-section {
        padding: 70px 0 80px;
    }
    .test-header {
        padding: 0 24px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 44px;
    }
    .test-header-right {
        max-width: 100%;
    }
    .test-card {
        height: 255px;
    }
    .test-stat-card {
        width: 260px;
        padding: 26px;
    }
    .test-quote-card {
        width: 360px;
        padding: 26px;
    }
    .test-img-card {
        width: 300px;
    }
    .test-track {
        padding: 0 20px;
        gap: 16px;
    }
    .test-quote-text {
        font-size: 14.5px;
    }
    .test-stat-label {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .test-card {
        height: 280px;
    }
    .test-stat-card {
        width: 220px;
        padding: 22px;
    }
    .test-quote-card {
        width: 300px;
        padding: 22px;
    }
    .test-img-card {
        width: 260px;
    }
    .test-track {
        padding: 0 16px;
        gap: 12px;
    }
    .test-quote-text {
        font-size: 13.5px;
    }
}

.cta-section {
    width: 100%;
    background: #f0f4f8;
}

.cta-section > div {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 2rem;
    width: 100%;
}

.cta-inner {
    width: 100%;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.25;
    margin-bottom: 28px;
    max-width: 480px;
    letter-spacing: -0.02em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 12px rgba(66, 184, 14, 0.25);
}

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

.cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .cta-section > div {
        padding: 60px 1.2rem;
    }
    .cta-title {
        max-width: 100%;
    }
}
