/* ============================================
   REVERTO - AI Business Development Landing Page
   Pixel-Perfect CSS Matching Figma Design
   ============================================ */

/* CSS Variables */
:root {
    /* Colors from Figma */
    --bg-primary: #0f0e0d;
    --bg-card: #0d0d0c;
    --bg-alt: #121211;
    --text-white: #ffffff;
    --text-soft: #f5f5f5;
    --text-subtitle: #717680;
    --text-caption: #a4a7ae;
    --text-body: #414651;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-color-strong: rgba(255, 255, 255, 0.2);
    --accent-green: #AFF79D;
    --accent-blue: #2b7fff;
    --accent-orange: #ff6900;
    --accent-purple: #ad46ff;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1640px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    margin: 0;
}

p {
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container Override */
.container {
    max-width: var(--container-max);
    padding-left: 24px;
    padding-right: 24px;
}

/* ============================================
   HEADER / NAVIGATION - Pixel Perfect Figma Match
   ============================================ */
.reverto-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

/* .reverto-header.scrolled {
    background: rgba(15, 14, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
} */

.reverto-header.scrolled {
    background: rgb(15 14 13 / 57%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: var(--container-max);
    margin: 0 auto;
    border-radius: 100px;
}

.header-container {
    width: 100%;
    padding: 0 24px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-radius: 16px;
}

/* Logo - 32px Bold */
.header-logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-soft);
    line-height: 1;
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.header-logo:hover {
    color: var(--text-white);
}

/* Navigation - Center */
.header-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-item-wrapper {
    position: relative;
}

.nav-link-custom {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    padding: 8px 0;
    line-height: 1;
    transition: color 0.2s ease;
}

.nav-link-custom span {
    line-height: normal;
}

.nav-link-custom:hover {
    color: var(--text-white);
}

.nav-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-link-custom:hover .nav-arrow {
    opacity: 1;
}

/* Header Actions - Right Side */
.header-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}

/* Sign In Button - Text only */
.btn-signin {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 36px;
    line-height: normal;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.btn-signin:hover {
    color: var(--text-white);
}

/* Talk To Us Button - White Background */
.btn-talk {
    font-size: 18px;
    font-weight: 500;
    color: #080a0d;
    background-color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 36px;
    line-height: normal;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-talk:hover {
    background-color: #f0f0f0;
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background-color: var(--text-soft);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 14, 13, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 40px;
}

.mobile-nav-link {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--text-white);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}


.btn-primary-custom {
    background: var(--text-white);
    color: #080a0d !important;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 36px;
    border: none;
    text-transform: capitalize;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.btn-primary-custom:hover {
    background: var(--text-soft);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-primary-custom:active {
    transform: translateY(-1px) scale(1);
    transition-duration: 0.15s;
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-white) !important;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 36px;
    border: 1px solid var(--border-color);
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-color-strong);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}

.btn-outline-custom:active {
    transform: translateY(0);
    transition-duration: 0.15s;
}

.btn-outline-custom svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
    background-color: var(--bg-primary);
}

/* Video Banner Wrapper */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2222px;
    height: 1102px;
    max-width: none;
    z-index: 0;
    pointer-events: none;
}

/* Video Element */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Dark Overlay on Video */
.hero-video-overlay {
    position: absolute;
    inset: 0;
    /* background-color: rgba(0, 0, 0, 0.2); */
    z-index: 1;
}

/* Gradient Overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(17, 25, 44, 0.08) 0%, 
        rgba(14, 15, 20, 0.08) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Bottom Fade to Background */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, 
        transparent 0%,
        rgba(15, 14, 13, 0.4) 30%,
        rgba(15, 14, 13, 0.8) 60%,
        var(--bg-primary) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Side Vignette Effect */
/* .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, 
        transparent 0%, 
        transparent 30%,
        rgba(15, 14, 13, 0.3) 60%,
        rgba(15, 14, 13, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
} */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, 
        transparent 0%, 
        rgba(15, 14, 13, 0.4) 100%
    );
    z-index: 2;
    pointer-events: none;
}


.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 120px;
    text-align: center;
}

