/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1c22;
    background-color: #ffffff;
    line-height: 1.5;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 35px 0;
}

.center {
    text-align: center;
}

.w-full {
    width: 100%;
}

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

/* Buttons */
.btn-primary {
    background-color: #014fac;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    border: 1px solid #014fac;
}

.btn-primary:hover {
    background-color: #242a42;
}

.btn-primary-lg {
    background-color: #014fac;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.2s;
    border: 1px solid #014fac;
}

.btn-primary-lg:hover {
    background-color: #242a42;
}

.pricing-section {
    background-color: #f8fafc;
}

.btn-outline-lg {
    background-color: transparent;
    color: #014fac;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #d1d5db;
    transition: background-color 0.2s;
}

.btn-outline-lg:hover {
    background-color: #f3f4f6;
}

.btn-outline {
    background-color: transparent;
    color: #014fac;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    border: 1px solid #d1d5db;
    transition: background-color 0.2s;
}

.nav-container .logo img {
    height: 48px;
    object-fit: contain;
}

.footer-logo img {
    height: 85px;
}

.btn-outline:hover {
    background-color: #f3f4f6;
}

.btn-blue {
    background-color: #0b5cff;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    border: 1px solid #0b5cff;
    transition: background-color 0.2s;
}

.btn-blue:hover {
    background-color: #0849cc;
}

.btn-black-full {
    background-color: #014fac;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    font-size: 16px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-black-full:hover {
    background-color: #242a42;
}

/* ============================================================
   SITE HEADER — Floating Pill Navbar (Modern / Premium)
   ============================================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 14px 24px;
    pointer-events: none;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: #fff;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    padding: 10px 14px 10px 16px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.04),
        0 20px 40px -10px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: all;
}

.navbar:hover {
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.06),
        0 24px 48px -12px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* ----- Logo Area ----- */
.logos-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-container .logo img,
.logos-wrapper .logo img {
    height: 61px;
    object-fit: contain;
}

.logo-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
}

.partner-logo img {
    height: 59px !important;
    object-fit: contain;
    border-radius: 6px;
    opacity: 0.85;
    transition: opacity 0.2s ease;
}
.partner-logo:hover img {
    opacity: 1;
}

/* ----- Nav Links ----- */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    display: block;
    text-decoration: none;
    color: #475569;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover {
    color: #0f172a;
    background: rgba(15, 23, 42, 0.05);
}

.nav-links a.active {
    color: #0953b1;
    background: rgb(3 167 198 / 29%);
}

/* ----- Nav Actions ----- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-signin {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 15px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #475569;
    background: transparent;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-signin:hover {
    color: #0f172a;
    background: #f8fafc;
    border-color: #94a3b8;
}

.btn-cta-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 15px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(90deg, rgb(10 190 205) 0%, rgb(12 146 191) 50%, rgb(0 80 173) 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(11, 92, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-cta-nav:hover {
    color: #ffffff;
    background: linear-gradient(135deg, #0b5cff 0%, #2d7df7 100%);
    box-shadow: 0 4px 16px rgba(11, 92, 255, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

.btn-cta-nav svg {
    transition: transform 0.2s ease;
}
.btn-cta-nav:hover svg {
    transform: translateX(3px);
}

/* ----- Hamburger ----- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: background 0.2s;
}

.hamburger:hover {
    background: rgba(0,0,0,0.05);
}


.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #014fac;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 35px 0px 45px;
}

.hero-text {
    flex: 1;
}

.badge {
    background-color: #d8e5fd;
    color: #0b5cff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    color: #014fac;
    margin-bottom: 24px;
}

.text-blue {
    color: #0b5cff;
}

.hero-text p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 40px;
    max-width: 480px;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.6;
        transform: scale(0.85);
    }
}

.hero__title {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.08;
    color: var(--color-dark);
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: clamp(17px, 2vw, 19px);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
    margin-inline: auto;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.hero__trust {
    font-size: 13px;
    color: var(--color-muted);
}

.hero__visual {
    width: 100%;
    max-width: 1000px;
}

/* Dashboard mockup */
.dashboard-float {
    position: relative;
    animation: float-dashboard 6s ease-in-out infinite;
}

