:root {
    --dark-blue: #1a2332;
    --green: #16b690;
    --green-light: #1ed9ac;
    --green-dark: #129b7a;
    --light-blue: #1c9dc4;
    --white: #ffffff;
    --off-white: #fafbfc;
    --gray-50: #fafbfc;
    --gray-100: #f4f5f7;
    --gray-200: #e8eaed;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    --shadow-sm: 0 0.8px 1.6px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 0.8px 2.4px 0 rgb(0 0 0 / 0.1), 0 0.8px 1.6px -0.8px rgb(0 0 0 / 0.1);
    --shadow-md: 0 3.2px 4.8px -0.8px rgb(0 0 0 / 0.1), 0 1.6px 3.2px -1.6px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 8px 12px -2.4px rgb(0 0 0 / 0.1), 0 3.2px 4.8px -3.2px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 16px 20px -4px rgb(0 0 0 / 0.1), 0 6.4px 8px -4.8px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 20px 40px -9.6px rgb(0 0 0 / 0.25);

    --radius-sm: 0.3rem;
    --radius: 0.4rem;
    --radius-md: 0.6rem;
    --radius-lg: 0.8rem;
    --radius-xl: 1.2rem;
    --radius-2xl: 1.6rem;
    --radius-full: 7999.2px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 12.8px;
    line-height: 1.65;
    color: var(--gray-600);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: 100%;
    max-width: 1126.4px;
    margin: 0 auto;
    padding: 0 28px;
}

.section {
    padding: 84.8px 0;
}

@media (min-width: 614.4px) {
    .section {
        padding: 105.6px 0;
    }
}

@media (min-width: 819.2px) {
    .section {
        padding: 123.2px 0;
    }
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 7.2px;
    font-family: var(--font-display);
    /* font-size: 11.2px; */
    font-size: 12.8px;
    font-weight: 600;
    letter-spacing: 0em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14.4px;
}

.section-label::before {
    content: '';
    width: 7.2px;
    height: 7.2px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(35.2px, 4.8vw, 49.6px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-blue);
    margin-bottom: 20.8px;
    letter-spacing: -0em;
}

.section-subtitle {
    font-size: 17.6px;
    color: var(--gray-500);
    max-width: 598.4px;
    line-height: 1.7;
    font-weight: 400;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7.2px;
    padding: 12px 24.8px;
    font-family: var(--font-display);
    font-size: 13.6px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    box-shadow: 0 3.2px 11.2px 0 rgba(22, 182, 144, 0.4);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    color: var(--white) !important;
    transform: translateY(-1.6px);
    box-shadow: 0 6.4px 19.2px 0 rgba(22, 182, 144, 0.6);
}

.btn-primary > *,
.btn-primary svg,
.btn-primary .btn-icon {
    position: relative;
    z-index: 1;
    color: var(--white) !important;
}

.btn-secondary {
    background: var(--white);
    color: var(--dark-blue);
    border: 1.6px solid var(--gray-200);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gray-50);
    border-color: var(--green);
    transform: translateY(-1.6px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 17.6px 35.2px;
    font-size: 16px;
}

.btn-icon {
    width: 19.2px;
    height: 19.2px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(9.6px);
    -webkit-backdrop-filter: blur(9.6px);
    border-bottom: 0.8px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* height: 63.2px; */
    height: 80px;
}

.header .container {
    max-width: 1280px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8.8px;
}

/* .logo img { height: 28.8px; width: auto; } */
/* .logo img { height: 37.6px; width: auto; } */
.logo img {
    height: 44px;
    width: auto;
}

.nav-desktop {
    display: none;
}

@media (min-width: 819.2px) {
    .nav-desktop {
        display: flex;
        align-items: center;
        gap: 28px;
    }
}

.nav-link {
    font-family: var(--font-display);
    font-size: 15.2px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--dark-blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -3.2px;
    left: 0;
    width: 0;
    height: 1.6px;
    background: var(--green);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 9.6px;
}

.header-actions .btn {
    display: none;
}

@media (min-width: 614.4px) {
    .header-actions .btn {
        display: inline-flex;
    }
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 6.4px;
}

