:root {
    --charcoal: #333333;
    --lime-accent: #bcdd3b;
    --lime-accent-hover: #a7c72e;
    --lime-light: #f4f9e4;
    --slate-soft: #f8fafc;
    --custom-blue: #3d6678;
    --custom-blue-hover: #315261;
    --afy-navy: #0f3342;
    --afy-text: #232323;
    --afy-white: #ffffff;
    --afy-font: "Inter", system-ui, -apple-system, sans-serif;
    --afy-lime: #97b325;
    --afy-radius-pill: 9999px;
    --afy-navy-deep: #0a2430;
    --afy-lime-hover: #86a01f;
    --afy-lime-soft: #e8f0c8;
    --afy-forest: #182700;
    --afy-stats-bg: #e9f8ff;
    --afy-muted: #5d6180;
    --afy-gray: #4a4a4a;
    --afy-soft: #f5f5f5;
    --afy-radius: 20px;
    --afy-radius-lg: 28px;
    --afy-nav-h: 88px;
    --afy-shadow: 0 20px 50px rgba(15, 51, 66, 0.12);
    --brand-primary: #85b026;
    --brand-primary-hover: #739b1e;
    --brand-dark: #0f2a3f;
    --brand-light-bg: #f8fafc;
    --brand-border: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    box-sizing: border-box;
    transition: all 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--charcoal);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h5 {
    font-size: 24px !important;
}

a {
    text-decoration: none;
}

footer a:hover {
    color: #000;
}

/* Helper Utilities */
.bg-lime-light {
    background-color: var(--lime-light);
}

.bg-slate-soft {
    background-color: var(--slate-soft);
}

.bg-charcoal {
    background-color: var(--charcoal);
}

.text-charcoal {
    color: var(--charcoal);
}

.text-lime-accent {
    color: var(--lime-accent);
}

.rounded-custom {
    border-radius: 14px !important;
}

.card-shadow {
    box-shadow: 0 4px 20px -2px rgba(51, 51, 51, 0.05);
    transition: all 0.3s ease;
    border: 2px solid #21252900 !important;
}

.card-shadow:hover {
    border: 2px solid #212529 !important;
}