.hero-title {
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 300;
    line-height: 1.1;
    max-width: 1134px;
    margin: 0 auto 24px;
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--text-white);
    max-width: 1032px;
    margin: 0 auto 40px;
    text-transform: capitalize;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Banner */
.trust-banner {
    position: relative;
    z-index: 10;
    padding: 80px 24px 40px;
    text-align: center;
}

.trust-text {
    font-size: 20px;
    color: var(--text-subtitle);
    margin-bottom: 32px;
    text-transform: capitalize;
}

/* Marquee Container */
.logos-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

/* Marquee Track */
.logos-marquee {
    display: flex;
    gap: 67px;
    align-items: center;
    opacity: 0.4;
    width: max-content;
    animation: marquee 30s linear infinite;
}

/* Pause on hover */
.logos-marquee-wrapper:hover .logos-marquee {
    animation-play-state: paused;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-item svg {
    height: 100%;
    width: auto;
}

.company-logo {
    display: block;
    height: 40px;
    width: 155px;

}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 50px 0;
}

.stats-card {
    background: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    padding: 36px 142px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.stats-headline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-headline {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    line-height: 32px;
    color: var(--text-white);
    white-space: nowrap;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 200px;
    align-items: stretch;
    width: 100%;
    overflow: hidden;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}

.stat-label {
    font-size: 16px;
    font-weight: 400;
    color: #717680;
    text-transform: uppercase;
    line-height: 24px;
    text-align: center;
    white-space: nowrap;
}

.stat-value {
    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
    white-space: nowrap;
}

.stat-prefix,
.stat-suffix,
.stat-range {
    font-size: 36px;
    font-weight: 400;
    line-height: 36px;
    color: var(--text-white);
}

.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

.stat-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}


/* ============================================
   AGENTS SECTION
   ============================================ */
/* ============================================
   AGENTS SECTION - Tabbed Interface
   ============================================ */
.agents-section {
    padding: var(--section-padding);
}

/* Section Header */
.agents-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 57px;
}

.agents-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--text-white);
    text-transform: capitalize;
    line-height: 1.1;
}

.agents-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #717680;
    line-height: 32px;
}

/* Tabs Wrapper */
.agents-tabs-wrapper {
    width: 100%;
}

/* Tabs Navigation */
.agents-tabs {
    display: flex;
    width: 100%;
}

.agent-tab {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-right: -1px;
    padding: 24px 32px;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.agent-tab:first-child {
    width: 410.5px;
    flex: none;
}

.agent-tab:hover {
    background: rgba(255, 255, 255, 0.02);
}

.agent-tab.active {
    background: rgba(255, 255, 255, 0.02);
}

.tab-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tab-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.tab-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 32px;
    white-space: nowrap;
}

.tab-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.tab-desc {
    font-size: 20px;
    font-weight: 400;
    color: #a4a7ae;
    line-height: 32px;
    max-width: 280px;
    margin: 0;
}

/* Tab Content Panels */
.agents-tab-content {
    display: flex;
    width: 100%;
}

.tab-panel {
    display: none;
    width: 100%;
}

.tab-panel.active {
    display: flex;
}

/* Panel Text Side */
.panel-text {
    width: 821px;
    flex-shrink: 0;
    padding: 129px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-bottom-left-radius: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 689px;
    justify-content: center;
}

.panel-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 493px;
}

.panel-title {
    font-size: 32px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 32px;
    margin: 0;
}

.panel-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #414651;
    line-height: 32px;
    margin: 0;
}

/* Panel Features List */
.panel-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.panel-features li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 400;
    color: #717680;
    line-height: 32px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Panel CTA Button */
.panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    color: var(--text-white);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.3s ease;
    width: fit-content;
}

.panel-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-arrow {
    width: 24px;
    height: 24px;
}

/* Panel Image Side */
.panel-image {
    flex: 1;
    background: rgba(94, 94, 94, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: none;
    border-left: none;
    border-bottom-right-radius: 36px;
    min-height: 689px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.panel-image img {
    width: 100%;
    height: 462px;
    object-fit: cover;
    object-position: center;
}


/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
/* ============================================
   HOW IT WORKS SECTION - Accordion Style
   ============================================ */
.how-it-works-section {
    padding: var(--section-padding);
}

.how-it-works-card {
    background: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    overflow: hidden;
}

/* Section Header */
.how-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 50px 50px 0;
    margin-bottom: 50px;
}

.how-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--text-white);
    text-transform: capitalize;
    line-height: 1.1;
}