@media (min-width: 819.2px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: 19.2px;
    height: 1.6px;
    background: var(--dark-blue);
    border-radius: 1.6px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-menu {
    position: fixed;
    top: 57.6px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 19.2px;
    transform: translateX(-100%);
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-nav-link {
    display: block;
    padding: 12.8px 0;
    font-family: var(--font-display);
    font-size: 14.4px;
    font-weight: 600;
    color: var(--dark-blue);
    border-bottom: 0.8px solid var(--gray-100);
}

.mobile-menu-actions {
    margin-top: 25.6px;
    display: flex;
    flex-direction: column;
    gap: 9.6px;
}

.mobile-menu-actions .btn {
    width: 100%;
}

/* Announcement Ribbon */
.announcement-ribbon {
    background: var(--dark-blue);
    color: var(--white);
    padding: 9.6px 19.2px;
    text-align: center;
    position: fixed;
    top: 57.6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    z-index: 999;
    box-shadow: 0 1.6px 6.4px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 8px 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.announcement-ribbon.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(-100%);
    pointer-events: none;
}

.announcement-ribbon-content {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6.4px;
    flex-wrap: wrap;
}

.announcement-ribbon-content strong {
    font-weight: 700;
}

.announcement-ribbon-divider {
    display: none;
    width: 0.8px;
    height: 12.8px;
    background: rgba(255, 255, 255, 0.4);
}

@media (min-width: 512px) {
    .announcement-ribbon {
        padding: 11.2px 19.2px;
    }

    .announcement-ribbon-content {
        font-size: 12.8px;
    }

    .announcement-ribbon-divider {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: clip;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, rgba(22, 182, 144, 0.03) 100%);
}

@media (min-width: 512px) {
    .hero {
        padding-top: 200px;
        /* padding-bottom: 120px; */
        padding-bottom: 200px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(22, 182, 144, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(28, 157, 196, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image:
        linear-gradient(rgba(26, 35, 50, 0.10) 0.8px, transparent 0.8px),
        linear-gradient(90deg, rgba(26, 35, 50, 0.10) 0.8px, transparent 0.8px);
    background-size: 32px 32px;
    animation: gridPulse 8s ease-in-out infinite;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 100%);
}

@keyframes gridPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.hero-grid-streak {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.hero-grid-streak.horizontal {
    height: 1.6px;
    width: 160px;
    background: linear-gradient(90deg, transparent 0%, rgba(22, 182, 144, 0.5) 50%, transparent 100%);
}

.hero-grid-streak.vertical {
    width: 1.6px;
    height: 160px;
    background: linear-gradient(180deg, transparent 0%, rgba(22, 182, 144, 0.5) 50%, transparent 100%);
}

.hero-bottom-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, rgba(22, 182, 144, 0.15) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 280px;
    background: linear-gradient(to bottom, rgba(250, 251, 252, 0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

@keyframes streakHorizontal {
    0% {
        left: -160px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes streakVertical {
    0% {
        top: -160px;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.hero-animated-blob {
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(245, 245, 240, 0.8) 0%, rgba(245, 245, 240, 0.3) 50%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(32px);
    z-index: 2;
    animation: blobMove 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes blobMove {

    0%,
    100% {
        transform: translate(0%, 0%) rotate(0deg) scale(1);
    }

    25% {
        transform: translate(10%, -15%) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translate(-5%, 10%) rotate(180deg) scale(0.9);
    }

    75% {
        transform: translate(15%, 5%) rotate(270deg) scale(1.05);
    }
}

.hero-grid {
    display: grid;
    gap: 42.4px;
    align-items: center;
    position: relative;
    left: -80px;
}


@media (min-width: 819.2px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 0
    }
}

@media (max-width: 480px) {
    .hero-grid {
        left: unset !important;
    }
}

.hero-flow-line {
    position: absolute;
    left: 0;
    top: 51.2px;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.25;
    pointer-events: none;
}

@media (max-width: 818.4px) {
    .hero-flow-line {
        display: none;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 522.4px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(22, 182, 144, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 23.2px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-badge-text {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark);
}

.hero-title {
    font-family: var(--font-display);
    /* font-size: clamp(46.4px, 6.8vw, 69.6px); */
    font-size: 64.8px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--dark-blue);
    margin-bottom: 27.2px;
    letter-spacing: -3px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 40.8px;
    max-width: 561.6px;
    font-weight: 400;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 14.4px;
    }

    .hero-title {
        font-sizE: 41.6px;
    }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 46.4px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 23.2px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.6px;
    color: var(--gray-500);
}

.trust-icon {
    width: 19.2px;
    height: 19.2px;
    color: var(--green);
}

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

@media (min-width: 819.2px) {
    .hero-visual {
        position: absolute;
        /* right: -71%; */
        right: -91%;
        /* top: 11%; */
        top: 19%;
        transform: translateY(-50%);
        /* width: 44vw; */
        width: 720px;
        max-width: none;
        z-index: 1;
    }
}

/* @media (min-width: 1120px) {
    .hero-visual {
        width: 40vw;
    }
} */

@media (min-width: 1440px) {
    .hero-visual {
        /* width: 36vw; */
        width: 720px;
        max-width: 720px;
    }
}

.hero-dashboard {
    position: relative;
    background: var(--white);
    border-radius: 9.6px;
    /* box-shadow: 0 16px 48px -9.6px rgba(0, 0, 0, 0.15), 0 0 0 0.8px rgba(0, 0, 0, 0.05); */
    box-shadow: 0 16px 48px -9.6px rgba(0, 0, 0, 0.15), 0 0 0 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

@media (min-width: 819.2px) {
    .hero-dashboard {
        transform: scale(1.94);
        transform-origin: right center;
        margin-right: 0;
    }
}

.hero-dashboard img {
    width: 100%;
    height: auto;
}

/* .hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 16px 19.2px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 11.2px;
    animation: float 4s ease-in-out infinite;
    min-width: 187.2px;
}

.hero-float-card-1 {
    bottom: 60%;
    left: -107%;
    animation-delay: 0s;
}

.hero-float-card-2 {
    bottom: 37%;
    left: -107%;
    animation-delay: 1s;
}

.hero-float-card-3 {
    bottom: 14%;
    left: -107%;
    animation-delay: 2s;
}

.hero-float-card-4 {
    bottom: -9%;
    left: -107%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-2px);
    }
}

.float-card-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card-icon.green {
    background: rgba(22, 182, 144, 0.1);
    color: var(--green);
}

.float-card-icon.blue {
    background: rgba(28, 157, 196, 0.1);
    color: var(--light-blue);
}

.float-card-content h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-blue);
}

.float-card-content p {
    font-size: 11px;
    color: var(--gray-500);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
} */

.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 16px 22px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 7s ease-in-out infinite;
    min-width: 195px;
}

.hero-float-card-1 {
    bottom: 62%;
    left: -107%;
    animation-delay: 0s;
}

.hero-float-card-2 {
    bottom: 39%;
    left: -107%;
    animation-delay: 1s;
}

.hero-float-card-3 {
    bottom: 16%;
    left: -107%;
    animation-delay: 2s;
}

.hero-float-card-4 {
    bottom: -7%;
    left: -107%;
    animation-delay: 1.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.5px);
    }
}

.float-card-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.float-card-icon.green {
    background: rgba(22, 182, 144, 0.1);
    color: var(--green);
}

.float-card-icon.blue {
    background: rgba(28, 157, 196, 0.1);
    color: var(--light-blue);
}

.float-card-content h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-blue);
}

.float-card-content p {
    font-size: 11px;
    color: var(--gray-500);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

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

/* How It Works Cards */
.how-it-works-cards {
    background: var(--off-white);
    padding: 0 0 76.8px;
    margin-top: -96px;
    position: relative;
    z-index: 10;
}

@media (min-width: 614.4px) {
    .how-it-works-cards {
        padding: 0 0 96px;
        margin-top: -112px;
    }
}

.steps-grid {
    display: grid;
    gap: 19.2px;
    margin-bottom: 20.8px;
}

@media (min-width: 614.4px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22.4px;
        position: relative;
        top: -32px;
    }
}

.step-card {
    background: var(--white);
    border: 1.6px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 41.6px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: -1.6px;
    left: -1.6px;
    right: -1.6px;
    height: 3.2px;
    background: linear-gradient(90deg, var(--green) 0%, var(--light-blue) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.step-card:hover {
    border-color: var(--green);
    box-shadow: 0 12.8px 25.6px -6.4px rgba(22, 182, 144, 0.15);
    transform: translateY(-4.8px);
    border-top-color: transparent;
}

.step-card:hover::before {
    opacity: 1;
}

@media(max-width: 480px) {
    .step-card {
        margin-top: -70.4px;
    }
}

.step-number {
    display: inline-flex;
    width: 22.4px;
    height: 22.4px;
    background: rgba(22, 182, 144, 0.08);
    color: var(--green);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 10.4px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19.2px;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(22, 182, 144, 0.1) 0%, rgba(28, 157, 196, 0.1) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25.6px;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(22, 182, 144, 0.15) 0%, rgba(28, 157, 196, 0.15) 100%);
}

.step-icon svg {
    width: 28.8px;
    height: 28.8px;
    color: var(--green);
    stroke-width: 1.75;
}

.step-title {
    font-family: var(--font-display);
    font-size: 18.4px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 11.2px;
    letter-spacing: -0em;
}

.step-description {
    font-size: 14.4px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 19.2px;
}

.step-check {
    /* display: inline-flex; */
    align-items: center;
    gap: 6.4px;
    font-size: 13.6px;
    color: var(--green);
    font-weight: 500;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    width: 100%;
}

.step-check svg {
    width: 12.8px;
    height: 12.8px;
}

.steps-cta {
    text-align: center;
}

/* Trusted By Section */
.trusted-by {
    position: relative;
    background: linear-gradient(180deg, #1a2332 0%, #212f3a 100%);
    padding: 64px 0 96px;
    overflow: hidden;
}

.trusted-by::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 640px;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(22, 182, 144, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.trusted-by-label {
    position: relative;
    z-index: 1;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-display);
    font-size: clamp(24.8px, 3.5vw, 33.6px);
    text-transform: none;
    color: white;
    letter-spacing: -0em;
    line-height: 1.3;
    max-width: 528px;
    margin: 0 auto 42.4px;
}

.trusted-by-tagline {
    text-align: center;
    font-size: 35.2px;
    line-height: 53.6px;
    color: #1a2332;
    letter-spacing: -1.2px;
    /* max-width: 616px; */
    margin: 0 auto;
    font-weight: 400;
    margin-bottom: 35.2px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 1;
    padding: 0;
    min-height: 88px;
}

/* Removed fade overlays to keep logos fully visible */

.logo-track {
    display: flex;
    gap: 52.8px;
    animation: scroll 40s linear infinite;
    width: fit-content;
    margin-bottom: 123.2px;
    will-change: transform;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% / 3));
    }
}

.logo-item {
    flex-shrink: 0;
    /* height: 70.4px; */
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* opacity: 0.8; */
    opacity: 0.4;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 25.6px;
    right: 25.6px;
    width: 38.4px;
    height: 38.4px;
    background: var(--green);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3.2px 9.6px rgba(22, 182, 144, 0.4);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-dark);
    transform: translateY(-3.2px);
    box-shadow: 0 6.4px 16px rgba(22, 182, 144, 0.5);
}

.back-to-top svg {
    width: 16px;
    height: 16px;
}

/* Problem Section - New Senturi Design */
.senturi-container {
    width: min(896px, calc(100% - 38.4px));
    margin: 0 auto;
}

.senturi-problem {
    padding: 67.2px 0;
    color: rgba(255, 255, 255, .92);
    background:
        radial-gradient(720px 416px at 18% 10%, rgba(43, 212, 162, .14), transparent 60%),
        radial-gradient(720px 416px at 90% 5%, rgba(43, 212, 162, .10), transparent 60%),
        linear-gradient(180deg, #0b1a24, #0e2330);
}

.senturi-problem__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 35.2px;
    align-items: center;
}

.senturi-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* font-size: 9.6px; */
    font-size: 12.8px;
    letter-spacing: .9.6em;
    color: rgba(43, 212, 162, .9);
    text-transform: uppercase;
    margin-bottom: 11.2px;
}

.senturi-dot {
    width: 6.4px;
    height: 6.4px;
    border-radius: 799.2px;
    background: var(--green);
    box-shadow: 0 0 0 4.8px rgba(43, 212, 162, .14);
}

.senturi-h2 {
    font-family: var(--font-display);
    /* font-size: clamp(24px, 2.6vw, 35.2px); */
    font-size: 49.6px;
    line-height: 1.05;
    margin: 0 0 11.2px;
    letter-spacing: -0em;
}

.senturi-lead {
    margin: 0 0 17.6px;
    color: rgba(255, 255, 255, .70);
    font-size: 12.8px;
    max-width: 43.2ch;
}

.senturi-risklist {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11.2px;
    max-width: 416px;
}

.senturi-risk {
    display: flex;
    gap: 11.2px;
    align-items: flex-start;
    padding: 11.2px 11.2px;
    border-radius: 11.2px;
    background: rgba(255, 255, 255, .045);
    border: 0.8px solid rgba(255, 255, 255, .08);
}

.senturi-ic {
    width: 32px;
    height: 32px;
    border-radius: 9.6px;
    display: grid;
    place-items: center;
    background: rgba(43, 212, 162, .10);
    border: 0.8px solid rgba(43, 212, 162, .18);
    color: rgba(43, 212, 162, .95);
    flex: 0 0 auto;
}

.senturi-ic svg {
    width: 17.6px;
    height: 17.6px;
}

.senturi-risk__title {
    font-weight: 800;
    letter-spacing: -.0.8em;
}

.senturi-risk__sub {
    color: rgba(255, 255, 255, .56);
    font-size: 10.4px;
    margin-top: 1.6px;
}

.senturi-closer {
    margin: 14.4px 0 0;
    color: rgba(255, 255, 255, .70);
    max-width: 43.2ch;
}

.senturi-strong {
    color: rgba(43, 212, 162, .95);
    font-weight: 800;
}

/* RIGHT PANEL */
.senturi-statusCard {
    background: linear-gradient(135deg, rgba(255, 255, 255, .98) 0%, rgba(250, 252, 253, .95) 100%);
    color: #0d1720;
    border-radius: 19.2px;
    padding: 25.6px;
    box-shadow: 0 19.2px 51.2px rgba(0, 0, 0, .28), 0 0 0 0.8px rgba(255, 255, 255, .6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
}

.senturi-statusCard::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 30% 30%, rgba(43, 212, 162, .18), transparent 65%);
    pointer-events: none;
    animation: statusGlow 8s ease-in-out infinite alternate;
}

@keyframes statusGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-16px, 8px) scale(1.1);
    }
}

