: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%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-body {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-title .hero-accent {
    color: var(--brand-green);
    display: block;
}

.hero-desc {
    font-family: var(--font-body-alt);
    font-size: 15px;
    line-height: 1.75;
    color: #6b6f7a;
    max-width: 560px;
    margin-bottom: 28px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 8px;
    text-decoration: none;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 16px rgba(66, 184, 14, 0.28);
    margin-bottom: 48px;
}

.hero-btn:hover {
    background: #37a00c;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(66, 184, 14, 0.36);
}

.hero-devices {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(48px);
}

.hero-devices.hero-devices-visible {
    animation: heroDevicesUp 0.8s cubic-bezier(0.22, 0.68, 0, 1.1) 0.1s forwards;
}

@keyframes heroDevicesUp {
    from {
        opacity: 0;
        transform: translateY(48px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-device-wrap {
    position: relative;
    width: 100%;
    height: 380px;
}

.hero-device-tablet {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 70%;
    border-radius: 16px;
    display: block;
    z-index: 1;
    object-fit: cover;
}

.hero-device-phone {
    position: absolute;
    right: 20%;
    bottom: 0%;
    width: 26%;
    border-radius: 24px;
    display: block;
    z-index: 2;
    object-fit: cover;
}

.hero-slider-wrap {
    width: 80%;
    margin: 0 auto;
    position: relative;
    padding: 36px 0 20px;
    overflow: hidden;
}

.hero-slider-wrap::before,
.hero-slider-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

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

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

.hero-slider-track-wrap {
    overflow: hidden;
    width: 100%;
}

.hero-slider-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: heroSlide 36s linear infinite;
}

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

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

.hero-slider-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    flex-shrink: 0;
}

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

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

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .hero-body {
        padding: 0 24px;
    }

    .hero-title {
        font-size: clamp(28px, 6vw, 38px);
    }

    .hero-desc {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-btn {
        margin-bottom: 40px;
    }

    .hero-devices {
        padding: 0 20px;
    }

    .hero-device-wrap {
        height: 300px;
    }

    .hero-device-tablet {
        left: 2%;
        width: 72%;
    }

    .hero-device-phone {
        /* right: 0;
        bottom: 18%; */
        width: 28%;
    }

    .hero-slider-wrap {
        width: 90%;
        padding: 28px 0 16px;
    }

    .hero-slider-wrap::before,
    .hero-slider-wrap::after {
        width: 60px;
    }

    .hero-slider-item {
        padding: 0 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.3px;
    }

    .hero-device-wrap {
        height: 240px;
    }

    .hero-device-tablet {
        left: 0;
        width: 76%;
    }

    .hero-device-phone {
        width: 30%;
    }

    .hero-slider-wrap {
        padding: 20px 0 12px;
    }

    .hero-slider-item {
        padding: 0 20px;
    }

    .hero-slider-item img {
        height: 22px;
    }
}
:root {
    --ftr-card-w: 300px;
    --ftr-gap: 20px;
}

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

.ftr-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;
}

.ftr-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);
}

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

.ftr-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;
}
.ftr-nav-btn-prev {
    background: #ecedf0;
    color: #8a8d96;
}
.ftr-nav-btn-prev.ftr-active {
    background: var(--brand-green);
    color: #fff;
}
.ftr-nav-btn-next {
    background: var(--brand-green);
    color: #fff;
}
.ftr-nav-btn-next.ftr-inactive {
    background: #ecedf0;
    color: #8a8d96;
}
.ftr-nav-btn:active {
    transform: scale(0.92);
}

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

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

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

.ftr-card {
    flex-shrink: 0;
    width: var(--ftr-card-w);
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.8rem 1.8rem;
    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;
    min-height: 220px;
}

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

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

@media (max-width: 768px) {
    :root {
        --ftr-card-w: 260px;
    }
    .ftr-section {
        padding: 4rem 0;
    }
    .ftr-heading {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --ftr-card-w: 230px;
    }
    .ftr-header {
        padding: 0 1.2rem;
    }
    .ftr-track-inner {
        padding: 0 1.2rem;
    }
}

.test-section {
    width: 100%;
    background: #f4f4f2;
}

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

.test-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.25rem;
}

.test-quote-side {
    background: #fff;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    border-radius: 18px;
    box-shadow:
        rgba(17, 17, 26, 0.08) 0px 4px 24px,
        rgba(17, 17, 26, 0.04) 0px 8px 40px;
}

.test-logo {
    height: 28px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    object-position: left center;
    display: block;
    filter: brightness(0) opacity(0.7);
}

.test-quote {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--brand-dark);
    flex: 1;
}

.test-name {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 3px;
}

.test-role {
    font-family: var(--font-body-alt);
    font-size: 0.78rem;
    color: #9a9da8;
}

.test-cta-side {
    background: var(--brand-green);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 18px;
}

.test-cta-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.test-cta-text {
    font-family: var(--font-body-alt);
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    flex: 1;
}

.test-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body-alt);
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-top: 2.5rem;
    transition: gap var(--transition);
}

.test-cta-link:hover {
    gap: 12px;
}

@media (max-width: 860px) {
    .test-section > div {
        padding: 4rem 2rem;
    }
    .test-inner {
        grid-template-columns: 1fr;
    }
    .test-cta-side {
        padding: 2.5rem;
    }
    .test-cta-link {
        margin-top: 1.5rem;
    }
}