.how-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #717680;
    line-height: 32px;
}

/* Accordion Content Area */
.how-content {
    display: flex;
    width: 100%;
}

/* Left - Accordion */
.how-accordion {
    width: 821px;
    flex-shrink: 0;
    padding: 129px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-bottom: none;
    min-height: 689px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.accordion-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 733px;
}

/* Accordion Item */
.accordion-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Progress Bar */
.accordion-progress {
    height: 1px;
    position: relative;
    margin-bottom: 12px;
}

.progress-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 1px;
    width: 0;
    background: #aff79d;
    transition: width 5s linear;
}

.accordion-item.active .progress-fill {
    width: 100%;
}

/* Accordion Text */
.accordion-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    overflow: hidden;
}

.accordion-title {
    font-size: 24px;
    font-weight: 400;
    color: #a4a7ae;
    text-transform: capitalize;
    line-height: 32px;
    margin: 0;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.accordion-item.active .accordion-title {
    font-weight: 500;
    color: #414651;
}

.accordion-desc {
    font-size: 18px;
    font-weight: 400;
    color: #717680;
    line-height: 32px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}

.accordion-item.active .accordion-desc {
    max-height: 100px;
    opacity: 1;
    margin-top: 4px;
}

/* Right - Visual */
.how-visual {
    flex: 1;
    background: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: none;
    border-bottom: none;
    min-height: 689px;
    position: relative;
    overflow: hidden;
}

.visual-image {
    position: absolute;
    top: 53px;
    left: 0;
    width: 866px;
    height: 551px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.visual-image img {
    width: 113.15%;
    height: 100%;
    object-fit: cover;
    margin-left: -13.07%;
}

/* Stats Row */
.how-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 200px;
    height: 177px;
    padding: 0 50px;
    overflow: hidden;
}

.how-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 205px;
    height: 100%;
    overflow: hidden;
}

.how-stat-label {
    font-size: 16px;
    font-weight: 400;
    color: #717680;
    text-transform: uppercase;
    line-height: 24px;
    text-align: center;
}

.how-stat-value {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 36px;
}

.how-stat-divider {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}


/* ============================================
   PLATFORM SECTION
   ============================================ */