/* Custom Button Component Styles */
.btn-custom-blue {
    background-color: var(--custom-blue);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-custom-blue:hover {
    background-color: var(--custom-blue-hover);
    transform: translateY(-1px);
}

.btn-lime-primary {
    background-color: var(--lime-accent);
    color: var(--charcoal) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-lime-primary:hover {
    background-color: var(--lime-accent-hover);
    transform: translateY(-1px);
}

.btn-whatsapp {
    background-color: #ffffff;
    color: var(--charcoal) !important;
    font-weight: 700;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.btn-whatsapp:hover {
    border-color: #cbd5e1;
    background-color: var(--slate-soft);
}

/* Badges & Elements */
.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--lime-light);
    color: var(--charcoal);
    padding: 0.375rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-bar-container {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 0.75rem;
    border-radius: 1rem;
    max-width: 448px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

/* Header link hover states */
.nav-link-custom {
    color: #4b5563;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link-custom:hover {
    color: var(--charcoal);
}

.header-login-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: #4b5563;
    text-decoration: underline;
    text-decoration-color: #cbd5e1;
    transition: all 0.2s ease;
}

.header-login-link:hover {
    color: var(--charcoal);
    text-decoration-color: var(--charcoal);
}

/* Stat Box Icons sizing */
.icon-box-square {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Pricing Card Specifics */
.pricing-card-annual {
    border: 2px solid var(--lime-accent) !important;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.pricing-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--lime-accent);
    color: var(--charcoal);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 1rem;
    border-bottom-left-radius: 0.5rem;
    border-top-right-radius: 11px;
}

.check-badge {
    background-color: rgba(188, 221, 59, 0.3);
    padding: 2px;
    border-radius: 50%;
    font-size: 0.75rem;
    color: var(--charcoal);
}

.check-badge-solid {
    background-color: var(--lime-accent);
    padding: 2px;
    border-radius: 50%;
    font-size: 0.75rem;
    color: var(--charcoal);
}

/* Step Count numbers */
.step-huge-number {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
}

.step-badge-counter {
    width: 40px;
    height: 40px;
    background-color: var(--charcoal);
    color: var(--lime-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.bg-gray {
    background-color: #3d6678;
}

.bg-ligh-green {
    background-color: #f4f4f4;
}

.tag i {
    font-size: 5px;
    background-color: #ecf4e9;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    align-content: center;
    text-align: center;
}

.bg-ligh-green {
    background-color: #f4f4f4;
}

.w-fit-content {
    width: fit-content;
}

.bg-limeAccent {
    background: #bcdd3b;
}

footer a {
    color: #677489;
    transition: all 0.3s;
}

.bg-success {
    background-color: #ceed50 !important;
}

.rounded-3 {
    border-radius: 10px !important;
}

.rounded-4 {
    border-radius: 25px !important;
}

.bg-lime-accent {
    background: #bcdd3b;
}



@media only screen and (max-width: 992px) {
    h1 {
        font-size: 35px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    h3 {
        font-size: 25px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    h5 {
        font-size: 20px !important;
    }

}


@media only screen and (max-width: 768px) {
    .fs-md-small {
        font-size: 14px !important;
    }
}









/* New Home Design */

.navbar-brand {
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}

.navbar-afy .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35);
}

.navbar-afy .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28200, 200, 200, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-afy-ghost {
    background: transparent;
    color: var(--afy-white) !important;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

.btn-afy-lime {
    background: var(--afy-lime);
    color: var(--afy-white) !important;
}

.btn-afy-lime:hover {
    background: var(--afy-lime-hover);
    color: var(--afy-white) !important;
}

.navbar-afy .navbar-brand img {
    height: 38px;
    width: auto;
}

.navbar-afy .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
    font-size: 1.125rem;
    padding: 0.5rem 0.9rem !important;
}

.navbar-afy .nav-link:hover,
.navbar-afy .nav-link.active {
    color: var(--afy-lime) !important;
}

.navbar-afy {
    background: var(--afy-navy);
    padding-block: 1.25rem;
    z-index: 1040
}

.hero {
    position: relative;
    background: var(--afy-navy);
    color: var(--afy-white);
    overflow: hidden;
    padding: 3.5rem 0 4rem;
}


.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 179, 37, 0.35) 0%, rgba(15, 51, 66, 0) 70%);
    left: 18%;
    top: 10%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--afy-lime);
    margin-bottom: 1rem;
    max-width: 16ch;
}

.hero-lead {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
    margin-bottom: 1.75rem;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--afy-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual img {
    width: 100%;
    border-radius: var(--afy-radius-lg);
    box-shadow: var(--afy-shadow);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn-afy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--afy-radius-pill);
    padding: 0.9rem 1.75rem;
    border: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    line-height: 1.2;
}

.btn-afy-lime {
    background: var(--afy-lime);
    color: var(--afy-white) !important;
}

.btn-afy-lime:hover {
    background: var(--afy-lime-hover);
    color: var(--afy-white) !important;
}

.btn-afy:hover {
    transform: translateY(-1px);
}

.btn-afy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: var(--afy-radius-pill);
    padding: 0.9rem 1.75rem;
    border: 2px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
    line-height: 1.2;
}

.btn-afy-outline {
    background: transparent;
    color: var(--afy-white) !important;
    border-color: rgba(255, 255, 255, 0.45);
}

.btn-afy-outline:hover {
    border-color: var(--afy-white);
    background: rgba(255, 255, 255, 0.06);
}

.btn-afy:hover {
    transform: translateY(-1px);
}

.stats {
    background: var(--afy-stats-bg);
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: clamp(1.75rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--afy-lime);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--afy-muted);
    margin-top: 0.25rem;
}