/* Hero Section with Large Pulse */
.senturi-statusCard__hero {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 19.2px;
    border-bottom: 1.6px solid rgba(43, 212, 162, .15);
    margin-bottom: 19.2px;
    position: relative;
    z-index: 1;
}

.senturi-pulse-large {
    position: relative;
    width: 76.8px;
    height: 76.8px;
    flex-shrink: 0;
}

.senturi-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.6px solid rgba(43, 212, 162, .4);
    animation: pulseLargeRing 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.senturi-pulse-ring:nth-child(2) {
    animation-delay: 0.8s;
}

@keyframes pulseLargeRing {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.senturi-pulse-core {
    position: absolute;
    inset: 6.4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2bd4a2 0%, #18b887 100%);
    box-shadow: 0 6.4px 19.2px rgba(43, 212, 162, .4), 0 0 0 3.2px rgba(43, 212, 162, .2);
    display: grid;
    place-items: center;
    animation: pulseCoreBreath 2.5s ease-in-out infinite;
}

@keyframes pulseCoreBreath {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.senturi-pulse-core svg {
    width: 33.6px;
    height: 33.6px;
    stroke: white;
    filter: drop-shadow(0 1.6px 3.2px rgba(0, 0, 0, .15));
}

.senturi-statusCard__hero-text {
    flex: 1;
}

.senturi-statusCard__title {
    font-weight: 900;
    letter-spacing: -0em;
    font-size: 17.6px;
    color: #0d1720;
    margin-bottom: 3.2px;
}

.senturi-statusCard__subtitle {
    color: rgba(13, 23, 32, .62);
    font-size: 11.2px;
    font-weight: 500;
}

/* Metrics Section */
.senturi-statusCard__metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.senturi-metric {
    background: rgba(255, 255, 255, .6);
    border: 1.2px solid rgba(43, 212, 162, .2);
    border-radius: 14.4px;
    padding: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.senturi-metric:hover {
    background: rgba(255, 255, 255, .9);
    border-color: rgba(43, 212, 162, .35);
    transform: translateY(-1.6px);
    box-shadow: 0 6.4px 16px rgba(43, 212, 162, .15);
}

.senturi-metric__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9.6px;
}

.senturi-metric__header svg {
    width: 16px;
    height: 16px;
    stroke: #2bd4a2;
    flex-shrink: 0;
}

.senturi-metric__label {
    font-size: 10.4px;
    font-weight: 600;
    color: rgba(13, 23, 32, .65);
    text-transform: uppercase;
    letter-spacing: 0em;
}

.senturi-metric__value {
    font-family: var(--font-display);
    font-size: 28.8px;
    font-weight: 900;
    letter-spacing: -0em;
    color: #0d1720;
    line-height: 1;
    margin-bottom: 9.6px;
}

.senturi-metric__value--time {
    font-size: 22.4px;
}

.senturi-metric__value--percent {
    background: linear-gradient(135deg, #2bd4a2 0%, #18b887 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Bar */
.senturi-metric__bar {
    width: 100%;
    height: 6.4px;
    background: rgba(13, 23, 32, .08);
    border-radius: 799.2px;
    overflow: hidden;
    position: relative;
}

.senturi-metric__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #2bd4a2 0%, #18b887 100%);
    border-radius: 799.2px;
    animation: barFillIn 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    position: relative;
    overflow: hidden;
}

.senturi-metric__bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
    animation: barShimmer 2s ease-in-out infinite;
}

@keyframes barFillIn {
    from {
        width: 0;
    }
}

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

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

/* Status Check */
.senturi-metric__status {
    display: flex;
    align-items: center;
    gap: 6.4px;
    font-size: 10.4px;
    color: rgba(13, 23, 32, .70);
    font-weight: 500;
}

.senturi-metric__check {
    display: grid;
    place-items: center;
}

.senturi-metric__check svg {
    width: 16px;
    height: 16px;
    stroke: #2bd4a2;
    animation: checkPop 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s backwards;
}

@keyframes checkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Heartbeat Animation */
.senturi-metric__heartbeat {
    height: 32px;
    overflow: hidden;
}

.senturi-metric__heartbeat svg {
    width: 100%;
    height: 100%;
    stroke: #2bd4a2;
    opacity: 0.7;
}

.senturi-metric__heartbeat polyline {
    animation: heartbeatPulse 3s ease-in-out infinite;
}

@keyframes heartbeatPulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Footer */
.senturi-statusCard__foot {
    margin-top: 19.2px;
    position: relative;
    z-index: 1;
}

.senturi-footBadge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9.6px 14.4px;
    border-radius: 799.2px;
    background: rgba(43, 212, 162, .12);
    border: 1.2px solid rgba(43, 212, 162, .25);
    color: rgba(13, 23, 32, .80);
    font-size: 10.4px;
    font-weight: 500;
}

.senturi-footDot {
    width: 6.4px;
    height: 6.4px;
    border-radius: 799.2px;
    background: #18b887;
    animation: dotBlink 2s ease-in-out infinite;
}

@keyframes dotBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Responsive */
@media (max-width: 784px) {
    .senturi-problem__grid {
        grid-template-columns: 1fr;
        gap: 22.4px;
    }

    .senturi-statusCard {
        max-width: 496px;
    }
}

/* Trust & Security Section */
.trust-security-section {
    padding: 64px 0;
    background: var(--off-white);
    border-top: 0.8px solid var(--gray-200);
    border-bottom: 0.8px solid var(--gray-200);
}

.trust-security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 38.4px;
    text-align: center;
}

