/* ----------------------------------------------------
   DESIGN SYSTEM & VARIABLES
---------------------------------------------------- */
:root {
    /* Colors */
    --color-bg-dark: #050814;
    --color-bg-dark-card: #0B132B;
    --color-bg-light: #F8FAF9;
    --color-bg-light-card: #FFFFFF;

    --color-text-white: #FFFFFF;
    --color-text-silver: #A9B2C3;
    --color-text-dark: #1E293B;
    --color-text-muted: #64748B;

    --color-primary: #c46f06;
    --color-primary-hover: #c46f06;
    --color-primary-glow: rgba(255, 159, 28, 0.4);

    --color-accent-red: #FF5E36;
    --color-accent-cyan: #00E8C6;
    --color-accent-cyan-glow: rgba(0, 232, 198, 0.3);

    --color-badge-green-bg: #E6F4EA;
    --color-badge-green-text: #137333;

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout & Details */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 30px rgba(0, 232, 198, 0.15);
}

/* ----------------------------------------------------
   BASE STYLES & RESET
---------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

/* ----------------------------------------------------
   REUSABLE UTILITIES
---------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

#form-submit-btn {
    color: white;
}

@media (min-width: 768px) {
    .grid-2-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.align-start {
    align-items: flex-start;
}

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

.gap-large {
    gap: 64px;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.badge-light {
    background-color: #E2E8F0;
    color: var(--color-text-dark);
}

.pill-blue {
    background-color: #E8F4FD;
    color: #0077CC;
    border: 1px solid #BAE0F6;
    padding: 8px 22px;
}

.badge-icon {
    stroke-width: 3px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-text-white);
    /* box-shadow: 0 4px 14px var(--color-primary-glow); */
}

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px var(--color-primary-glow); */
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-large {
    padding: 10px 26px;
    font-size: 1.05rem;
    border-radius: 8px;
}

.btn-full-width {
    width: 100%;
}

/* Section Header */
.section-header {
    margin-bottom: 56px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-top: 12px;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.625rem;
    }
}

.slide-card.active .slide-bg-img {
    object-fit: fill !important;
}

.section-title.text-white {
    color: var(--color-text-white);
}

.highlight-orange {
    color: #E9953E;
}

.subtitle {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 16px auto 0 auto;
}

/* ----------------------------------------------------
   HEADER & NAVBAR
---------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50px;
    border-top: 1px solid #E2E8F099;
    box-shadow:
        0px 4px 6px -4px rgba(15, 23, 43, 0.05),
        0px 10px 15px -3px rgba(15, 23, 43, 0.05);


}

.get-started-header {
    background: linear-gradient(94.69deg, rgba(231, 128, 0, 0.9) -4.53%, rgba(255, 141, 0, 0.9) 102.45%);
    color: #FFFFFF !important;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    border: #ED974F 0.5px solid;
    /* box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2); */
    transition: all 0.3s ease;
}

.get-started-header:hover {
    background: linear-gradient(94.69deg, rgba(231, 128, 0, 0.9) -4.53%, rgba(255, 141, 0, 0.9) 102.45%);
    transform: translateY(-2px);
    /* box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3); */
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1010;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    color: #0F172A;
}

.logo-highlight {
    color: var(--color-primary);
}

.logo-svg {
    filter: none;
}

.nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 36px;
    }
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: #45556CE0;
    display: inline-flex;
    align-items: center;
    gap: 4px;

    transition: color 0.25s ease;
}

.nav-link svg path {
    stroke: currentColor;
    transition: stroke 0.25s ease;
}

.nav-link:hover {
    color: #EA580C;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: #475569;
}