.logos {
    padding: 2rem 0;
    background: var(--afy-white);
    border-bottom: 1px solid #eef0f3;
    overflow: hidden;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    width: max-content;
    animation: logo-marquee 28s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

@keyframes logo-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-track img {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    filter: grayscale(0.15);
}

.features {
    background: var(--afy-white);
    padding: 4.5rem 0 2rem;
}

.features-eyebrow {
    color: var(--afy-lime);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.features-title {
    font-size: clamp(1.75rem, 4vw, 3.375rem);
    font-weight: 500;
    color: var(--afy-navy);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.features-stack {
    position: relative;
    max-width: 1146px;
    margin: 0 auto;
    padding-bottom: 2rem;
    --feature-card-h: 483px;
    --feature-hold: var(--feature-card-h);
}

.feature-card-pin {
    position: relative;
    height: calc(var(--feature-card-h) + var(--feature-hold));
}

.feature-card-pin:last-child {
    height: var(--feature-card-h);
}

.feature-card {
    position: sticky;
    top: 1.25rem;
    border-radius: var(--afy-radius-lg);
    overflow: hidden;
    margin-bottom: 0;
    height: var(--feature-card-h);
    min-height: var(--feature-card-h);
    box-shadow: 0 16px 40px rgba(15, 51, 66, 0.18);
    transition: box-shadow 0.35s ease;
    color: var(--afy-white);
    margin-bottom: 150px;
}

.features-stack {
    --feature-card-h: 483px;
    --feature-hold: var(--feature-card-h);
}

.feature-card--navy {
    background: radial-gradient(ellipse 70% 80% at 78% 55%, rgba(151, 179, 37, 0.22) 0%, transparent 55%), linear-gradient(135deg, #143d4f 0%, var(--afy-navy) 48%, #0a2430 100%);
}

.feature-card--lime {
    background: radial-gradient(ellipse 65% 70% at 80% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 50%), linear-gradient(145deg, #a8c42e 0%, var(--afy-lime) 45%, #7f9a1c 100%);
}

.feature-card--navy {
    background: radial-gradient(ellipse 70% 80% at 78% 55%, rgba(151, 179, 37, 0.22) 0%, transparent 55%), linear-gradient(135deg, #143d4f 0%, var(--afy-navy) 48%, #0a2430 100%);
}

.feature-card--lime {
    background: radial-gradient(ellipse 65% 70% at 80% 50%, rgba(255, 255, 255, 0.18) 0%, transparent 50%), linear-gradient(145deg, #a8c42e 0%, var(--afy-lime) 45%, #7f9a1c 100%);
}

.feature-card--navy {
    background: radial-gradient(ellipse 70% 80% at 78% 55%, rgba(151, 179, 37, 0.22) 0%, transparent 55%), linear-gradient(135deg, #143d4f 0%, var(--afy-navy) 48%, #0a2430 100%);
}

.feature-card__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(151, 179, 37, 0.35) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}

.feature-card__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) 1.2fr;
    gap: 1.5rem;
    align-items: stretch;
    min-height: var(--feature-card-h);
    padding: 2.75rem 0 0 3rem;
}

.feature-card__copy {
    max-width: 26rem;
    padding-right: 0.5rem;
    padding-bottom: 2.75rem;
    align-self: center;
}

.feature-card__copy h3 {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 0.85rem;
    color: var(--afy-white);
}

.feature-card__copy p {
    margin: 0;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}
/*
.feature-card__rings {
    position: absolute;
    right: -8%;
    top: 50%;
    transform: translateY(-50%);
    width: min(720px, 70%);
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(circle, transparent 18%, rgba(255, 255, 255, 0.12) 18.5%, transparent 19%), radial-gradient(circle, transparent 28%, rgba(255, 255, 255, 0.12) 28.5%, transparent 29%), radial-gradient(circle, transparent 38%, rgba(255, 255, 255, 0.12) 38.5%, transparent 39%), radial-gradient(circle, transparent 48%, rgba(255, 255, 255, 0.1) 48.5%, transparent 49%), radial-gradient(circle, transparent 58%, rgba(255, 255, 255, 0.08) 58.5%, transparent 59%);
}*/

.feature-ui__stack-back {
    position: absolute;
    inset: 0.35rem 1.75rem auto 1.75rem;
    height: 48px;
    background: #fff;
    border-radius: 18px 18px 0 0;
    opacity: 0.85;
    margin-top: -20px;
}

.feature-ui__panel {
    position: relative;
    background: #fff;
    color: #232323;
    border-radius: 22px 22px 0 0;
    padding: 1.15rem 1.25rem 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}

.feature-ui__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.feature-ui__head-left {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.feature-ui__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #ededed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 0.9rem;
}

.feature-ui__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.feature-card__glow--soft {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 68%);
}

.feature-card__media {
    position: relative;
    height: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    align-self: stretch;
    padding-right: 0;
}

.feature-ui {
    width: min(100%, 640px);
    margin-right: -1.5rem;
    margin-bottom: 0;
    margin-top: auto;
    position: relative;
    align-self: flex-end;
}

.feature-ui--chart .feature-ui__panel {
    padding: 1.35rem 1.35rem 1.15rem;
}

.chart-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.chart-filters {
    display: flex;
    gap: 0.35rem;
    align-items: flex-start;
}

.chart-filters span {
    font-size: 0.75rem;
    color: #475467;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 0.3rem 0.55rem;
}

.chart-filters .is-active {
    background: #182700;
    border-color: #182700;
    color: #f5f7fd;
    font-weight: 700;
}

.chart-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: #292d32;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-delta {
    font-family: "Hanken Grotesk", var(--afy-font);
    font-size: 0.7rem;
    font-weight: 600;
    color: #a1b536;
    background: #eef3d8;
    border-radius: 999px;
    padding: 0.2rem 0.45rem;
}

.chart-label {
    font-size: 0.85rem;
    color: #475467;
    margin-top: 0.85rem;
}

.chart-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #292d32;
}

.chart-bars {
    position: relative;
    height: 140px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: end;
    gap: 0.45rem;
    border-top: 1px dashed #e6e8ee;
    background-image: repeating-linear-gradient(to top, transparent 0, transparent 22px, #eceef3 22px, #eceef3 23px);
    padding-top: 0.5rem;
}

.chart-tooltip {
    position: absolute;
    left: calc((100% / 12) * 7.15);
    top: -30px;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(15, 51, 66, 0.12);
    padding: 0.35rem 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #292d32;
    white-space: nowrap;
}

.chart-bars span {
    display: block;
    height: var(--h);
    border-radius: 999px;
    background: #e9e8ff;
}

.chart-bars .is-hot::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5353;
    box-shadow: 0 0 0 3px #fff;
}

.chart-bars .is-hot {
    background: #aec23b;
    position: relative;
}

.chart-months {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.45rem;
    margin-top: 0.55rem;
    font-family: "Hanken Grotesk", var(--afy-font);
    font-size: 0.8rem;
    color: #475467;
    text-align: center;
}

.feature-photo {
    width: 108%;
    max-width: none;
    height: auto;
    max-height: 100%;
    display: block;
    margin-top: auto;
    object-fit: contain;
    object-position: right bottom;
    align-self: flex-end;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.25));
    transform: translateX(4%);
}