.platform-section {
    padding: var(--section-padding);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.platform-card {
    background: linear-gradient(180deg, #121212 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    /* display: flex;
    flex-direction: column; */
}

.platform-card.large {
    grid-column: span 2;
}

.platform-visual {
    flex: 1;
    min-height: 350px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.platform-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent 0%, #0e0e0d 100%);
    pointer-events: none;
}

.platform-info {
    padding: 23px;
    background: transparent;
}

.platform-info h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    line-height: 32px;
}

.platform-info p {
    font-size: 14px;
    color: var(--text-caption);
    line-height: 20px;
}

/* Activity Stream */
.activity-stream {
    background: rgba(5, 5, 5, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.stream-header {
    background: var(--bg-card);
    padding: 16px 21px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-item {
    display: flex;
    gap: 14px;
    padding: 16px;
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 10px;
}

.stream-avatar {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stream-avatar.orange {
    background: rgba(255, 105, 0, 0.2);
    color: #ff8904;
}

.stream-avatar.blue {
    background: rgba(98, 116, 142, 0.2);
    color: #90a1b9;
}

.stream-avatar.green {
    background: rgba(175, 247, 157, 0.2);
    color: var(--accent-green);
}

.stream-content {
    flex: 1;
}

.stream-title {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stream-meta {
    font-size: 12px;
    color: #d1d5dc;
    margin-bottom: 8px;
}

.stream-badge {
    display: inline-block;
    background: black;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
}

.stream-badge.gray {
    background: #314158;
    color: #cad5e2;
}

/* Cost Breakdown */
.cost-breakdown {
    background: rgba(5, 5, 5, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.cost-header {
    background: linear-gradient(167deg, rgba(0, 201, 80, 0.2) 0%, rgba(0, 188, 125, 0.1) 100%);
    border: 1px solid rgba(5, 223, 114, 0.4);
    border-radius: 13px;
    padding: 12px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cost-header span {
    font-size: 12px;
    font-weight: 700;
    color: #b9f8cf;
}

.cost-header strong {
    font-size: 30px;
    color: #7bf1a8;
}

.cost-total {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.cost-total span {
    font-size: 12px;
    font-weight: 700;
    color: #d1d5dc;
}

.cost-total strong {
    font-size: 20px;
}

.cost-bars {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
}

.cost-bar-item {
    margin-bottom: 12px;
}

.cost-bar-item:last-child {
    margin-bottom: 0;
}

.cost-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: #d1d5dc;
    margin-bottom: 6px;
}

.cost-label .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.cost-label .dot.purple { background: var(--accent-green); }
.cost-label .dot.blue { background: var(--accent-blue); }
.cost-label .dot.orange { background: var(--accent-orange); }

.cost-bar {
    height: 7px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.cost-fill {
    height: 100%;
    border-radius: 999px;
}

.cost-fill.purple { background: linear-gradient(90deg, #ad46ff, #c27aff); }
.cost-fill.blue { background: linear-gradient(90deg, #2b7fff, #51a2ff); }
.cost-fill.orange { background: linear-gradient(90deg, #ff6900, #ff8904); }

.cost-value {
    font-size: 12px;
    font-weight: 700;
    float: right;
    margin-top: -22px;
}

/* Conversion Funnel */
.conversion-funnel {
    background: rgba(5, 5, 5, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.funnel-header {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.funnel-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.funnel-icon {
    width: 33px;
    height: 33px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.funnel-icon.blue {
    background: rgba(43, 127, 255, 0.2);
    border: 1px solid rgba(81, 162, 255, 0.4);
}

.funnel-icon.green {
    background: rgba(0, 201, 80, 0.2);
    border: 1px solid rgba(5, 223, 114, 0.4);
}

.funnel-icon.purple {
    background: rgba(175, 247, 157, 0.2);
    border: 1px solid rgba(194, 122, 255, 0.4);
}

.funnel-text {
    flex: 1;
}

.funnel-text strong {
    display: block;
    font-size: 10px;
    font-weight: 700;
}

.funnel-text span {
    font-size: 8px;
    color: #99a1af;
}

.funnel-value {
    font-size: 21px;
    font-weight: 700;
}

.funnel-value.purple {
    color: #c27aff;
}

.funnel-connector {
    width: 3px;
    height: 17px;
    background: linear-gradient(180deg, #2b7fff 0%, #00c950 100%);
    border-radius: 999px;
    margin: 2px auto;
}

.funnel-footer {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.funnel-footer span {
    font-size: 10px;
    font-weight: 700;
    color: #d1d5dc;
}

.funnel-footer strong {
    font-size: 14px;
}

/* Responses List */
.responses-list {
    background: rgba(5, 5, 5, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.responses-header {
    background: var(--bg-card);
    padding: 16px 21px;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.response-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: #090909;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 10px;
}

.response-avatar {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(175, 247, 157, 0.2);
}

.response-content {
    flex: 1;
}

.response-content strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 2px;
}

.response-content span {
    display: block;
    font-size: 12px;
    color: #d1d5dc;
}

.response-content small {
    display: block;
    font-size: 11px;
    color: #99a1af;
    margin-top: 4px;
}

.response-time {
    font-size: 11px;
    color: #99a1af;
    white-space: nowrap;
}

/* ============================================
   USE CASES SECTION - Pixel Perfect
   ============================================ */
.use-cases-section {
    padding: var(--section-padding);
}

/* Section Header */
.use-cases-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 50px;
}

.use-cases-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--text-white);
    text-transform: capitalize;
    line-height: 1.1;
}

.use-cases-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #717680;
    line-height: 32px;
    max-width: 900px;
}

/* Use Cases Grid - Using Bootstrap row classes */

/* Use Case Card */
.use-case-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.use-case-main {
    background: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    height: 267px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, border-color, box-shadow;
}

/* Hover effect for collapsed cards */
.use-case-card[data-state="problem"] .use-case-main:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Expanded card styles */
.use-case-card[data-state="solution"] .use-case-main {
    background: #0d0d0c;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    height: auto;
}

/* Icon */
.use-case-icon {
    width: 62px;
    height: 62px;
    background: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    flex-shrink: 0;
}

.use-case-icon img {
    width: 32px;
    height: 32px;
}

/* Text Content */
.use-case-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    margin-top: 18px;
}

.use-case-title {
    font-size: 26px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 32px;
    margin: 0;
}

.use-case-content {
    display: flex;
    flex-direction: column;
}

.use-case-label {
    font-size: 22px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 32px;
}

.use-case-desc {
    font-size: 16px;
    font-weight: 400;
    color: #717680;
    line-height: 32px;
    margin: 0;
}

/* Toggle Button */
.use-case-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-top: auto;
    align-self: flex-end;
}

.toggle-text {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 32px;
}

.toggle-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

/* Arrow flipped when showing solution */
.use-case-card[data-state="solution"] .toggle-arrow {
    transform: scaleY(-1);
}

/* Outcome Panel - Hidden by default */
.use-case-outcome {
    background: #10100f;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 16px 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
    display: none;
}

/* Show outcome when expanded */
.use-case-card[data-state="solution"] .use-case-outcome {
    display: block;
}

.outcome-label {
    display: block;
    font-size: 22px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 32px;
}

.outcome-text {
    font-size: 16px;
    font-weight: 400;
    color: #d5d7da;
    line-height: 32px;
    margin: 0;
}

.outcome-text strong {
    font-weight: 700;
    color: #fff;
}


/* ============================================
   COMPARISON SECTION
   ============================================ */
/* ============================================
   COMPARISON SECTION - Pixel Perfect Figma Match
   ============================================ */
.comparison-section {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

.comparison-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.comparison-title {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 56px;
    line-height: normal;
    color: var(--text-white);
    text-transform: capitalize;
    margin: 0;
    white-space: normal;
}

.comparison-subtitle {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--text-subtitle);
    margin: 0;
    white-space: normal;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row.header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row.alt {
    background: #121211;
}

.comparison-row.last {
    border-bottom: none;
}

.comparison-cell {
    padding: 24px 10px;
    display: flex;
    align-items: center;
}

.comparison-row:not(.header) .comparison-cell {
    height: 84px;
}

.comparison-cell.feature {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 24px;
    line-height: normal;
    color: var(--text-white);
    white-space: normal;
}

.comparison-row.header .comparison-cell {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 32px;
    line-height: normal;
    color: var(--text-white);
    justify-content: center;
    white-space: nowrap;
}

.comparison-row.header .comparison-cell.feature {
    justify-content: flex-start;
}

.comparison-row:not(.header) .comparison-cell:not(.feature) {
    justify-content: center;
}

.comparison-cta {
    margin-top: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.comparison-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
    color: var(--text-white);
    text-transform: capitalize;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 36px;
    background: transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.comparison-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    text-decoration: none;
}

@keyframes lineDrawIn {
    from {
        opacity: 0;
        stroke-dashoffset: 100;
    }
    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

/* Central Hub */
.integration-hub {
    position: absolute;
    width: 258.018px;
    height: 258.018px;
    left: 686px;
    top: 97px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: scale(1);
}

.integration-hub:not(.animate-in) {
    opacity: 0;
    transform: scale(0.8);
}

.integration-hub.animate-in {
    animation: hubFadeIn 0.8s ease forwards;
}

@keyframes hubFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hub-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: hubGlow 3s ease-in-out infinite;
}

@keyframes hubGlow {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hub-text {
    position: relative;
    font-size: 48px;
    font-weight: 500;
    color: var(--text-white);
    text-align: center;
    z-index: 2;
}

/* Integration Nodes */
.integration-node {
    position: absolute;
    width: 148px;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 5;
}

.integration-node:not(.animate-in) {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
}

.integration-node.animate-in {
    animation: nodeFadeIn 0.6s ease forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes nodeFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


@keyframes floatNode {
    0%, 100% {
        transform: scale(1) translateY(0px);
    }
    50% {
        transform: scale(1) translateY(-10px);
    }
}

/* Specific Node Positions (from Figma) */
/* Top Row */
.node-hubspot { left: -5.1px; top: -2.1px; }
.node-gmail { left: 275.9px; top: -2.17px; }
.node-outlook { left: 1220px; top: 0; }
.node-zoom { left: 1492px; top: 0; }

/* Middle Row */
.node-salesforce { left: 72px; top: 274px; }
.node-google-workspace { left: 352px; top: 281px; }
.node-twilio { left: 1146px; top: 281px; }
.node-vainu { left: 1440px; top: 281px; }

/* Bottom Row */
.node-google-calendar { left: 519px; top: 436px; }
.node-slack { left: 977px; top: 436px; }


/* ============================================
   ORBIT TESTIMONIAL SECTION
   ============================================ */
.orbit-testimonial-section {
    padding: var(--section-padding);
    overflow: hidden;
}

.orbit-testimonial-wrapper {
    position: relative;
    width: 100%;
    max-width: 1930px;
    height: 950px;
    margin: 0 auto;
}

/* Testimonial Arc */
.testimonial-arc {
    position: absolute;
    width: 1930px;
    height: 857px;
    top: 93.21px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1;
}

.testimonial-arc img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
}

/* Orbit Icons Slider - Draggable area */
.orbit-icons-slider {
    position: absolute;
    width: 100%;
    height: 600px;
    top: 0;
    left: 0;
    z-index: 5;
    cursor: grab;
}

.orbit-icons-slider:active {
    cursor: grabbing;
}

/* Individual Orbit Icons */
.orbit-icon {
    position: absolute;
    width: 120px;
    height: 120px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.icon-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.05); */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.6s ease;
}

.orbit-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7) opacity(0.5);
    transition: all 0.6s ease;
}

/* Active Icon - Green Glow at Top Center */
.orbit-icon.active .icon-circle {
    background: rgba(175, 247, 157, 0.1);
    border: 2px solid rgba(175, 247, 157, 0.6);
    box-shadow: 0 0 20px rgba(175, 247, 157, 0.4),
                0 0 40px rgba(175, 247, 157, 0.2);
}

.orbit-icon.active img {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.1);
}

/* 5 Fixed Positions on Orbit (No duplicates) */
/* Position 1: Bottom Left */
.orbit-icon[data-position="1"] {
    left: 8%;
    top: 380px;
}

/* Position 2: Top Left */
.orbit-icon[data-position="2"] {
    left: 24%;
    top: 140px;
}

/* Position 3: Top Center (Default Active) */
.orbit-icon[data-position="3"] {
    left: 50%;
    top: 50px;
    transform: translateX(-50%);
}

/* Position 4: Top Right */
.orbit-icon[data-position="4"] {
    right: 24%;
    top: 140px;
}

/* Position 5: Bottom Right */
.orbit-icon[data-position="5"] {
    right: 8%;
    top: 380px;
}

/* Testimonial Content (Static - Changes on icon rotate) */
.orbit-testimonial-content {
    position: absolute;
    width: 777px;
    left: calc(50% - 0.5px);
    top: calc(50% + 207.71px);
    transform: translate(-50%, -50%);
    z-index: 20;
    pointer-events: none;
}

.orbit-testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.orbit-testimonial-card blockquote,
.orbit-testimonial-card .testimonial-text {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-white);
    text-align: center;
    line-height: 32px;
    text-transform: capitalize;
    margin: 0;
    padding: 0;
    border: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Fade effect for content changes */
.orbit-testimonial-card.changing .testimonial-text,
.orbit-testimonial-card.changing .author-name,
.orbit-testimonial-card.changing .author-title {
    opacity: 0;
    transform: translateY(-10px);
}

.orbit-testimonial-author {
    display: flex;
    align-items: center;
    gap: 24px;
}

.testimonial-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-transform: capitalize;
}

.author-details strong {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-white);
    line-height: normal;
}

.author-details span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-white);
    line-height: normal;
}

/* ============================================
   MOBILE TESTIMONIAL SLIDER
   ============================================ */
.testimonial-mobile-slider {
    display: none;
    padding: 40px 0;
}

.testimonial-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-card-mobile {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
}

.testimonial-logo-mobile {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: 20px;
}

.testimonial-logo-mobile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.testimonial-text-mobile {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-white);
    line-height: 32px;
    margin: 0 0 24px 0;
    text-align: center;
}

.testimonial-author-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.testimonial-avatar-mobile {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info-mobile {
    text-align: left;
}

.author-name-mobile {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 4px;
}

.author-title-mobile {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #717680;
    line-height: 1.2;
}

/* Slider Navigation */
.testimonial-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.slider-arrow {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.slider-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-green);
}

/* ============================================
   OLD TESTIMONIAL STYLES (Keep for reference)
   ============================================ */
.testimonial-section {
    padding: var(--section-padding);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 30px;
    border-radius: 16px;
    max-width: 777px;
    margin: 50px auto 0;
}

.testimonial-card blockquote {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    line-height: 32px;
    text-transform: capitalize;
    margin: 0 0 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #666 0%, #333 100%);
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: capitalize;
}

.author-info span {
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--section-padding);
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--text-white);
    text-transform: capitalize;
    line-height: normal;
}

/* Bootstrap Accordion Override */
.faq-accordion {
    max-width: 1641px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: #121211;
    border: 1px solid rgba(233, 234, 235, 0.1);
    border-radius: 16.4px;
    margin-bottom: 16px;
}

.faq-accordion-item:last-child {
    margin-bottom: 0;
}

/* Remove Bootstrap default styles */
.faq-accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 16.4px;
    border-top-right-radius: 16.4px;
}

.faq-accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 16.4px;
    border-bottom-left-radius: 16.4px;
}

.faq-accordion-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 24px;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-white);
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    box-shadow: none;
    position: relative;
}

.faq-accordion-button:hover {
    background: transparent;
    color: var(--text-white);
}

.faq-accordion-button:focus {
    box-shadow: none;
    background: transparent;
    border-color: transparent;
}

.faq-accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--text-white);
    box-shadow: none;
}

/* Remove default Bootstrap arrow */
.faq-accordion-button::after {
    display: none;
}

/* Custom Arrow */
.faq-arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    margin-left: 24px;
}

.faq-accordion-button:not(.collapsed) .faq-arrow {
    transform: rotate(270deg);
}

/* Accordion Body */
.faq-accordion-body {
    padding: 0 24px 32px 24px;
    font-size: 18px;
    font-weight: 400;
    color: #717680;
    line-height: 28px;
}

/* Bootstrap accordion collapse override */
.faq-accordion .accordion-collapse {
    background: transparent;
    border: none;
}


/* ============================================
   BIG TEXT SECTION
   ============================================ */
.big-text-section {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.big-text {
    font-size: clamp(150px, 26vw, 500px);
    font-weight: 500;
    color: var(--bg-alt);
    text-align: center;
    display: block;
    line-height: 1;
    text-transform: capitalize;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(18, 18, 17, 0.8);
    padding: 50px 107px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 43px;
}

.footer-brand h3 {
    font-size: 32px;
    font-weight: 700;
    text-transform: capitalize;
    color: var(--text-white);
    margin: 0;
    line-height: normal;
}

.footer-links {
    display: flex;
    gap: 43px;
    align-items: flex-end;
}

.footer-column {
    width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 500;
    color: #a4a7ae;
    margin-bottom: 21px;
    line-height: 27px;
    margin-top: 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 16px;
}

.footer-column a {
    font-size: 20px;
    font-weight: 400;
    color: #e9eaeb;
    line-height: 32px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-white);
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 43px 0;
    margin-top: 50px;
    padding-top: 32px;
    border-top: 1.333px solid rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a4a7ae;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--text-white);
    transform: translateY(-2px);
    text-decoration: none;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.copyright {
    font-size: 21.333px;
    color: #717680;
    line-height: 32px;
    margin: 0;
    font-weight: 400;
}

/* Navbar Toggler Custom Style */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}