.login-link:hover {
    color: #EA580C;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

@media (min-width: 1024px) {
    .hamburger-menu {
        display: none;
    }
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: #334155;
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Menu Drawer */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background-color: #FFFFFF;
        border-left: 1px solid rgba(15, 23, 42, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1005;
        transition: var(--transition-normal);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .nav-container {
        padding: 0 16px;
        padding-top: 8px;
        padding-bottom: 8px;
        border-radius: 30px;
    }

    .nav-actions {
        gap: 12px;
    }

    .get-started-header {
        padding: 6px 12px;
        font-size: 13px;
    }


}

/* Small phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1 rem;
    }

    .hero-video {
        object-fit: revert !important;
    }

    .hero-description {
        margin-top: 48px;
    }
}

/* Phones */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1 rem;
    }

    .hero-video {
        object-fit: revert !important;
    }

    .hero-description {
        margin-top: 35px;
    }

    .slide-card {
        height: 250px !important;
    }

    .slide-card.active {
        height: 300px !important;
    }

    .slider-btn {
        width: 40px !important;
        height: 40px !important;
    }

    .partner-img {
        max-width: 92px !important;
    }

    .collage-container {
        display: none;
    }

    /* .feature-visual-wrapper {
        display: none !important;
    } */

    .bullet-text p {
        font-size: 1.25rem !important;
    }

    .problem-item p {
        font-size: 1.2rem !important;
    }

    .problem-item h3 {
        font-size: 1.4rem !important;
    }

    .hero-text-col {
        padding-top: 50px !important;
    }

    .features-list {
        order: 2;
    }

    .feature-preview-card {
        height: 350px !important;
    }

    .feature-visual-wrapper {
        min-height: 350px !important;
    }
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 90px 0 0 0;
    background: radial-gradient(ellipse at 70% 50%, #dbeafe 0%, rgba(248, 250, 249, 0) 55%),
        radial-gradient(ellipse at 30% 80%, #dcfce7 0%, rgba(248, 250, 249, 0) 50%),
        var(--color-bg-light);
    overflow: visible;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0;
    align-items: end;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: left;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: flex-start;
    padding-top: 100px;
    z-index: 5;
    /* max-width: 520px; */
    padding-left: 24px;
}

.hero-badge {
    background-color: #E0F2FE;
    color: #0369A1;
    border: 1.5px solid #93C5FD;
    padding: 8px 16px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    box-shadow: 0 4px 10px rgba(147, 197, 253, 0.15);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 100%;
}

.hero-description {
    font-size: 1.5rem;
    color: #1D1E1ECC;
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 25px;
}

.hero-cta-group .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(94.69deg, rgba(231, 128, 0, 0.9) -4.53%, rgba(255, 141, 0, 0.9) 102.45%);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 20px 30px;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    /* box-shadow: 0 4px 14px rgba(234, 88, 12, 0.25); */
    transition: all 0.3s ease;
}

.hero-cta-group .btn-primary svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.hero-cta-group .btn-primary:hover {
    background: linear-gradient(94.69deg, rgba(231, 128, 0, 0.9) -4.53%, rgba(255, 141, 0, 0.9) 102.45%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.35);
}

.hero-image-col {
    /* display: flex; */
    justify-content: flex-end;
    align-items: flex-end;
    align-self: end;
    z-index: 5;
    overflow: visible;
    padding-right: 30px;
}

.hero-illustration-wrapper {
    position: relative;
    width: 130%;
    max-width: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 10;
}

.hero-illustration-img {
    width: 100%;
    height: auto;
    border-radius: 0;
    display: block;
    object-fit: contain;
    position: relative;
    right: 180px;
}

.hero-illustration-img:hover {
    transform: none;
}

/* Responsiveness for Hero */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.5rem;
        max-width: 600px;
    }

    .hero-illustration-wrapper {
        width: 170%;
        right: 70px;
    }
}

@media (max-width:1440px) {
    .hero-illustration-img {
        right: 292px;
    }
}

@media (max-width: 1023px) {
    .hero-section {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 0;
        align-items: flex-start;
    }

    .hero-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 40px;
        text-align: center;
        padding: 0 24px;
    }

    .hero-text-col {
        align-items: center;
        max-width: 100%;
        padding-left: 0;
        padding-bottom: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
        max-width: 560px;
        font-weight: 500;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-image-col {
        justify-content: center;
    }

    .hero-illustration-wrapper {
        width: 100%;
        max-width: 500px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-image-col {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-image-col {
        display: none;
    }
}

/* ----------------------------------------------------
   PROBLEM SECTION
---------------------------------------------------- */
.problem-section {
    padding: 60px 24px;
    background: linear-gradient(180deg, #F0FAF6 0%, #FFFFFF 100%);
}

@media (min-width: 1024px) {
    .problem-section {
        padding: 60px 111px;
    }
}

.problem-section .container {
    width: 100%;
    max-width: 1290px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Section Header Gap */
.problem-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 0;
}

/* Problem Section Grid */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
    align-items: center;
}

@media (min-width: 1024px) {
    .problem-grid {
        grid-template-columns: 55fr 45fr;
        gap: 64px;
        /* height: 528.43px; */
    }
}

/* Collage Container Styles */
.collage-container {
    position: relative;
    width: 100%;
    height: 380px;
}

@media (min-width: 1024px) {
    .collage-container {
        height: 100%;
        max-width: 600px;
    }
}

.collage-card {
    position: absolute;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-bg-light-card);
}

.collage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.collage-img.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.card-large {
    width: 76%;
    height: 66%;
    top: 22%;
    left: 9%;
    z-index: 5;
    /* border: 4px solid var(--color-bg-light-card); */
}

.card-medium {
    width: 44%;
    height: 33%;
    top: 26px;
    right: 2%;
    z-index: 3;
    opacity: 0.75 !important;

    /* border: 3px solid var(--color-bg-light-card); */
}

.card-small {
    width: 41%;
    height: 30%;
    bottom: 19px;
    left: -9%;
    z-index: 4;
    opacity: 0.75 !important;
    /* border: 3px solid var(--color-bg-light-card); */
}

/* Problem Items */
.problem-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* gap 30px from Figma layout */
    position: relative;
    padding-left: 24px;
}