@media (min-width: 614.4px) {
    .trust-security-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 51.2px;
    }
}

.trust-stat {
    position: relative;
    transition: var(--transition);
}

.trust-stat:hover {
    transform: translateY(-3.2px);
}

.trust-stat-value {
    font-family: var(--font-display);
    font-size: clamp(28.8px, 4vw, 38.4px);
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: -0em;
    margin-bottom: 6.4px;
    background: linear-gradient(135deg, var(--green) 0%, var(--light-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
    font-family: var(--font-display);
}

/* Features Section */
.features-section {
    background: var(--white);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 320px;
    background-image:
        radial-gradient(circle at 1.6px 1.6px, var(--gray-200) 0.8px, transparent 0.8px);
    background-size: 25.6px 25.6px;
    opacity: 0.4;
    pointer-events: none;
}

.features-header {
    text-align: center;
    margin-bottom: 57.6px;
    position: relative;
    z-index: 1;
}

.features-header .section-subtitle {
    margin: 0 auto;
}

.features-grid {
    display: grid;
    gap: 22.4px;
    position: relative;
    z-index: 1;
}

@media (min-width: 512px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25.6px;
    }
}

@media (min-width: 819.2px) {
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 22.4px;
    }
}

.feature-card {
    background: var(--white);
    border: 0.8px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 25.6px 19.2px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3.2px;
    background: linear-gradient(90deg, var(--green) 0%, var(--light-blue) 100%);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-xl);
    transform: translateY(-3.2px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(22, 182, 144, 0.1) 0%, rgba(28, 157, 196, 0.1) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 19.2px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(22, 182, 144, 0.15) 0%, rgba(28, 157, 196, 0.15) 100%);
}