@media (max-width: 560px) {
    .test-section > div {
        padding: 3.5rem 1.2rem;
    }
    .test-quote-side {
        padding: 2.2rem 2rem;
    }
    .test-cta-side {
        padding: 2.2rem 2rem;
    }
}
.why-section {
    width: 100%;
    background: #000;
}

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

.why-inner {
    width: 100%;
}

.why-header {
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 0.68, 0, 1.1),
        transform 0.6s cubic-bezier(0.22, 0.68, 0, 1.1);
}

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

.why-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 0.9rem;
}

.why-subhead {
    font-family: var(--font-body-alt);
    font-size: 0.88rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.5);
    max-width: 520px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 2.6rem 2.2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    opacity: 0;
    transform: translateY(32px);
    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);
}

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

.why-card-icon {
    color: var(--brand-green);
    font-size: 1.6rem;
    line-height: 1;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.why-card-desc {
    font-family: var(--font-body-alt);
    font-size: 0.82rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 700px) {
    .why-section > div {
        padding: 4rem 1.2rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .why-heading {
        font-size: 1.7rem;
    }
    .why-header {
        margin-bottom: 2.5rem;
    }
    .why-card {
        padding: 2rem 1.6rem;
    }
}
.reg-section {
    width: 100%;
    background: #fff;
    border-top: 1px solid #eaebec;
}

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

.reg-inner {
    width: 100%;
}

.reg-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
    color: var(--brand-dark);
    margin-bottom: 0.9rem;
}

.reg-desc {
    font-family: var(--font-body-alt);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.75;
    color: #5a5d68;
    margin-bottom: 2.8rem;
}

.reg-badges {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.reg-badge {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.reg-badge img {
    height: 150px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    display: block;
    transition: filter var(--transition);
}

.reg-badge img:hover {
    filter: grayscale(0) opacity(1);
}

@media (max-width: 600px) {
    .reg-section > div {
        padding: 3.5rem 1.2rem;
    }
    .reg-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem 2.5rem;
    }
    .reg-badge img {
        height: 100px;
    }
}
.rsc-section {
    width: 100%;
    position: relative;
    padding: 88px 0 96px;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.rsc-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 42%, 0 68%);
    z-index: 0;
}

.rsc-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #f0f4f8;
    z-index: -1;
}

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

.rsc-header {
    flex-shrink: 0;
    width: 400px;
    padding-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rsc-title {
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.2vw, 50px);
    font-weight: 700;
    line-height: 1.08;
    color: var(--brand-dark);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}

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

.rsc-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body-alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    text-decoration: none;
    margin-bottom: 28px;
    transition: gap var(--transition), color var(--transition);
}

.rsc-more-link:hover {
    color: var(--brand-green);
    gap: 12px;
}

.rsc-controls {
    display: flex;
    gap: 10px;
}

.rsc-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;
}

.rsc-btn-prev {
    background: #ecedf0;
    color: #8a8d96;
}

.rsc-btn-prev.rsc-active {
    background: var(--brand-green);
    color: #fff;
}

.rsc-btn-next {
    background: var(--brand-green);
    color: #fff;
}

.rsc-btn-next.rsc-inactive {
    background: #ecedf0;
    color: #8a8d96;
}

.rsc-btn:active {
    transform: scale(0.92);
}

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

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

.rsc-card {
    flex-shrink: 0;
    width: var(--card-w);
    height: 460px;
    border-radius: var(--card-radius);
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    will-change: transform, opacity;
    transform-origin: left center;
    text-decoration: none;
    color: inherit;
}

.rsc-card-img-wrap {
    width: 100%;
    height: 190px;
    flex-shrink: 0;
    overflow: hidden;
}

.rsc-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.rsc-card:hover .rsc-card-img {
    transform: scale(1.05);
}

.rsc-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 22px 24px 26px;
}

.rsc-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.rsc-card-category {
    font-family: var(--font-body-alt);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 5px;
}

.rsc-card-date {
    font-family: var(--font-body-alt);
    font-size: 12px;
    font-weight: 600;
    color: #9a9da8;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.rsc-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.32;
    color: var(--brand-dark);
    margin-bottom: auto;
}

.rsc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body-alt);
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-dark);
    margin-top: 18px;
    transition: gap var(--transition), color var(--transition);
}

.rsc-card:hover .rsc-card-link {
    color: var(--brand-green);
    gap: 12px;
}

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

@media (max-width: 900px) {
    .rsc-section {
        overflow: hidden;
    }

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

    .rsc-header {
        width: 100%;
        padding-right: 0;
    }

    .rsc-subtitle {
        margin-bottom: 20px;
    }

    .rsc-controls {
        margin-top: 0;
    }

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

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

    .rsc-card {
        height: 420px;
    }
}

@media (max-width: 560px) {
    .rsc-section {
        padding: 60px 0 72px;
    }

    .rsc-title {
        font-size: 30px;
    }

    .rsc-card {
        height: 400px;
    }

    .rsc-card-img-wrap {
        height: 170px;
    }

    .rsc-card-title {
        font-size: 16px;
    }
}
.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%;
    }
}