.problem-content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 15px;
    width: 11px;
    border-radius: 10px;
    background: #D9D9D982;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .problem-content {
        width: 627px;
        height: 100%;
        padding-top: 25px;
        padding-bottom: 17px;
        justify-content: space-between;
    }
}

.problem-item {
    position: relative;
    display: block;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 24px 28px;
    transition: var(--transition-normal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

.problem-item::after {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 11px;
    border-radius: 10px;
    background: transparent;
    transition: background 0.3s ease;
    z-index: 1;
}

.problem-item.active::after {
    background: #6BA3C080;
}

.problem-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}

.problem-icon-box {
    display: none;
}

.problem-item.active {
    border-top: 1px solid;
    border-image-source: linear-gradient(91.05deg, #AEFAEC 0.19%, #D5EAE6 99.1%);
    background: #ECF6FFCC;
    border-radius: 20px;
    box-shadow: 0px 4px 11.3px 0px #4A7FA538;
}

.problem-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    line-height: 1.35;
}

.problem-item p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.65;
    letter-spacing: 0.01em;
    max-width: 592px;
}

/* ----------------------------------------------------
   WHO WE SERVE SECTION
---------------------------------------------------- */
.serve-section {
    position: relative;
    padding: 100px 0;
    background-color: #081325;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .serve-section .container {
        max-width: 1290px;
        padding: 0;
    }
}

.serve-bg-accent {
    position: absolute;
    top: -20%;
    right: -20%;
    width: 500px;
    height: 500px;
    background-radius: 50%;
    background: radial-gradient(circle, rgba(0, 232, 198, 0.08) 0%, transparent 70%);
    z-index: 1;
}

.serve-badge {
    background-color: #0b252f;
    color: #34d399;
    border: 1px solid #165148;
}

