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

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

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

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

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

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
    background: #f0f4f8;
    z-index: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hero-content {
        transform: translateX(0);
        padding-bottom: 2rem;
    }

    .hero-images {
        transform: translateX(0);
        min-height: 320px;
        margin-bottom: 4rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .hero-strip-track-wrap::before,
    .hero-strip-track-wrap::after {
        width: 3rem;
    }
}
.ftr-section {
    width: 100%;
    background: #000;
}

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

.ftr-inner {
    width: 100%;
}

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

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

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

.ftr-card {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(36px);
    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);
}

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

.ftr-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0;
}

.ftr-card-body {
    flex: 1;
    padding: 2rem 1.8rem 2.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-top: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.ftr-card-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.8rem;
}

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

.ftr-card-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ftr-card-point {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-family: var(--font-body-alt);
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
}

.ftr-card-point-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
    flex-shrink: 0;
    margin-top: 6px;
}

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

@media (max-width: 560px) {
    .ftr-section > div {
        padding: 4rem 1.2rem;
    }
    .ftr-grid {
        grid-template-columns: 1fr;
    }
    .ftr-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .ftr-card-img {
        height: 190px;
    }
}
.spc-section {
    width: 100%;
    background: #fff;
}

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

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

.spc-image-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}

.spc-image {
    width: 100%;
    aspect-ratio: 4/3.5;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
}

.spc-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--brand-dark);
    margin-bottom: 1.2rem;
}

.spc-heading em {
    font-style: normal;
    color: var(--brand-green);
}

.spc-desc {
    font-family: var(--font-body-alt);
    font-size: 0.88rem;
    line-height: 1.85;
    color: #5a5d68;
    margin-bottom: 1.8rem;
}

.spc-desc-closing {
    font-family: var(--font-body-alt);
    font-size: 0.88rem;
    line-height: 1.85;
    color: #5a5d68;
    margin-bottom: 1.4rem;
}

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

.spc-cta:hover {
    gap: 10px;
}

@media (max-width: 900px) {
    .spc-section > div {
        padding: 4rem 2rem;
    }
    .spc-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 560px) {
    .spc-section > div {
        padding: 4rem 1.2rem;
    }
    .spc-heading {
        font-size: 1.7rem;
    }
}
.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;
    }
}
.why-section {
    width: 100%;
    background: #000;
}

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

.why-inner {
    width: 100%;
}

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

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

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    grid-auto-rows: 1fr;
}

.why-card {
    overflow: hidden;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(36px);
    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-card.why-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.why-card-body {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 2rem 1.8rem;
}

.why-card-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.35;
    margin-bottom: 1rem;
}

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

@media (max-width: 900px) {
    .why-section > div {
        padding: 4rem 2rem;
    }

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

@media (max-width: 560px) {
    .why-section > div {
        padding: 4rem 1.2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }

    .why-card-img {
        height: 200px;
    }
}
.diff-section {
    width: 100%;
    background: #fff;
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}

.diff-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

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

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

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

.diff-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.diff-visual {
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.7s ease 0.1s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.diff-visual.diff-visible {
    opacity: 1;
    transform: translateX(0);
}

.diff-img-main {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    height: 460px;
    object-position: center;
}

.diff-img-badge {
    position: absolute;
    top: 50%;
    right: -52px;
    transform: translateY(-50%);
    width: 208px;
    height: 150px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    z-index: 2;
}

.diff-content {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.7s ease 0.2s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

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

.diff-content-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    color: var(--brand-dark);
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

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

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

.diff-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.diff-list-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-family: var(--font-body-alt);
    font-size: 14px;
    color: #5a5d66;
    line-height: 1.6;
}

.diff-list-item i {
    color: var(--brand-green);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.diff-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: gap var(--transition);
}

.diff-learn-more:hover {
    gap: 11px;
}

@media (max-width: 960px) {
    .diff-body {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .diff-visual {
        transform: translateY(-28px);
    }
    .diff-visual.diff-visible {
        transform: translateY(0);
    }
    .diff-img-badge {
        right: 16px;
        top: auto;
        bottom: -36px;
        transform: none;
        width: 88px;
        height: 88px;
    }
    .diff-content {
        transform: translateY(28px);
    }
    .diff-content.diff-visible {
        transform: translateY(0);
    }
    .diff-content-desc {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .diff-section { padding: 64px 0 72px; }
    .diff-inner { padding: 0 24px; }
    .diff-header { margin-bottom: 40px; }
    .diff-img-main { height: 300px; }
    .diff-img-badge { width: 72px; height: 72px; right: 12px; bottom: -28px; }
}
.cta-outer {
    max-width: var(--max-width);
    margin: 50px auto 0;
    padding: 0 2rem 6rem;
}

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

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

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

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

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

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

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

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

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