.feature-card__media--teams .feature-photo {
    width: 115%;
    transform: translateX(6%);
}

.feature-ui__table td {
    padding: 0.85rem 0.35rem;
    color: #6d6d6d;
    border-bottom: 1px solid #f0f0f0;
    white-space: nowrap;
}

.badge-status--ok {
    background: #f2f9f4;
    color: #387e62;
}

.badge-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.feature-ui__table th {
    text-align: left;
    font-weight: 400;
    color: #232323;
    padding: 0.55rem 0.35rem;
    border-bottom: 1px solid #ececec;
}

.onboarding {
    position: relative;
    background: var(--afy-navy);
    color: var(--afy-white);
    padding: 4.5rem 0;
    overflow: hidden;
}

.onboarding-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 51, 66, 0.55), rgba(15, 51, 66, 0.75)), url("../images/new-home/bg-green-grainy.png") center/cover no-repeat;
    opacity: 0.95;
    pointer-events: none;
    z-index: 10;
}

.onboarding-eyebrow {
    display: inline-block;
    font-family: "Poppins", var(--afy-font);
    font-weight: 700;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--afy-radius-pill);
    padding: 0.35rem 0.9rem;
    margin-bottom: 1rem;
}

.onboarding-title {
    font-family: "Hanken Grotesk", var(--afy-font);
    font-weight: 600;
    font-size: clamp(1.75rem, 4vw, 3.375rem);
    line-height: 1.15;
    max-width: 18ch;
    color: var(--afy-white);
    margin-bottom: 2.5rem;
}