/* Slider Track Layout */
.slider-outer-wrapper {
    position: relative;
    z-index: 5;
    margin-top: 48px;
    width: 100%;
    overflow: hidden;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    align-items: flex-start;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.slide-card {
    flex: 0 0 520px;
    width: 520px;
    height: 320px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: #0B1120;
    /* transform: scaleY(0.85); */
    transform-origin: top;
    opacity: 0.85;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.35s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@media (max-width: 767px) {
    .slide-card {
        flex: 0 0 85vw;
        width: 85vw;
        height: 380px;
        transform: scaleY(0.85);
    }
}

.slide-card.active {
    transform: scaleY(1);
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    height: 460px;
}


.slide-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.slide-card:hover .slide-bg-img {
    transform: scale(1.02);
}

.slide-content-overlay {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    max-width: 502px;
    background: rgba(0, 0, 0, 0.58);
    backdrop-filter: blur(21.9px);
    -webkit-backdrop-filter: blur(21.9px);
    border-radius: 12px;
    border: 1px solid rgba(52, 211, 153, 0.54);
    padding: 21px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    pointer-events: none;
}

.slide-card.active .slide-content-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.slide-quote-icon {
    display: flex;
    align-items: center;
    /* width: 39.61px; */
    height: 40px;
    margin-bottom: 4px;

    top: -16px;
    position: absolute;
}

.slide-content-overlay h3 {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.slide-content-overlay p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.25rem;
    line-height: 1.5;
    margin: 0;
}

/* Slider Controls styling */
.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 36px;
}

@media (max-width: 767px) {
    .slider-controls {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .slider-controls {
        margin-top: -126px;
        position: relative;
        z-index: 10;
    }
}

.slider-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.slider-btn:hover {
    background-color: #F8FAFC;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.slider-btn:active {
    transform: translateY(0);
}

/* ----------------------------------------------------
   FEATURES / INTERACTIVE PREVIEW SECTION
---------------------------------------------------- */
.features-section {
    padding: 60px 24px;
    background-color: #F0FAF6;
}

@media (min-width: 1024px) {
    .features-section {
        padding: 60px 111px;
        padding-bottom: 180px;
    }
}

.features-section .container {
    width: 100%;
    max-width: 1290px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Tabs list styling */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-tab {
    display: flex;
    gap: 24px;
    padding: 28px;
    border-radius: 16px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.45);
    /* slightly transparent white */
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition-normal);
}

.feature-tab.active {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    box-shadow: 0 12px 36px rgba(0, 74, 57, 0.08);
    /* soft green-tinted shadow */
    /* border-left: 4px solid var(--color-primary); */
}

.feature-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.tab-num {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.feature-tab.active .tab-num {
    color: black;
}

.tab-content h3 {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.tab-content p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mockup Previews wrapper */
.feature-visual-wrapper {
    position: relative;
    width: 100%;
    min-height: 486.87px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-preview-card {
    position: absolute;
    width: 100%;
    max-width: 550px;
    height: 486.87px;
    opacity: 0;
    transform: scale(0.95) translateY(15px);
    pointer-events: none;
    transition: var(--transition-normal);
    z-index: 1;
}

.feature-preview-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
    z-index: 5;
}

.feature-image-bg {
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
    pointer-events: none;
}

.feature-image-fg {
    position: relative;
    /* width: 100%;
    height: 100%; */
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    /* margin: -40px 0 0 0; */
}

/* ----------------------------------------------------
   PARTNERS STRIP SECTION
---------------------------------------------------- */
.partners-strip-section {
    padding: 24px 24px;
    background-color: #e9efec;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
}

.partners-strip-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.partners-strip-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 32px;
    width: 100%;
}

@media (min-width: 1024px) {
    .partners-strip-wrapper {
        justify-content: space-between;
        gap: 0;
    }
}

.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    transition: var(--transition-normal);
}

.partner-logo-item:hover {
    transform: translateY(-2px);
}

.partner-img {
    max-height: 100%;
    max-width: 130px;
    object-fit: contain;
}

/* ----------------------------------------------------
   DASHBOARD SECTION
---------------------------------------------------- */
.dashboard-section {
    padding: 60px 24px;
    background-color: var(--color-bg-dark);
}

@media (min-width: 1024px) {
    .dashboard-section {
        padding: 60px 111px;
    }
}

.dashboard-section .container {
    width: 100%;
    max-width: 1290px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.dashboard-badge {
    background-color: rgba(52, 211, 153, 0.1);
    color: rgba(52, 211, 153, 1);
    border: 1px solid rgba(52, 211, 153, 0.2);
}

/* Dashboard Image Container */
.dashboard-image-container {
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid rgba(52, 211, 153, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Dashboard Grid & Copy Container */
.dashboard-grid {
    align-items: center;
}

@media (min-width: 1024px) {
    .dashboard-grid {
        align-items: stretch;
    }

    .dashboard-copy {
        height: 100%;
    }
}

/* Bullet icon colors */
.bullet-icon-blue {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Information copy details */
.dashboard-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 36px;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .dashboard-bullets {
        /* width: 500px; */
        height: 100%;
        margin-top: 0;
        justify-content: space-between;
    }
}

.dashboard-bullets li {
    display: flex;
    gap: 16px;
}

.bullet-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(0, 232, 198, 0.1);
    color: var(--color-accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bullet-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-white);
    display: block;
    margin-bottom: 4px;
}

.bullet-text p {
    font-size: 1.75rem;
    color: var(--color-text-silver);
    line-height: 2.5rem;
}

/* ----------------------------------------------------
   ONBOARDING SECTION
---------------------------------------------------- */
.onboarding-section {
    padding: 60px 24px;
    background-color: #F0FAF6;
    position: relative;
}

@media (min-width: 1024px) {
    .onboarding-section {
        padding: 60px 111px;
    }
}

.onboarding-section .container {
    width: 100%;
    max-width: 1290px;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.onboarding-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--color-primary);
    flex-shrink: 0;
    line-height: 1;
    width: auto;
    height: auto;
    border: none;
    box-shadow: none;
}

.step-info h3 {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.step-info p {
    color: var(--color-text-black);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Onboarding Video Container styling */
.onboarding-video-container {
    width: 100%;
    max-width: 668px;
    aspect-ratio: 668 / 375;
    margin: 0 auto;
    border-radius: 16px;
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(232, 148, 58, 0.09), rgba(232, 148, 58, 0.09)),
        linear-gradient(180deg, rgba(52, 211, 153, 1) 0%, rgba(33, 111, 146, 1) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 24px 64px rgba(2, 132, 199, 0.25);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.onboarding-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 14px;
}

@media (max-width: 576px) {
    .onboarding-steps {
        order: 2;
    }

    .onboarding-video-container {
        order: 1;
    }
}

/*------------
How It Works Section
--------*/
.how-it-Work-pill {
    background-color: #061a2f;
    border: 1px solid;
    border-color: #0077CC;
    color: #0284C7;
}

/* ----------------------------------------------------
   CONTACT & FORM SECTION
---------------------------------------------------- */
.contact-section {
    padding: 60px 24px;
    background-color: rgba(241, 250, 255, 1);
}

@media (min-width: 1024px) {
    .contact-section {
        padding: 60px 111px;
    }
}

.contact-section .container {
    width: 100%;
    max-width: 1505px;
    padding: 0;
    margin: 0 auto;
}

/* Top divider line under header */
.contact-section .section-header {
    position: relative;
    padding-bottom: 32px;
    margin-bottom: 40px;
}

.contact-section .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1283px;
    height: 1px;
    background-color: rgba(2, 132, 199, 0.2);
}

/* Contact Info Heading */
.contact-info-heading {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 54px;
    color: var(--color-text-dark);
    margin-bottom: 24px;
}

/* Contact Details List */
.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 478px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 159, 28, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    display: block;
    margin-bottom: 2px;
}

.contact-detail-item p {
    color: var(--color-text-dark);
    font-size: 0.975rem;
    line-height: 1.5;
}

/* Contact Illustration (form-Layer_1 + form-Vector-line) */
.contact-illustration {
    position: relative;
    width: 100%;
    /* max-width: 420px; */
    height: 260px;
    margin-top: 16px;
}

.illustration-vector-line {
    position: absolute;
    top: 45px;
    right: -65px;
    width: 350px;
    opacity: 0.8;
    z-index: 1;
}

.illustration-layer {
    position: absolute;
    bottom: -60px;
    left: 10px;
    width: 600px;
    z-index: 2;
}

/* Lead Form card container styles */
.contact-form-wrapper {
    position: relative;
    width: 100%;
    max-width: 736px;
    background-color: rgba(255, 255, 255, 0.91);
    border-radius: 24px;
    padding: 24px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.17);
    backdrop-filter: blur(113.6px);
    -webkit-backdrop-filter: blur(113.6px);
    box-shadow: 0 4px 41.9px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition-normal);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid #CBD5E1;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.form-privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 4px;
}