.feature-icon svg {
    width: 28.8px;
    height: 28.8px;
    color: var(--green);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    color: var(--green-light);
}

.feature-title {
    font-family: var(--font-display);
    /* font-size: 14.4px; */
    font-size: 18.4px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 9.6px;
}

.feature-description {
    font-size: 11.2px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Audience Section */
.audience-section {
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.audience-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: -10%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(22, 182, 144, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.audience-grid {
    display: grid;
    gap: 44.8px;
    position: relative;
    z-index: 1;
}

@media (min-width: 819.2px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
        gap: 76.8px;
        align-items: center;
    }
}

.audience-visual {
    order: 2;
}

@media (min-width: 819.2px) {
    .audience-visual {
        order: 1;
    }

    .audience-content {
        order: 2;
    }
}

/* Layered Cards Stack */
.audience-cards-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin: 0 auto;
}

/* Base Card Styles */
.audience-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Dashboard Card */
.audience-card--main {
    width: 256px;
    height: 288px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-2deg);
    z-index: 1;
    padding: 22.4px;
    animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(-2deg) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-2deg) translateY(-8px);
    }
}

.audience-card-header {
    display: flex;
    align-items: center;
    gap: 9.6px;
    margin-bottom: 19.2px;
    padding-bottom: 12.8px;
    border-bottom: 0.8px solid var(--gray-200);
}

.audience-card-dots {
    display: flex;
    gap: 4.8px;
}

.audience-card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
}

.audience-card-dots span:nth-child(1) {
    background: #ff5f57;
}

.audience-card-dots span:nth-child(2) {
    background: #febc2e;
}

.audience-card-dots span:nth-child(3) {
    background: #28c840;
}

.audience-card-title {
    font-family: var(--font-display);
    font-size: 11.2px;
    font-weight: 600;
    color: var(--gray-600);
}

.audience-card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 19.2px;
}

.health-circle {
    position: relative;
    width: 112px;
    height: 112px;
}

.health-circle svg {
    width: 100%;
    height: 100%;
    transform: scale(1);
    animation: healthPulse 3s ease-in-out infinite;
}

@keyframes healthPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.health-circle circle:nth-child(2) {
    animation: healthFill 2s ease-out forwards;
}

@keyframes healthFill {
    from {
        stroke-dashoffset: 339.292;
    }

    to {
        stroke-dashoffset: 67.858;
    }
}

.health-score {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: baseline;
    gap: 3.2px;
}

.health-value {
    font-family: var(--font-display);
    font-size: 38.4px;
    font-weight: 900;
    color: var(--dark-blue);
    line-height: 1;
}

.health-percent {
    font-size: 19.2px;
    font-weight: 700;
    color: var(--green);
    position: relative;
    top: -5.6px
}

.health-status {
    text-align: center;
}

.health-label {
    font-family: var(--font-display);
    font-size: 12.8px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4.8px;
}

.health-devices {
    font-size: 10.4px;
    color: var(--gray-500);
}

/* Floating Badge Card */
.audience-card--badge {
    width: 192px;
    padding: 14.4px 16px;
    top: 8%;
    right: -2%;
    transform: rotate(3deg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11.2px;
    animation: floatBadge 5s ease-in-out infinite;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: rotate(3deg) translateY(0);
    }

    50% {
        transform: rotate(3deg) translateY(-9.6px);
    }
}

.badge-icon {
    width: 35.2px;
    height: 35.2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 20.8px;
    height: 20.8px;
    stroke: var(--white);
}

.badge-content h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 1.6px;
}

.badge-content p {
    font-size: 9.6px;
    opacity: 0.9;
}

/* Floating Alert Card */
.audience-card--alert {
    width: 176px;
    padding: 12.8px 14.4px;
    bottom: 32%;
    left: -8%;
    transform: rotate(-4deg);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 9.6px;
    animation: floatAlert 7s ease-in-out infinite;
    border: 1.6px solid rgba(22, 182, 144, 0.2);
}

@keyframes floatAlert {

    0%,
    100% {
        transform: rotate(-4deg) translateY(0);
    }

    50% {
        transform: rotate(-4deg) translateY(-6.4px);
    }
}

.alert-icon {
    width: 32px;
    height: 32px;
    background: rgba(22, 182, 144, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.alert-icon svg {
    width: 17.6px;
    height: 17.6px;
    stroke: var(--green);
}

.alert-title {
    font-family: var(--font-display);
    font-size: 10.4px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1.6px;
}

.alert-time {
    font-size: 8.8px;
    color: var(--gray-500);
}

/* Floating Stats Card */
.audience-card--stats {
    width: 160px;
    padding: 12.8px;
    bottom: -4%;
    right: 3%;
    transform: rotate(2deg);
    z-index: 2;
    animation: floatStats 6s ease-in-out infinite 1s;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--white) 100%);
    backdrop-filter: blur(8px);
}