@keyframes float-dashboard {

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

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

.dashboard {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.dashboard__chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: #f1f5f9;
    border-bottom: 1px solid var(--color-border);
}

.dashboard__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard__dot--r {
    background: #ff5f57;
}

.dashboard__dot--y {
    background: #febc2e;
}

.dashboard__dot--g {
    background: #28c840;
}

.dashboard__url {
    margin-left: auto;
    font-size: 11px;
    color: var(--color-muted);
    background: var(--color-white);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.dashboard__body {
    display: flex;
    min-height: 320px;
}

.dashboard__sidebar {
    width: 56px;
    padding: 16px 12px;
    background: var(--color-dark);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dashboard__nav-item {
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.dashboard__nav-item--active {
    background: var(--color-primary);
}

.dashboard__main {
    flex: 1;
    padding: 20px 24px;
    text-align: left;
}

.dashboard__label {
    font-size: 11px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard__greeting {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin-top: 2px;
}

.dashboard__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dashboard__avatar {
    width: 36px;
    height: 36px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dashboard__stat-card {
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 12px;
}

.dashboard__stat-label {
    font-size: 10px;
    color: var(--color-muted);
    display: block;
}

.dashboard__stat-card strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    display: block;
    margin-top: 2px;
}

.dashboard__stat-trend {
    font-size: 10px;
    color: var(--color-muted);
}

.dashboard__stat-trend--up {
    color: var(--color-primary);
}

.dashboard__chart {
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
    height: 80px;
}

.dashboard__chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100%;
}

.dashboard__chart-bars span {
    flex: 1;
    height: var(--h);
    background: linear-gradient(180deg, var(--color-primary) 0%, rgba(0, 193, 106, 0.4) 100%);
    border-radius: 4px 4px 0 0;
    min-height: 8px;
}

.dashboard__table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8px;
    padding: 8px 0;
    font-size: 12px;
    border-bottom: 1px solid var(--color-border);
    align-items: center;
}

.dashboard__table-row--head {
    font-weight: 600;
    color: var(--color-muted);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dashboard__avatar-sm {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: #e0e7ff;
    color: #4338ca;
    font-size: 8px;
    font-weight: 700;
    font-style: normal;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 6px;
    vertical-align: middle;
}

.dashboard__badge-status {
    font-size: 10px;
    padding: 3px 8px;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    width: fit-content;
}

.dashboard__badge-status--away {
    background: #fef3c7;
    color: #b45309;
}

/* Phone mockup */
.phone-mockup {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 140px;
    background: var(--color-dark);
    border-radius: 24px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    animation: float-phone 5s ease-in-out infinite 0.5s;
}

@keyframes float-phone {

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

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

.phone-mockup__screen {
    background: var(--color-white);
    border-radius: 18px;
    padding: 16px 12px;
    text-align: center;
}

.phone-mockup__time {
    font-size: 10px;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.phone-mockup__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 12px;
}

.phone-mockup__check {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.phone-mockup__status {
    font-size: 10px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.phone-mockup__btn {
    width: 100%;
    padding: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ==========================================================================
     Logos
     ========================================================================== */

.logos {
    position: relative;
    z-index: 1;
    padding-top: 28px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--color-border);
}

.logos__label {
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.logos__grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 32px 48px;
}

.logos__item {
    font-size: 15px;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: -0.02em;
    transition: color var(--transition);
    user-select: none;
}

.logos__item:hover {
    color: #94a3b8;
}

/* ==========================================================================
     Features
     ========================================================================== */

.features {
    position: relative;
    z-index: 1;
    padding-top: 56px;
    padding-bottom: 56px;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

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

.feature-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feature-card__icon--pink {
    background: #fce7f3;
    color: #db2777;
}

.feature-card__icon--blue {
    background: #dbeafe;
    color: #225eb9;
}

.feature-card__icon--yellow {
    background: #fef9c3;
    color: #ca8a04;
}

.feature-card__icon--orange {
    background: #ffedd5;
    color: #ea580c;
}

.feature-card__icon--green {
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
}

.feature-card__icon--purple {
    background: #ede9fe;
    color: #7c3aed;
}

.feature-card__icon--cyan {
    background: #cffafe;
    color: #0891b2;
}

.feature-card__icon--rose {
    background: #ffe4e6;
    color: #e11d48;
}

.feature-card__icon--indigo {
    background: #e0e7ff;
    color: #4f46e5;
}

.feature-card__icon--teal {
    background: #ccfbf1;
    color: #0d9488;
}

.feature-card__icon--amber {
    background: #fef3c7;
    color: #d97706;
}

.feature-card__icon--lime {
    background: #ecfccb;
    color: #65a30d;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.55;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.mockup-img {
    border-radius: 12px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
    height: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.mockup-inner {
    border: 1px solid #334155;
    border-radius: 8px;
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dash-header {
    height: 20px;
    background-color: #334155;
    border-radius: 4px;
    width: 40%;
}

.dash-grid {
    display: flex;
    gap: 12px;
}

.dash-card {
    flex: 1;
    height: 60px;
    background-color: #334155;
    border-radius: 4px;
}

.dash-chart {
    flex: 1;
    background-color: #334155;
    border-radius: 4px;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    left: -40px;
    background: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}

.icon-box.blue {
    background-color: #0b5cff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .title {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.floating-card .value {
    font-size: 20px;
    font-weight: 700;
    color: #014fac;
}

/* Ecosystem Section */
.section-header {
    margin-bottom: 36px;
}

.section-header.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header h2 {
    font-size: 33px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header.center h2::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) translateX(-30px);
    width: 140px;
    height: 6px;
    background-image:
        radial-gradient(circle at 3px 3px, #0f172a 2.5px, transparent 3px),
        linear-gradient(#0f172a, #0f172a);
    background-size: 6px 6px, 134px 2px;
    background-position: left center, right center;
    background-repeat: no-repeat;
}

.section-header.center h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%) translateX(40px);
    width: 110px;
    height: 4px;
    background-image:
        radial-gradient(circle at 2px 2px, #64748b 1.5px, transparent 2px),
        linear-gradient(#64748b, #64748b);
    background-size: 4px 4px, 106px 1px;
    background-position: right center, left center;
    background-repeat: no-repeat;
}

.section-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Eco Slider Styles */
.eco-slider-wrap {
    position: relative;
    margin-top: 40px;
}

.eco-slider {
    margin: 0 -10px;
}

.eco-slide {
    padding: 0 10px;
    outline: none;
}

.eco-slide-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    background-color: #f8fafc;
}

.eco-slide-inner img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.eco-slide:hover .eco-slide-inner img {
    transform: scale(1.03);
}

.eco-slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0) 100%);
    padding: 80px 40px 40px;
    color: #ffffff;
    pointer-events: none;
}

.eco-slide-caption h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.eco-slide-caption p {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 600px;
    line-height: 1.6;
}

/* Eco Slider Navigation */
.eco-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

.eco-arrow {
    position: absolute;
    top: calc(50% - 24px);
    /* Center relative to image */
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0f172a;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
}

.eco-arrow:hover {
    background-color: #0b5cff;
    border-color: #0b5cff;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.eco-prev {
    left: 20px;
}

.eco-next {
    right: 20px;
}

/* Slick Generated Dots */
#ecoDots .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: unset;
}

#ecoDots .slick-dots li {
    margin: 0;
}

#ecoDots .slick-dots li button.eco-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 0;
}

#ecoDots .slick-dots li.slick-active button.eco-dot {
    background-color: #0b5cff;
    transform: scale(1.5);
    width: 24px;
    border-radius: 6px;
}

/* Dark Section */
.dark-section {
    background-color: #111;
    color: #ffffff;
    padding: 72px 0;
}

.dark-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.dark-text {
    flex: 1;
}

.dark-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.dark-text p {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 500px;
}

.feature-list-large {
    list-style: none;
    margin-bottom: 40px;
}

.feature-list-large li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-list-large .li-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-list-large strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-list-large p {
    font-size: 15px;
    margin-bottom: 0;
}

.dark-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.retention-card {
    width: 100%;
    max-width: 564px;
    position: relative;
    text-align: center;
    height: 500px;
}

.dot.green {
    width: 12px;
    height: 12px;
    background-color: #10b981;
    border-radius: 50%;
    position: absolute;
    top: 24px;
    right: 24px;
}

.retention-card .label {
    color: #10b981;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.retention-card .percentage {
    font-size: 72px;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 40px;
}

.chart-mini {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.chart-mini .bar {
    width: 16px;
    background-color: #0b5cff;
    border-radius: 4px 4px 0 0;
}

.chart-mini .bar:nth-child(1) {
    height: 40%;
}

.chart-mini .bar:nth-child(2) {
    height: 70%;
}

.chart-mini .bar:nth-child(3) {
    height: 50%;
}

.chart-mini .bar:nth-child(4) {
    height: 100%;
}

/* Grid Features */
.features-grid-section {
    background-color: #f8fafc;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.grid-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 32px 24px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.grid-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.grid-card p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Verticals */
.vertical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.vertical-card {
    height: 320px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    background-color: #1e293b;
    color: #ffffff;
}

.vertical-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.vertical-card:hover .overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.6) 100%);
}

.vertical-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.vertical-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.vertical-content .hidden-desc {
    display: none;
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.btn-text {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.vertical-card:hover .hidden-desc {
    display: block;
}

.bg-1 {
    background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}

.bg-2 {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}

.bg-3 {
    background-image: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}

.bg-4 {
    background-image: url('https://images.unsplash.com/photo-1472851294608-062f824d29cc?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}

.bg-5 {
    background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}

.bg-6 {
    background-image: url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=600&q=80');
    background-size: cover;
    background-position: center;
}


/* Pricing Section */
.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    font-weight: 500;
}

.badge-green-small {
    background-color: #ecfdf5;
    color: #10b981;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0b5cff;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

.switch input:checked+.slider {
    background-color: #0b5cff;
}

.switch input:checked+.slider:before {
    transform: translateX(24px);
}

.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
    align-items: start;
}

.price-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.price-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.price-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 32px;
}

.price {
    display: flex;
    align-items: baseline;
    margin-bottom: 32px;
}

.price .currency {
    font-size: 24px;
    font-weight: 600;
}

.price .amount {
    font-size: 48px;
    font-weight: 700;
}

.price .period {
    color: #64748b;
    margin-left: 4px;
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: #4b5563;
}

.price-features li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.price-card.popular {
    background-color: #111;
    color: #ffffff;
    border-color: #111;
    transform: scale(1.05);
}

.price-card.popular p,
.price-card.popular .period,
.price-card.popular .price-features li {
    color: #cbd5e1;
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0b5cff;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Testimonials */
/* ====== Testimonial Slider (Slick) ====== */
.testimonial-section {
    background-color: #ffffff;
    padding: 64px 0 56px;
}

.testi-top {
    text-align: center;
    margin-bottom: 56px;
}

.testi-heading {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
}

/* Wrapper with arrows on sides */
.testi-slider-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Slick Slider Container */
.testi-slider {
    flex: 1;
    min-width: 0;
}

/* Each slide outer */
.testi-slide {
    padding: 0 12px;
    outline: none;
}

/* Card */
.ts-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s, transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ts-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Stars */
.ts-stars {
    display: flex;
    gap: 4px;
}

.ts-stars svg {
    width: 18px;
    height: 18px;
}

/* Quote */
.ts-quote {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
}

/* Author */
.ts-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.ts-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #e5e7eb;
}

.ts-av1 {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.ts-av2 {
    background-color: #d1fae5;
    color: #065f46;
}

.ts-av3 {
    background-color: #ede9fe;
    color: #5b21b6;
}

.ts-av4 {
    background-color: #fef3c7;
    color: #92400e;
}

.ts-av5 {
    background-color: #fce7f3;
    color: #9d174d;
}

.ts-av6 {
    background-color: #e0f2fe;
    color: #0c4a6e;
}

.ts-author-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.ts-author-text span {
    font-size: 13px;
    color: #6b7280;
}

/* Navigation Arrows */
.testi-arrow {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background-color 0.2s, box-shadow 0.2s;
    z-index: 2;
}

.testi-arrow:hover {
    background-color: #111827;
    border-color: #111827;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 36px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
    border: none;
    padding: 0;
}

.testi-dot.active {
    background-color: #111827;
    transform: scale(1.3);
}

/* Hide default slick dots/arrows (we use custom) */
.testi-slider .slick-dots,
.testi-slider .slick-prev,
.testi-slider .slick-next {
    display: none !important;
}


/* CTA Section */
.cta-section {
    background-color: #f8fafc;
    padding: 72px 0;
    border-top: 1px solid #e2e8f0;
}

.cta-flex {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}

.cta-text {
    flex: 1;
}

/* Badge */
.cta-badge {
    display: inline-block;
    background-color: #eff6ff;
    color: #0b5cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid #bfdbfe;
}

.cta-text h2 {
    font-size: 33px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-text>p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 36px;
    line-height: 1.7;
}

/* Stats Row */
.cta-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 36px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.cta-stat-item {
    flex: 1;
    text-align: center;
}

.cta-stat-num {
    font-size: 26px;
    font-weight: 700;
    color: #0b5cff;
    line-height: 1;
    margin-bottom: 4px;
}

.cta-stat-lbl {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.cta-stat-sep {
    width: 1px;
    height: 40px;
    background-color: #e2e8f0;
    flex-shrink: 0;
}

/* Checklist */
.cta-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.cta-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cta-check-icon {
    width: 24px;
    height: 24px;
    background-color: #0b5cff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-check-icon svg {
    width: 13px;
    height: 13px;
}

.cta-checklist li strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 3px;
}

.cta-checklist li span {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Mini Testimonial */
.cta-mini-testi {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 3px solid #0b5cff;
    border-radius: 0 10px 10px 0;
    padding: 16px 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.cta-mini-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1d4ed8;
    color: #bfdbfe;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-mini-text p {
    font-size: 13px;
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 6px;
}

.cta-mini-text strong {
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.cta-form {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.05);
}

/* Form Header */
.form-header {
    margin-bottom: 28px;
}

.form-header-badge {
    display: inline-block;
    background-color: #eff6ff;
    color: #0b5cff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.form-header-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
    margin-bottom: 12px;
}

.form-header-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.65;
}

.form-header-desc strong {
    color: #0b5cff;
    font-weight: 600;
}

.form-header-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin-top: 24px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #4b5563;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0b5cff;
}

/* Footer */
.site-footer {
    padding: 0px 0 00px;
    background-color: #16332d;
}

.footer-card {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

.footer-bg-graphic {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-bg-graphic svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    display: flex;
    padding: 80px 80px 60px;
    gap: 120px;
    position: relative;
    z-index: 1;
}

.footer-brand-col {
    flex: 1.2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-logo span {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-desc {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.social-links a {
    color: #ffffff;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover {
    color: #eab308;
}

.btn-back-top {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 4px;
}

.btn-back-top:hover {
    background-color: #ffffff;
    color: #16332d;
    border-color: #ffffff;
}

.footer-links-wrap {
    flex: 1;
    display: flex;
    gap: 80px;
}

.link-col h4 {
    color: #ffffff;
    font-size: 19px;
    margin-bottom: 32px;
    font-weight: 800;
    text-transform: uppercase;
}

.link-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 16px;
    font-size: 14px;
    transition: color 0.3s;
}

.link-col a:hover {
    color: #eab308;
}

.link-col a.active-link {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.footer-card-bottom {
    background-color: #eab308;
    padding: 16px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mockup-img img {
    height: 380px;
    border-radius: 9px;
}

.footer-card-bottom p {
    color: #16332d;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
}

.retention-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* Banner Slider Custom Styles */
.banner-slider {
    position: relative;
}

.banner-slider .slick-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 10;
    justify-content: center;
}

.banner-slider .slick-dots li {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.banner-slider .slick-dots li button {
    display: block;
    width: 13px;
    height: 8px;
    padding: 0;
    none;
    background: #8f8d8d;
    border-radius: 100%;

    line-height: unset;
    opacity: 1;
}

.banner-slider .slick-dots li.slick-active button {
    background: #0b5cff;
    width: 30px;
    height: 6px;
    border-radius: 3px;
    opacity: 1;
}

.banner-slider .slick-dots li button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.banner-slider .slick-dots li.slick-active button:hover {
    background: #0b5cff;
}

/* Optional: Banner Slider Arrows */
.banner-slider .slick-prev,
.banner-slider .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: transparent;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0;
}

.banner-slider .slick-prev:before,
.banner-slider .slick-next:before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.banner-slider .slick-prev {
    left: 30px;
}

.banner-slider .slick-prev:before {
    transform: rotate(-45deg);
    margin-left: 4px;
}

.banner-slider .slick-next {
    right: 30px;
}

.banner-slider .slick-next:before {
    transform: rotate(135deg);
    margin-right: 4px;
}

.banner-slider .slick-prev:hover,
.banner-slider .slick-next:hover {
    background: #0b5cff;
    border-color: #0b5cff;
}

.banner-slide img {
    height: 70vh;
    width: 100%;
    object-fit: cover;
    object-position: top;

}

.banner-slider .slick-dots li.slick-active {
    width: 30px;
    border: none;
    height: 10px;
    border-radius: 5px;
    background: unset;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 600px;
    }

    .eco-grid {
        flex-direction: column;
    }

    .eco-sub-grid {
        flex-direction: column;
    }

    .dark-flex {
        flex-direction: column;
    }

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

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

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

    .price-card.popular {
        transform: scale(1);
    }

    .cta-flex {
        flex-direction: column;
    }
}

@media(max-width:990px) {
    .pricing-section .price-card {
        height: 100% !important;
        margin: 20px 0px;
    }
}

@media (max-width: 768px) {
    .testi-arrow {
        position: absolute;
        display: none;
    }

    .dark-text h2 {
        font-size: 26px;
    }

    .cta-text h2 {
        font-size: 27px;
    }

    .cta-form {
        padding: 20px;
    }

    .cta-flex {
        gap: 10px;
    }

    /* Global Mobile Adjustments */
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 24px 0;
    }

    .section-header h2 {
        font-size: 24px !important;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 14px;
    }

    .nav-container.mobile-menu-open {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    .nav-container.mobile-menu-open .logo {
        margin-bottom: 24px;
    }

    .nav-container.mobile-menu-open .hamburger {
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .nav-links,
    .nav-actions {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .nav-actions {
        margin-top: 12px;
        border-top: 1px solid #f1f5f9;
        padding-top: 24px;
    }

    .btn-signin,
    .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .btn-primary-lg,
    .btn-outline-lg {
        padding: 10px 20px;
        font-size: 14px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vertical-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .price-card,
    .vertical-card {
        padding: 20px;
        height: 320px !important;
    }

    .testi-cards {
        grid-template-columns: 1fr;
    }

    .testi-header h2 {
        font-size: 28px;
    }

    .testi-stat-number {
        font-size: 26px;
    }

    .logos-row {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* New Footer Responsive */
    .footer-content {
        flex-direction: column;
        padding: 32px 20px 24px;
        gap: 32px;
    }

    .footer-links-wrap {
        flex-direction: column;
        gap: 32px;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-logo span {
        font-size: 20px;
    }

    .footer-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .social-links {
        margin-bottom: 24px;
        gap: 12px;
    }

    .link-col h4 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .link-col a {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .btn-back-top {
        padding: 10px 16px;
        font-size: 12px;
    }

    .footer-card-bottom {
        padding: 12px 16px;
    }

    .footer-card-bottom p {
        font-size: 11px;
    }
}