.form-privacy-note svg {
    flex-shrink: 0;
}

/* Form states (Success UI card) */
.form-success-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    background-color: var(--color-bg-light-card);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: var(--transition-normal);
    z-index: 10;
}

.form-success-card.active {
    opacity: 1;
    pointer-events: all;
    transform: scale(1);
}

.success-icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(0, 232, 198, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.form-success-card h3 {
    font-size: 1.75rem;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.form-success-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

/* ----------------------------------------------------
   FOOTER
---------------------------------------------------- */
.main-footer {
    /* background-color: var(--color-bg-dark); */
    background-color: rgba(6, 16, 29, 1);
    color: #527f96;
    padding: 60px 0 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.main-footer .container {
    max-width: 1290px;
}

.footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr repeat(4, 1fr);
    }
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.brand-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #527f96;
    max-width: 220px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.social-links a {
    width: 34px;
    height: 34px;
    border-radius: 25%;
    background-color: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #527f96;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-primary);
    color: #527f96;
    transform: translateY(-3px);
}

.footer-column h4 {
    color: var(--color-text-white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-column a {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 12px;
    color: #527f96;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-text-white);
    padding-left: 4px;
}

/* Compliance Badges Row */
.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 28px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.06); */
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 50px;
    /* border: 1px solid rgba(52, 211, 153, 0.35); */
    color: rgba(52, 211, 153, 1);
    background-color: rgba(52, 211, 153, 0.06);
    letter-spacing: 0.02em;
}

.compliance-badge svg {
    stroke: rgba(52, 211, 153, 1);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    gap: 16px;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }


}

@media (max-width:768px) {
    #header-cta {
        display: none;
    }
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #c0c3c6;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-policy-links a {
    font-size: 0.8rem;
    color: #c0c3c6;
    transition: var(--transition-fast);
}

.footer-policy-links a:hover {
    color: var(--color-text-white);
}