.onboarding-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.onboarding-step {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--afy-radius);
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.onboarding .container {
    z-index: 11;
    position: relative;
}


.step-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: rgba(151, 179, 37, 0.2);
    border: 2px solid var(--afy-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--afy-lime);
    font-size: 1.5rem;
}

.onboarding-step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--afy-white);
}

.onboarding-step p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.onboarding {
    color: var(--afy-white);
}

.pricing {
    background: var(--afy-soft);
    padding: 5rem 0;
}

.badge-free-trial {
    background-color: #ecfdf5;
    color: #047857;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    border: 1px solid #a7f3d0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.concept1 h1.tracking-tight {
    font-size: clamp(1.75rem, 4vw, 3.375rem);
    font-weight: 500;
    color: var(--afy-navy);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.pricing-card {
    background: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -15px rgba(15, 42, 63, 0.07);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
}

.billing-option-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.billing-option-card.active {
    border-color: var(--brand-primary);
    background-color: #f7fbe8;
    box-shadow: 0 4px 14px rgba(133, 176, 38, 0.15);
}

.billing-option-card {
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    background-color: #fff;
    position: relative;
}

.billing-option-card .form-check-input:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

.billing-option-card {
    cursor: pointer;
}

.billing-option-card .form-check-input {
    cursor: pointer;
    width: 1.25rem;
    height: 1.25rem;
}

.summary-box {
    background-color: #f8fafc;
    border-radius: 0.875rem;
    border: 1px dashed #cbd5e1;
    padding: 1rem 1.25rem;
}

.btn-cta:hover {
    background-color: var(--brand-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 14px 24px -5px rgba(133, 176, 38, 0.5);
}

.btn-cta {
    background-color: var(--brand-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 1rem 2.5rem;
    border-radius: 50rem;
    border: none;
    box-shadow: 0 10px 20px -5px rgba(133, 176, 38, 0.4);
    transition: all 0.25s ease;
}

.why-process {
    background: var(--afy-white);
    padding: 5rem 0;
}

.why-process-grid {
    display: grid;
    grid-template-columns: minmax(260px, 420px) 1fr;
    gap: 3rem;
    align-items: start;
}

.why-sticky {
    position: sticky;
    top: 1.5rem;
}

.why-title {
    font-size: clamp(2rem, 4vw, 3.375rem);
    font-weight: 700;
    color: var(--afy-navy);
    margin-bottom: 1rem;
}

.why-lead {
    font-size: 1rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 1.75rem;
    max-width: 36ch;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.25rem;
    min-height: 140px;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}

.process-step.is-active {
    opacity: 1;
}

.process-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #d0d5dd;
    border: 3px solid #e8ebf0;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.process-step.is-active .process-dot {
    background: var(--afy-lime);
    border-color: var(--afy-lime-soft);
}

.process-line {
    width: 2px;
    flex: 1;
    background: #e8ebf0;
    margin-top: 0.35rem;
}

.process-step:last-child .process-line {
    display: none;
}

.process-num {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--afy-muted);
    margin-bottom: 0.35rem;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--afy-forest);
    margin-bottom: 0.35rem;
}

.process-step p {
    color: #a3a3a3;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.cta {
    background: var(--afy-white);
    padding: 2rem 0 4rem;
}

.cta-banner {
    position: relative;
    border-radius: var(--afy-radius-lg);
    overflow: hidden;
    min-height: 420px;
    color: var(--afy-white);
    background:
        radial-gradient(ellipse 45% 70% at 78% 45%, rgba(32, 145, 129, 0.45) 0%, transparent 60%),
        linear-gradient(120deg, #0c1a05 0%, #182700 42%, #1a3d28 78%, #0f2418 100%);
    box-shadow: var(--afy-shadow);
}

.cta-banner__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(90px);
}