@keyframes floatStats {

    0%,
    100% {
        transform: rotate(2deg) translateY(0);
    }

    50% {
        transform: rotate(2deg) translateY(-8px);
    }
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.stat-row:not(:last-child) {
    border-bottom: 0.8px solid var(--gray-200);
}

.stat-icon {
    width: 22.4px;
    height: 22.4px;
    background: rgba(22, 182, 144, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 11.2px;
    height: 11.2px;
    stroke: var(--green);
}

.stat-label {
    font-size: 9.6px;
    color: var(--gray-600);
    flex: 1;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 10.4px;
    font-weight: 700;
    color: var(--dark-blue);
}

/* Hover Effects */
.audience-card--main:hover {
    transform: translate(-50%, -50%) rotate(-2deg) scale(1.02);
    box-shadow: 0 19.2px 38.4px rgba(0, 0, 0, 0.16);
}

.audience-card--badge:hover {
    transform: rotate(3deg) scale(1.05);
}

.audience-card--alert:hover {
    transform: rotate(-4deg) scale(1.05);
}

.audience-card--stats:hover {
    transform: rotate(2deg) scale(1.05);
}

/* Responsive */
@media (max-width: 614.4px) {
    .audience-cards-stack {
        height: 320px;
        max-width: 90%;
    }

    .audience-card--main {
        width: 224px;
        height: 256px;
    }

    .audience-card--badge {
        width: 160px;
        padding: 11.2px 12.8px;
        top: -36.8px;
    }

    .audience-card--alert,
    .audience-card--stats {
        width: 144px;
        bottom: 3.2px;
    }

    .audience-card--alert {
        bottom: -43.2px;
    }

    .audience-card--stats {
        bottom: -58.4px
    }

    .dashboard-main-screenshot {
        margin-bottom: 16px;
    }
}

.audience-checklist {
    margin-top: 25.6px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 9.6px;
    padding: 9.6px 0;
}

.checklist-icon {
    width: 19.2px;
    height: 19.2px;
    flex-shrink: 0;
    background: rgba(22, 182, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-top: 1.6px;
}

.checklist-icon svg {
    width: 11.2px;
    height: 11.2px;
}

.checklist-text {
    font-size: 12.8px;
    color: var(--gray-700);
}

.checklist-text strong {
    color: var(--dark-blue);
}

/* Dashboard Section */
.dashboard-section {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1120px;
    height: 320px;
    background-image:
        linear-gradient(var(--gray-100) 0.8px, transparent 0.8px),
        linear-gradient(90deg, var(--gray-100) 0.8px, transparent 0.8px);
    background-size: 51.2px 51.2px;
    opacity: 0.3;
    pointer-events: none;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 51.2px;
    position: relative;
    z-index: 1;
}

.dashboard-preview {
    position: relative;
    /* max-width: 800px; */
    margin: 0 auto;
}

.dashboard-frame {
    background: var(--dark-blue);
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    padding: 9.6px 9.6px 0;
}

.dashboard-browser-bar {
    display: flex;
    align-items: center;
    gap: 6.4px;
    padding: 9.6px 12.8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 9.6px;
}

.browser-dots {
    display: flex;
    gap: 4.8px;
}

.browser-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.browser-dot.red {
    background: #ff5f56;
}

.browser-dot.yellow {
    background: #ffbd2e;
}

.browser-dot.green {
    background: #27c93f;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 6.4px 9.6px;
    font-size: 9.6px;
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-screenshot {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.dashboard-screenshot img {
    width: 100%;
    height: auto;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12.8px;
    margin-top: 38.4px;
}

@media (min-width: 614.4px) {
    .dashboard-features {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dashboard-feature {
    text-align: center;
    padding: 19.2px 12.8px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.dashboard-feature-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto 9.6px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    box-shadow: var(--shadow-sm);
}

/* Dashboard Screenshot Wrapper */
.dashboard-screenshot-wrapper {
    position: relative;
    /* max-width: 880px; */
    margin: 0 auto;
    padding: 32px 16px;
}

.dashboard-main-screenshot {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(13, 23, 32, 0.15), 0 6.4px 19.2px rgba(13, 23, 32, 0.1);
    background: var(--white);
    z-index: 1;
}

.dashboard-main-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Benefit Cards */
.benefit-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 16px;
    display: flex;
    gap: 12.8px;
    align-items: flex-start;
    box-shadow: 0 6.4px 25.6px rgba(13, 23, 32, 0.12), 0 1.6px 6.4px rgba(13, 23, 32, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 224px;
    z-index: 2;
}

.benefit-card:hover {
    transform: translateY(-3.2px) scale(1.02);
    box-shadow: 0 12.8px 38.4px rgba(13, 23, 32, 0.18), 0 3.2px 12.8px rgba(13, 23, 32, 0.1);
}

.benefit-icon {
    width: 38.4px;
    height: 38.4px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--light-blue) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 3.2px 9.6px rgba(43, 212, 162, 0.3);
}

.benefit-icon svg {
    width: 19.2px;
    height: 19.2px;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 12.8px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 3.2px;
    line-height: 1.3;
}

.benefit-description {
    font-size: 10.4px;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Position each benefit card */
.benefit-card--health {
    top: 10%;
    right: -112px;
    animation: floatBenefit1 6s ease-in-out infinite;
}

.benefit-card--backup {
    top: 45%;
    right: -112px;
    animation: floatBenefit2 5.5s ease-in-out infinite;
}

.benefit-card--monitoring {
    top: 15%;
    left: -112px;
    animation: floatBenefit3 6.5s ease-in-out infinite;
}

.benefit-card--support {
    bottom: 15%;
    left: -112px;
    animation: floatBenefit4 5s ease-in-out infinite;
}

@keyframes floatBenefit1 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9.6px);
    }
}

@keyframes floatBenefit2 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatBenefit3 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatBenefit4 {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6.4px);
    }
}

/* Connecting Lines */
.benefit-connector {
    position: absolute;
    width: 112px;
    height: 64px;
    z-index: 0;
    opacity: 0.6;
}

.benefit-connector--health {
    top: 12%;
    right: 0;
    transform: translateX(100%);
}

.benefit-connector--backup {
    top: 47%;
    right: 0;
    transform: translateX(100%);
}

/* Responsive Benefit Cards */
@media (max-width: 960px) {

    .benefit-card--health,
    .benefit-card--backup {
        right: -80px;
    }

    .benefit-card--monitoring,
    .benefit-card--support {
        left: -80px;
    }
}

@media (max-width: 793.6px) {
    .benefit-card {
        position: static;
        max-width: 100%;
        margin-bottom: 12.8px;
    }

    .benefit-card--health,
    .benefit-card--backup,
    .benefit-card--monitoring,
    .benefit-card--support {
        animation: none;
    }

    .benefit-connector {
        display: none;
    }

    .dashboard-screenshot-wrapper {
        padding: 16px 0;
    }
}

.dashboard-feature-title {
    font-family: var(--font-display);
    font-size: 11.2px;
    font-weight: 600;
    color: var(--dark-blue);
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    overflow: hidden;
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 51.2px;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
    padding: 16px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 25.6px;
    animation: scroll-reviews 60s linear infinite;
    will-change: transform;
}

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

@keyframes scroll-reviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * (320px + 25.6px) * 6));
    }
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 25.6px;
    box-shadow: var(--shadow-lg);
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: var(--transition);
    border: 0.8px solid var(--gray-100);
}

