: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;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-inner {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    opacity: 0;
    transform: translateX(-36px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.1s,
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.1s;
}

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

.hero-eyebrow {
    font-family: var(--font-body-alt);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 1.2rem;
}

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

.hero-desc {
    font-family: var(--font-body-alt);
    font-size: 0.9rem;
    line-height: 1.85;
    color: #5a5d68;
    max-width: 480px;
    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.7rem 1.5rem;
    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:
        color var(--transition),
        gap var(--transition);
}

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

.hero-image-wrap {
    position: relative;
    opacity: 0;
    transform: translateX(36px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.05s,
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.05s;
}

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

.hero-photo {
    width: 100%;
    aspect-ratio: 4/3.4;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
}

.hero-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(41, 42, 46, 0.13),
        0 2px 8px rgba(41, 42, 46, 0.07);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
}

.hero-card-left {
    left: -3.5rem;
    top: 25%;
    transform: translateY(-50%);
}

.hero-card-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.hero-card-avatar-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.hero-card-name {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 1px;
}

.hero-card-meta {
    font-family: var(--font-body-alt);
    font-size: 0.68rem;
    color: #9a9da8;
}

.hero-card-amount {
    margin-left: auto;
    text-align: right;
    flex-shrink: 0;
}

.hero-card-value {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-green);
    white-space: nowrap;
}

.hero-card-flag {
    font-size: 0.7rem;
}

.hero-card-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-issuers {
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 8px 28px rgba(41, 42, 46, 0.14),
        0 2px 8px rgba(41, 42, 46, 0.08);
    background: #fff;
}

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

.hero-avatar-green {
    background: #42b80e;
}

.hero-avatar-dark {
    background: var(--brand-dark);
}

.hero-avatar-orange {
    background: #e67e22;
}

.hero-card-mid {
    left: -3.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.hero-card-bottom-left {
    left: -3.5rem;
    top: 75%;
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .hero-section > div {
        padding: 4rem 2rem;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .hero-content {
        transform: translateX(0);
    }
    .hero-image-wrap {
        transform: translateX(0);
    }
    .hero-card-left,
    .hero-card-mid,
    .hero-card-bottom-left {
        left: -1rem;
    }
    .hero-issuers {
        right: -0.8rem;
        width: 160px;
        height: 80px;
    }
}

@media (max-width: 600px) {
    .hero-section > div {
        padding: 4rem 1.2rem 4rem;
    }
    .hero-heading {
        font-size: 2rem;
    }
    .hero-card {
        min-width: 160px;
        padding: 0.7rem 0.8rem;
        gap: 0.55rem;
    }
    .hero-card-left,
    .hero-card-mid,
    .hero-card-bottom-left {
        left: -0.5rem;
    }
    .hero-card-name {
        font-size: 0.7rem;
    }
    .hero-card-meta {
        font-size: 0.62rem;
    }
    .hero-card-value {
        font-size: 0.72rem;
    }
    .hero-issuers {
        right: -0.5rem;
        width: 130px;
        height: 65px;
    }
}
: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;
    justify-content: space-between;
    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;
    margin-bottom: 1.5rem;
}

.ftr-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body-alt);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    transition: gap 0.2s;
}
.ftr-card-link:hover {
    gap: 10px;
}

@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;
    }
}

.how-section {
    width: 100%;
    background: #000;
    position: relative;
    overflow: hidden;
}

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

.how-inner {
    width: 100%;
}

.how-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
    color: #fff;
    margin-bottom: 3rem;
    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);
}

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

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

.how-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 2rem 1.8rem 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 0;
    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);
}

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

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

.how-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

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

@media (max-width: 900px) {
    .how-section > div {
        padding: 4rem 2rem;
    }
    .how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .how-section > div {
        padding: 4rem 1.2rem;
    }
    .how-grid {
        grid-template-columns: 1fr;
    }
    .how-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}
.itg-section {
    width: 100%;
    background: #f0f4f8;
}

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

.itg-inner {
    width: 100%;
}

.itg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.itg-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.6px;
    color: var(--brand-dark);
    max-width: 640px;
}

.itg-heading span {
    display: block;
    color: var(--brand-green);
}

.itg-header-right {
    flex-shrink: 0;
}

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

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

.itg-panel {
    background: #e4e9ef;
    border-radius: 20px;
    padding: 2.5rem;
}

.itg-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

.itg-row + .itg-row {
    border-top: 1px solid #d4dae2;
}

.itg-row-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.itg-know-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body-alt);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    transition: gap var(--transition);
}

.itg-know-more:hover {
    gap: 10px;
}

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

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

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

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

.itg-track {
    display: flex;
    align-items: center;
    width: max-content;
}

.itg-track-rtl {
    animation: itgSlideRTL 32s linear infinite;
}

.itg-track-ltr {
    animation: itgSlideLTR 32s linear infinite;
}

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

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

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

.itg-tile {
    flex-shrink: 0;
    width: 140px;
    height: 120px;
    margin: 0 0.6rem;
    background: #fff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    box-shadow: 0 2px 10px rgba(41, 42, 46, 0.05);
}

.itg-tile img {
    height: 34px;
    width: auto;
    max-width: 64px;
    object-fit: contain;
}

.itg-tile span {
    font-family: var(--font-body-alt);
    font-size: 0.78rem;
    font-weight: 500;
    color: #5a5d68;
}

@media (max-width: 960px) {
    .itg-section > div {
        padding: 4rem 2rem;
    }
    .itg-row {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    .itg-header {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .itg-section > div {
        padding: 4rem 1.2rem;
    }
    .itg-panel {
        padding: 1.5rem;
    }
    .itg-heading {
        font-size: 1.9rem;
    }
    .itg-row {
        padding: 1.5rem 0;
    }
    .itg-tile {
        width: 110px;
        height: 100px;
    }
}
.use-section {
    width: 100%;
    background: #fff;
    padding: 88px 0 96px;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.use-card {
    flex-shrink: 0;
    width: var(--card-w);
    height: 440px;
    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;
}

.use-card-img-wrap {
    width: 100%;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    background: #dde2e8;
}

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

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

.use-card-title {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--brand-dark);
    padding: 22px 22px 8px;
    line-height: 1.3;
}

.use-card-desc {
    font-family: var(--font-body-alt);
    font-size: 13.5px;
    font-weight: 400;
    color: #6b6e7a;
    line-height: 1.72;
    padding: 0 22px 22px;
}

.use-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) {
    .use-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 24px;
        gap: 32px;
    }

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

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

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

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

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

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

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

    .use-card {
        height: 400px;
    }

    .use-card-img-wrap {
        height: 180px;
    }
}
.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%;
    }
}