.cta-banner__glow--a {
    width: 420px;
    height: 420px;
    right: 18%;
    top: -20%;
    background: rgba(32, 145, 129, 0.35);
}

.cta-banner__glow--b {
  width: 420px;
  height: 420px;
  right: 70%;
  top: 80%;
  background: rgba(32, 145, 129, 0.35);
}

.cta-banner__body {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1.15fr;
    gap: 1.5rem;
    align-items: stretch;
    min-height: 420px;
    padding: 3rem 0 0 3rem;
}

.cta-banner__copy {
    align-self: center;
    padding-bottom: 3rem;
    max-width: 32rem;
    z-index: 2;
}

.cta-banner__copy h2 {
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.85rem;
    max-width: 14ch;
}

.cta-banner__copy p {
    font-family: "Poppins", var(--afy-font);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 1.75rem;
    max-width: 36ch;
}

.cta-banner__media {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 320px;
}

.cta-banner__photo {
    width: 108%;
    max-width: none;
    height: auto;
    display: block;
    margin-top: auto;
    object-fit: contain;
    object-position: right bottom;
    align-self: flex-end;
    transform: translate(4%, 6%);
    pointer-events: none;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.28));
}

.site-footer {
    background: var(--afy-soft);
    padding: 3.5rem 0 1.5rem;
}

.footer-brand img {
    height: 36px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-tag {
    color: #000;
    font-size: 1rem;
    max-width: 28ch;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--afy-forest);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--afy-forest);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: var(--afy-white);
    border-radius: var(--afy-radius-pill);
    padding: 0.35rem;
    border: 1px solid #e5e7eb;
    max-width: 360px;
}

.newsletter-form input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 0.65rem 1rem;
    background: transparent;
    font-size: 1rem;
}

.newsletter-form button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--afy-lime);
    color: var(--afy-white);
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    font-size: 1rem;
    color: #232323;
    text-align: center;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--afy-navy);
    color: var(--afy-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.footer-social a:hover {
    background: var(--afy-lime);
    color: var(--afy-white);
}

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 0.75rem;
}

.footer-links li+li {
    margin-top: 0.5rem;
}

.footer-links a {
    color: #000;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--afy-lime);
}

@media (min-width: 992px) {
    .ms-lg-auto {
        margin-left: auto !important;
    }
}


@media (max-width: 991.98px) {
    .why-sticky {
        position: static;
    }

    .feature-card-pin {
        height: auto;
    }

    .feature-card-pin+.feature-card-pin {
        margin-top: 1.25rem;
    }

    .feature-card {
        /* position: relative;
        top: auto; */
        height: auto;
        /* min-height: 0; */
    }

    .feature-card__body {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem 0;
        min-height: 0;
        gap: 1.25rem;
    }

    .feature-card__copy {
        max-width: none;
    }

    .feature-card__media {
        min-height: 220px;
    }

    .feature-ui {
        width: 100%;
        margin: 0;
    }

    .feature-photo,
    .feature-card__media--teams .feature-photo {
        width: 100%;
        transform: none;
        align-self: flex-end;
    }

    .why-process-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner__body {
        grid-template-columns: 1fr;
        padding: 2.25rem 1.5rem 0;
        min-height: 0;
    }

    .cta-banner__copy {
        padding-bottom: 0;
        max-width: none;
    }

    .cta-banner__copy h2 {
        max-width: none;
    }

    .cta-banner__media {
        min-height: 240px;
    }

    .cta-banner__photo {
        width: 100%;
        transform: translate(0, 0);
    }

    .onboarding-bg {
        background-size: 140vh;
        background-position: top;
    }
}

@media (max-width: 820px) {
    .onboarding-steps {
        grid-template-columns: 1fr;
    }

    .feature-card {
        margin-bottom: 50px;
    }
}

/* New Home Design */