.review-card:hover {
    transform: translateY(-3.2px);
    box-shadow: var(--shadow-xl);
}

.review-stars {
    display: flex;
    gap: 3.2px;
    color: #fbbf24;
}

.review-stars svg {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 12.8px;
    line-height: 1.7;
    color: var(--gray-700);
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 9.6px;
    padding-top: 12.8px;
    border-top: 0.8px solid var(--gray-100);
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 3.2px;
}

.review-author-name {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    color: var(--dark-blue);
}

.review-author-title {
    font-size: 10.4px;
    color: var(--gray-500);
}

@media (max-width: 614.4px) {
    .reviews-carousel {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    }

    .review-card {
        min-width: 256px;
        max-width: 256px;
        padding: 19.2px;
    }

    @keyframes scroll-reviews {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-1 * (256px + 25.6px) * 6));
        }
    }
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(22, 182, 144, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(28, 157, 196, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 51.2px;
    position: relative;
    z-index: 1;
}

.pricing-split-layout {
    display: grid;
    gap: 44.8px;
    align-items: start;
    position: relative;
    z-index: 1;
}

@media (min-width: 819.2px) {
    .pricing-split-layout {
        grid-template-columns: 384px 1fr;
        gap: 64px;
    }
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 0.8px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6.4px);
    box-shadow: 0 25.6px 51.2px -9.6px rgba(0, 0, 0, 0.15);
}

.pricing-card-header {
    background: var(--white);
    color: var(--dark-blue);
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 0.8px solid var(--gray-100);
}

.pricing-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 182, 144, 0.03) 0%, rgba(14, 120, 99, 0.05) 100%);
    pointer-events: none;
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
    color: var(--white);
    padding: 4.8px 12.8px;
    border-radius: var(--radius-full);
    font-size: 9.6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0em;
    margin-bottom: 12.8px;
    box-shadow: 0 1.6px 6.4px rgba(22, 182, 144, 0.25);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 3.2px;
}

.pricing-currency {
    font-size: 19.2px;
    font-weight: 600;
    color: var(--gray-600);
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 67.2px;
    font-weight: 800;
    line-height: 1;
    color: #1a2332;
    letter-spacing: -5.2px;
    /* background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); -webkit-background-clip: text;  */
    /* -webkit-text-fill-color: transparent;  */
    background-clip: text;
}

.pricing-per {
    margin-top: 6.4px;
    font-size: 11.2px;
    color: var(--gray-600);
}

.pricing-card-body {
    padding: 32px;
}

.pricing-features {
    margin-bottom: 25.6px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 9.6px;
    padding: 9.6px 0;
    border-bottom: 0.8px solid var(--gray-100);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature-icon {
    width: 19.2px;
    height: 19.2px;
    flex-shrink: 0;
    background: rgba(22, 182, 144, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
}

.pricing-feature-icon svg {
    width: 11.2px;
    height: 11.2px;
}

.pricing-feature-text {
    font-size: 12px;
    color: var(--gray-700);
}

.pricing-cta {
    width: 100%;
}

.pricing-note {
    text-align: center;
    margin-top: 12.8px;
    font-size: 10.4px;
    color: var(--gray-500);
}

/* Pricing Value Content */
.pricing-value-content {
    display: flex;
    flex-direction: column;
    gap: 25.6px;
}

.value-title {
    font-family: var(--font-display);
    font-size: 22.4px;
    font-weight: 800;
    color: var(--dark-blue);
    letter-spacing: -0em;
    margin-bottom: 6.4px;
}

.value-subtitle {
    font-size: 12.8px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 6.4px;
}

/* Value Highlights List */
.value-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-highlight-item {
    display: flex;
    gap: 14.4px;
    padding: 19.2px;
    background: var(--white);
    border: 0.8px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.value-highlight-item:hover {
    border-color: var(--green);
    box-shadow: 0 6.4px 19.2px rgba(22, 182, 144, 0.12);
    transform: translateX(3.2px);
}

.value-highlight-icon {
    width: 41.6px;
    height: 41.6px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 3.2px 9.6px rgba(22, 182, 144, 0.25);
}

.value-highlight-icon svg {
    width: 20.8px;
    height: 20.8px;
    stroke-width: 2.5;
}

.value-highlight-content {
    flex: 1;
}

.value-highlight-title {
    font-family: var(--font-display);
    font-size: 14.4px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 4.8px;
    letter-spacing: -0em;
}

.value-highlight-description {
    font-size: 11.2px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 6.4px 25.6px rgba(13, 23, 32, 0.08);
    border: 0.8px solid var(--gray-200);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 0;
    align-items: center;
}

.comparison-row:not(:last-child) {
    border-bottom: 0.8px solid var(--gray-100);
}

.comparison-header {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    border-bottom: 1.6px solid var(--gray-200);
}

.comparison-header .comparison-cell {
    font-family: var(--font-display);
    font-size: 9.6px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-600);
    padding: 16px;
}

.comparison-header .comparison-highlight {
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    color: var(--white);
    position: relative;
}

.comparison-header .comparison-highlight::after {
    content: '✓ Best Value';
    position: absolute;
    top: -8px;
    right: 50%;
    transform: translateX(50%);
    background: var(--green-dark);
    color: var(--white);
    font-size: 8px;
    font-weight: 700;
    padding: 3.2px 9.6px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 3.2px 9.6px rgba(22, 182, 144, 0.3);
}

.comparison-cell {
    padding: 17.6px 16px;
    font-size: 12px;
    color: var(--gray-600);
    text-align: center;
    transition: var(--transition-fast);
}

.comparison-cell:first-child {
    text-align: left;
    padding-left: 19.2px;
}

.comparison-cell:last-child {
    padding-right: 19.2px;
}

.comparison-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 11.2px;
    color: var(--dark-blue);
    letter-spacing: -0em;
}

.comparison-row:hover .comparison-cell {
    background: var(--gray-50);
}

.comparison-row:hover .comparison-highlight {
    background: linear-gradient(135deg, rgba(22, 182, 144, 0.12) 0%, rgba(28, 157, 196, 0.12) 100%);
}

.comparison-highlight {
    background: linear-gradient(135deg, rgba(22, 182, 144, 0.06) 0%, rgba(28, 157, 196, 0.06) 100%);
    font-weight: 800;
    color: var(--green-dark);
    position: relative;
    font-family: var(--font-display);
    letter-spacing: -0em;
}

.comparison-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3.2px;
    background: linear-gradient(180deg, var(--green) 0%, var(--light-blue) 100%);
}

/* Value Badges */
.value-guarantee-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12.8px;
    margin-top: 12.8px;
}

.value-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11.2px 16px;
    background: var(--gray-50);
    border: 0.8px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 11.2px;
    font-weight: 600;
    color: var(--dark-blue);
    transition: var(--transition);
}

.value-badge:hover {
    background: var(--white);
    border-color: var(--green);
    transform: translateY(-1.6px);
    box-shadow: var(--shadow-md);
}

.value-badge svg {
    width: 16px;
    height: 16px;
    color: var(--green);
    flex-shrink: 0;
}

@media (max-width: 512px) {
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 6.4px;
    }

    .comparison-cell {
        padding: 11.2px 9.6px;
        font-size: 10.4px;
    }

    .value-title {
        font-size: 19.2px;
    }
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19.2px;
    margin-top: 38.4px;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 6.4px;
    font-size: 11.2px;
    color: var(--gray-600);
}

.guarantee-icon {
    width: 16px;
    height: 16px;
    color: var(--green);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-header {
    text-align: center;
    margin-bottom: 38.4px;
}

.faq-grid {
    max-width: 640px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 0.8px solid var(--gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12.8px;
    width: 100%;
    padding: 19.2px 0;
    text-align: left;
    font-family: var(--font-display);
    font-size: 17.6px;
    font-weight: 600;
    color: var(--dark-blue);
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--green);
}

.faq-icon {
    width: 19.2px;
    height: 19.2px;
    flex-shrink: 0;
    color: var(--gray-400);
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

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

.faq-answer-content {
    padding-bottom: 19.2px;
    font-size: 15.2px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d1b2a 0%, #1a2f3d 50%, #0f2027 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 105.6px 0;
}

/* Animated grid background */
.cta-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(37, 174, 96, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 174, 96, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Glowing orbs */
.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.cta-glow-left {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #25ae60, transparent);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-glow-right {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #1e8449, transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Accent circles */
.cta-accent-circle {
    position: absolute;
    border: 2px solid rgba(37, 174, 96, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.cta-circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-circle-2 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 15%;
    animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 174, 96, 0.1);
    border: 1px solid rgba(37, 174, 96, 0.2);
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.cta-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.3px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.cta-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 32px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

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

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.cta-btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 174, 96, 0.3), 0 0 0 0 rgba(37, 174, 96, 0.5);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.cta-btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.cta-btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn-primary:hover {
    background: var(--green-light);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 217, 172, 0.4), 0 0 0 0 rgba(30, 217, 172, 0.5);
}

.cta-btn-primary > *,
.cta-btn-primary svg,
.cta-btn-primary .btn-icon {
    position: relative;
    z-index: 1;
    color: var(--white) !important;
}

.cta-btn-primary:active {
    animation: buttonPress 0.2s ease-out;
}

@keyframes buttonPress {
    0%, 100% {
        transform: translateY(-2px);
    }
    50% {
        transform: translateY(0);
    }
}

/* Feature items */
.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cta-feature-icon {
    width: 20px;
    height: 20px;
    color: var(--green);
    flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: clamp(28px, 7vw, 36px);
    }

    .cta-description {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .cta-features {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .cta-glow-left,
    .cta-glow-right {
        width: 250px;
        height: 250px;
    }

    .cta-circle-1,
    .cta-circle-2 {
        display: none;
    }
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a2332 0%, #0f1824 100%);
    color: var(--white);
    padding: 64px 0 25.6px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0.8px;
    background: linear-gradient(90deg, transparent 0%, rgba(22, 182, 144, 0.3) 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    gap: 38.4px;
    margin-bottom: 38.4px;
}

@media (min-width: 614.4px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 44.8px;
    }
}

.footer-brand .logo {
    margin-bottom: 12.8px;
}

.footer-brand .logo img {
    height: 36px;
}

.footer-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--green-light);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12.8px;
    padding-top: 24px;
    border-top: 0.8px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 614.4px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-social {
    display: flex;
    gap: 12.8px;
    display: none;
}

.social-link {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border: 0.8px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
    transform: translateY(-2.4px);
    box-shadow: 0 6.4px 12.8px rgba(22, 182, 144, 0.3);
}

.social-link svg {
    width: 14.4px;
    height: 14.4px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

@media (max-width: 818.4px) {
    .hero-float-card {
        display: none;
    }
}

@media (max-width: 613.6px) {
    .audience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 16px;
    }
}










