/* ============================================
   BRIEFL-E LANDING PAGE
   Marketing Website
   ============================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #1d1d1f;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

/* ============================================
   VIEW MANAGEMENT
   ============================================ */

.page-view {
    display: none;
}

.page-view.active {
    display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px) translateY(30px) scale(0.95);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px) translateY(30px) scale(0.95);
    transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* ============================================
   NAVIGATION
   ============================================ */

.landing-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(11, 83, 148, 0.1);
    transition: all 0.3s ease;
}

.landing-nav.scrolled {
    box-shadow: 0 4px 20px rgba(11, 83, 148, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1d1d1f;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #0B5394;
    stroke-width: 2;
    stroke-linecap: round;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1d1d1f;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0B5394;
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: #0B5394;
}

.nav-links .btn-signin {
    padding: 8px 18px;
    background: #0B5394;
    color: white;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links .btn-signin::after {
    display: none;
}

.nav-links .btn-signin:hover {
    background: #083d6b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 83, 148, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    margin-top: 64px;
    padding: 140px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, #f7f8fa 0%, #fafbfc 50%, #ffffff 100%);
    position: relative;
    overflow: visible;
    min-height: 90vh;
    padding-bottom: 100px;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.15;
    animation: subtleMove 45s linear infinite;
    mask-image: linear-gradient(to bottom, black 0%, black 85%, rgba(0, 0, 0, 0.9) 92%, rgba(0, 0, 0, 0.6) 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, rgba(0, 0, 0, 0.9) 92%, rgba(0, 0, 0, 0.6) 96%, transparent 100%);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(247, 248, 250, 0.2) 0%, rgba(255, 255, 255, 0.4) 70%, rgba(255, 255, 255, 0.9) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video-blue-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 83, 148, 0.18);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: overlay;
    mask-image: linear-gradient(to bottom, black 0%, black 85%, rgba(0, 0, 0, 0.9) 92%, rgba(0, 0, 0, 0.6) 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 85%, rgba(0, 0, 0, 0.9) 92%, rgba(0, 0, 0, 0.6) 96%, transparent 100%);
}

@keyframes subtleMove {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(-0.5%, -0.25%);
    }
    50% {
        transform: translate(-1%, -0.5%);
    }
    75% {
        transform: translate(-0.5%, -0.25%);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Multi-layer progressive blur transition - eliminates banding */
.blur-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 300px;
    pointer-events: none;
    background: transparent;
}

/* Layer 1: Lightest blur (2px) - Top of transition zone */
.blur-layer-1 {
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 5%,
        rgba(0, 0, 0, 0.15) 15%,
        rgba(0, 0, 0, 0.25) 25%,
        transparent 40%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 5%,
        rgba(0, 0, 0, 0.15) 15%,
        rgba(0, 0, 0, 0.25) 25%,
        transparent 40%,
        transparent 100%
    );
    z-index: 3;
}

/* Layer 2: Light blur (4px) - Upper-middle zone */
.blur-layer-2 {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 15%,
        rgba(0, 0, 0, 0.2) 25%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 60%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 15%,
        rgba(0, 0, 0, 0.2) 25%,
        rgba(0, 0, 0, 0.35) 35%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 60%,
        transparent 100%
    );
    z-index: 4;
}

/* Layer 3: Medium blur (6px) - Middle zone */
.blur-layer-3 {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 25%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.25) 65%,
        transparent 75%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 25%,
        rgba(0, 0, 0, 0.25) 35%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.25) 65%,
        transparent 75%,
        transparent 100%
    );
    z-index: 5;
}

/* Layer 4: Strong blur (8px) - Lower-middle zone */
.blur-layer-4 {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 35%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 65%,
        rgba(0, 0, 0, 0.3) 80%,
        transparent 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 35%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.5) 65%,
        rgba(0, 0, 0, 0.3) 80%,
        transparent 90%,
        transparent 100%
    );
    z-index: 6;
}

/* Layer 5: Strongest blur (10px) - Bottom zone with opacity fade */
.blur-layer-5 {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 40%,
        rgba(255, 255, 255, 0.3) 60%,
        rgba(255, 255, 255, 0.6) 75%,
        rgba(255, 255, 255, 0.85) 90%,
        rgba(255, 255, 255, 1) 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 65%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 1) 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.4) 65%,
        rgba(0, 0, 0, 0.7) 80%,
        rgba(0, 0, 0, 1) 100%
    );
    z-index: 7;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(1px)) {
    .blur-layer-1, .blur-layer-2, .blur-layer-3, .blur-layer-4 {
        display: none;
    }
    .blur-layer-5 {
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 1) 100%
        );
    }
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(11, 83, 148, 0.05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.accent-circle-1, .accent-circle-2 {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    z-index: 1;
}

.accent-circle-1 {
    top: 15%;
    right: 8%;
    background: radial-gradient(circle, rgba(11, 83, 148, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    filter: blur(40px);
}

.accent-circle-2 {
    top: 15%;
    left: 8%;
    background: radial-gradient(circle, rgba(30, 136, 229, 0.08) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
    filter: blur(40px);
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    color: #1d1d1f;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 24px;
    color: #6e6e73;
    margin-bottom: 40px;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    position: relative;
    z-index: 3;
}

.landing-btn-primary {
    padding: 16px 32px;
    background: #0B5394;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
}

.landing-btn-primary:hover {
    background: #083d6b;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(11, 83, 148, 0.4);
}

.landing-btn-secondary {
    padding: 16px 32px;
    background: transparent;
    color: #0B5394;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0B5394;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.landing-btn-secondary:hover {
    background: #0B5394;
    color: white;
    transform: translateY(-3px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 120px 24px;
    background: white;
    position: relative;
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.section-subtitle {
    text-align: center;
    font-size: 20px;
    color: #6e6e73;
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.feature-card {
    text-align: center;
    padding: 48px 32px;
    border-radius: 20px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    border: 1px solid rgba(11, 83, 148, 0.08);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 60%, rgba(11, 83, 148, 0.3) 100%);
    box-shadow: 0 16px 40px rgba(11, 83, 148, 0.12);
    border-color: rgba(11, 83, 148, 0.15);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #0B5394;
    fill: none;
    stroke-width: 1.5;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.6;
}

/* ============================================
   PRODUCT TOUR SECTION
   ============================================ */

.product-tour {
    padding: 0px 24px 120px;
    background: #ffffff;
    position: relative;
    z-index: 3;
}

.tour-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
}

.carousel-wrapper {
    position: relative;
    margin-top: 60px;
    padding-bottom: 80px;
}

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #f7f8fa 0%, #ffffff 100%);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 40px rgba(11, 83, 148, 0.08);
    transition: box-shadow 0.3s ease;
}

.carousel:hover {
    box-shadow: 0 15px 50px rgba(11, 83, 148, 0.12);
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-height: 480px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
    position: relative;
    animation: slideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.carousel-slide-content {
    padding: 80px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.carousel-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 32px;
    stroke: #0B5394;
    fill: none;
    stroke-width: 1.5;
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.carousel-slide.active .carousel-icon {
    animation: iconFloat 3s ease-in-out infinite;
}

.carousel-slide h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1f2937;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-subtitle {
    font-size: 18px;
    color: #0B5394;
    margin: 0 0 24px 0;
    font-weight: 600;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.carousel-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}

.carousel-controls {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
    justify-content: center;
    width: 100%;
}

.carousel-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: white;
    box-shadow: 0 4px 16px rgba(11, 83, 148, 0.25);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #083d6b 0%, #1565c0 100%);
    transform: scale(1.15) translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 83, 148, 0.35);
}

.carousel-btn:active {
    transform: scale(0.98);
}

.carousel-prev::before {
    content: "‹";
    font-size: 32px;
    font-weight: bold;
    margin-right: 2px;
}

.carousel-next::after {
    content: "›";
    font-size: 32px;
    font-weight: bold;
    margin-left: 2px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 0 0 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 11;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    background: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.indicator:hover {
    border-color: #0B5394;
    transform: scale(1.2);
    box-shadow: 0 4px 8px rgba(11, 83, 148, 0.15);
}

.indicator.active {
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    border-color: #0B5394;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(11, 83, 148, 0.3);
}

/* ============================================
   TRANSFORMATION ANIMATION SECTION
   Apple-inspired smooth motion
   ============================================ */

/* Apple-style easing curves */
:root {
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-float: cubic-bezier(0.33, 1, 0.68, 1);
}

.transformation-section {
    padding: 120px 24px 180px;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    min-height: 120vh;
}

.transformation-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.transformation-stage {
    position: relative;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Result - Static in Center */
.dashboard-result {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    max-width: 90%;
    z-index: 1;
    opacity: 0.12;
    will-change: opacity;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 20px 60px rgba(11, 83, 148, 0.12);
    border: 2px solid rgba(11, 83, 148, 0.15);
    will-change: box-shadow, border-color;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid #e5e7eb;
}

.dashboard-title {
    font-size: 26px;
    font-weight: 700;
    color: #1d1d1f;
}

.dashboard-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    will-change: opacity;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dashboard-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: #f7f8fa;
    border-radius: 8px;
    will-change: background-color;
}

.dashboard-label {
    font-size: 14px;
    font-weight: 600;
    color: #6e6e73;
}

.dashboard-value {
    font-size: 15px;
    font-weight: 700;
    color: #0B5394;
}

/* Document Elements */
.document {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(11, 83, 148, 0.25);
    border-radius: 12px;
    padding: 16px;
    width: 140px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(11, 83, 148, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0;
    z-index: 10;
    will-change: transform, opacity;
    transform-origin: center center;
}

.document svg {
    width: 36px;
    height: 36px;
    stroke: #0B5394;
    stroke-width: 1.5;
}

.document span {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    text-align: center;
}

/* Document initial positioning - well-distributed */
.doc-1 { top: 8%; left: 10%; }
.doc-2 { top: 5%; right: 15%; }
.doc-3 { top: 28%; left: 3%; }
.doc-4 { top: 25%; right: 6%; }
.doc-5 { top: 60%; left: 8%; }
.doc-6 { top: 62%; right: 10%; }
.doc-7 { bottom: 8%; left: 12%; }
.doc-8 { bottom: 10%; right: 16%; }

/* Top Label */
.transformation-label {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
}

.label-text {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    letter-spacing: -0.5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .transformation-section {
        padding: 80px 16px 120px;
        min-height: 100vh;
    }

    .transformation-stage {
        height: 600px;
    }

    .document {
        width: 110px;
        padding: 12px;
    }

    .document svg {
        width: 28px;
        height: 28px;
    }

    .document span {
        font-size: 10px;
    }

    /* Reposition for mobile */
    .doc-1 { top: 5%; left: 5%; }
    .doc-2 { top: 5%; right: 5%; }
    .doc-3 { top: 20%; left: 2%; }
    .doc-4 { top: 20%; right: 2%; }
    .doc-5 { top: 70%; left: 5%; }
    .doc-6 { top: 70%; right: 5%; }
    .doc-7 { bottom: 5%; left: 5%; }
    .doc-8 { bottom: 5%; right: 5%; }

    .dashboard-result {
        width: 95%;
    }

    .dashboard-mockup {
        padding: 24px;
    }

    .dashboard-title {
        font-size: 20px;
    }

    .dashboard-label {
        font-size: 12px;
    }

    .dashboard-value {
        font-size: 13px;
    }

    .label-text {
        font-size: 20px;
    }
}

/* ============================================
   DASHBOARD SHOWCASE SECTION
   ============================================ */

.dashboard-showcase {
    padding: 20px 24px 70px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 15%,
        rgba(255, 255, 255, 0.7) 30%,
        rgba(255, 255, 255, 1) 45%,
        #ffffff 100%
    );
    position: relative;
    z-index: 10;
    margin-top: -200px;
    overflow: visible;
}

.showcase-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: visible;
}

.showcase-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 83, 148, 0.15);
    padding: 20px;
    /* Animated gradient border using pseudo-element */
    margin: 0 auto;
    display: inline-block;
    width: 100%;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(
        90deg,
        #0B5394,
        #1E88E5,
        #00BCD4,
        #1E88E5,
        #0B5394,
        #1565C0,
        #0B5394
    );
    background-size: 400% 100%;
    z-index: 0;
    animation: gradientFlow 6s ease infinite;
    opacity: 1;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.showcase-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    background: white;
}

/* Show desktop image by default, hide mobile */
.showcase-image .dashboard-desktop {
    display: block;
}

.showcase-image .dashboard-mobile {
    display: none;
}

.showcase-image.reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.showcase-image.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ============================================
   INTEGRATIONS SECTION
   ============================================ */

/* Add blur overlay to dashboard showcase */
.dashboard-showcase {
    position: relative;
}

.integrations-section {
    padding: 20px 24px 100px;
    background: #ffffff;
    position: relative;
    margin-top: -10px;
    z-index: 5;
}

.integrations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.integrations-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.integrations-title {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    color: black;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-align: left;
    line-height: 1.2;
}

.integrations-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.integrations-carousel {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.integrations-track {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: scrollLogos 30s linear infinite;
    width: fit-content;
    padding: 10px 0;
}

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

.integration-logo {
    flex-shrink: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.integration-logo img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: opacity(0.6);
    transition: all 0.3s ease;
}

.integration-logo:hover img {
    filter: opacity(1);
    transform: scale(1.05);
}

/* Opacity fade overlay (replaces old solid fade) */
.integrations-carousel-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 11;
}

.integrations-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    height: 100%;
    background: linear-gradient(
        -90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.95) 20%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0.2) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
    z-index: 11;
}

/* Left-edge blur fade overlay - creates depth effect on entry */
.integrations-blur-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    pointer-events: none;
    z-index: 9;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

/* Left overlay - Layer 1: Light blur at outer edge */
.integrations-blur-overlay-left.layer-1 {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 15%;
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 25%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 25%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
}

/* Left overlay - Layer 2: Medium blur in middle zone */
.integrations-blur-overlay-left.layer-2 {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 12%;
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        transparent 80%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        transparent 80%
    );
}

/* Left overlay - Layer 3: Strong blur at core entry point */
.integrations-blur-overlay-left.layer-3 {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 9%;
    mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
}

/* Right-edge blur fade overlay - creates depth effect on exit */
.integrations-blur-overlay-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    height: 100%;
    pointer-events: none;
    z-index: 9;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

/* Right overlay - Layer 1: Light blur at outer edge */
.integrations-blur-overlay-right.layer-1 {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    width: 15%;
    mask-image: linear-gradient(
        -90deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 25%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        -90deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.3) 25%,
        rgba(0, 0, 0, 0.1) 60%,
        transparent 100%
    );
}

/* Right overlay - Layer 2: Medium blur in middle zone */
.integrations-blur-overlay-right.layer-2 {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 12%;
    mask-image: linear-gradient(
        -90deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        transparent 80%
    );
    -webkit-mask-image: linear-gradient(
        -90deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        transparent 80%
    );
}

/* Right overlay - Layer 3: Strong blur at core exit point */
.integrations-blur-overlay-right.layer-3 {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 9%;
    mask-image: linear-gradient(
        -90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        -90deg,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        transparent 100%
    );
}

/* Pause animation on hover */
.integrations-carousel:hover .integrations-track {
    animation-play-state: paused;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    padding: 120px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, white 15%);
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.how-it-works .section-title {
    margin-bottom: 16px;
}

.how-it-works .section-subtitle {
    margin-bottom: 80px;
}

.steps-cards-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 60px auto 0;
    position: relative;
}

.steps-cards-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #e5e7eb 10%, #e5e7eb 90%, transparent 100%);
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: auto;
    padding: 32px 28px;
    position: relative;
    z-index: 1;
}

.step-card:hover {
    box-shadow: 0 12px 32px rgba(11, 83, 148, 0.15);
    transform: translateY(-2px);
    border-color: #0B5394;
}

.step-card-header {
    margin-bottom: 0;
    position: absolute;
    top: -12px;
    left: 32px;
    z-index: 10;
}

.step-card-badge {
    display: inline-block;
    background: #e3f2fd;
    color: #0B5394;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.step-card:hover .step-card-badge {
    background: #0B5394;
    color: white;
}

.step-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #e3f2fd;
    border-radius: 16px;
    line-height: 1;
    transition: all 0.3s ease;
}

.icon-svg {
    width: 32px;
    height: 32px;
    color: #0B5394;
    transition: all 0.3s ease;
}

.step-card:hover .step-card-icon {
    background: #0B5394;
    transform: scale(1.05);
}

.step-card:hover .icon-svg {
    color: white;
}

.step-card-col-left {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    border-right: none;
    border-bottom: none;
    position: relative;
    z-index: 2;
}

.step-card-number {
    display: none;
}

.step-card-text-content {
    flex: 1;
    margin-bottom: 16px;
}

.step-card-text-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
    margin-top: 0;
}

.step-card-text-content p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.step-card-footer-link {
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.step-card-footer-link span {
    cursor: pointer;
    transition: all 0.2s ease;
}

.step-card:hover .step-card-footer-link {
    color: #0B5394;
}

.step-card:hover .step-card-footer-link span {
    transform: translateX(2px);
}

.step-card-col-right {
    display: none;
}

.step-card-thumbnail-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-card-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
}

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

/* Alternating card layout for visual interest */
.step-card:nth-child(2) {
    flex-direction: column;
}

.step-card:nth-child(2) .step-card-col-left {
    border-right: none;
    border-bottom: none;
}

/* ============================================
   VALUE PROPOSITION SECTION
   ============================================ */

.value-proposition-section {
    padding: 120px 24px;
    background: #f7f8fa;
}

.value-proposition-container {
    max-width: 1400px;
    margin: 0 auto;
}

.value-proposition-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.value-proposition-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.advisor-meeting-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 16px;
    display: block;
}

.value-proposition-metrics {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    height: 100%;
}

.metric-card {
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(11, 83, 148, 0.08);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(11, 83, 148, 0.15);
    border-color: #0B5394;
}

.metric-number {
    font-size: 52px;
    font-weight: 800;
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    line-height: 1;
}

.metric-label {
    font-size: 13px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.metric-description {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
}

/* Legacy benefits section styles (for reference/backup) */
.benefits {
    padding: 120px 24px;
    background: #f7f8fa;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.benefit-row:last-child {
    margin-bottom: 0;
}

.benefit-row.reverse {
    direction: rtl;
}

.benefit-row.reverse > * {
    direction: ltr;
}

.benefit-content h3 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.benefit-content p {
    font-size: 18px;
    color: #6e6e73;
    line-height: 1.8;
}

.benefit-visual {
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    border-radius: 24px;
    padding: 80px 40px;
    color: white;
    text-align: center;
    font-size: 16px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(11, 83, 148, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-visual .card {
    text-align: left;
    width: min(100%, 720px);
    margin: auto;
}

.benefit-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.benefit-visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(11, 83, 148, 0.4);
}

.benefit-content {
    transition: transform 0.4s ease;
}

.benefit-content:hover {
    transform: translateY(-4px);
}

/* Benefit Stats */
.benefit-stat {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 16px;
    color: #6e6e73;
    font-weight: 500;
}

/* Color Variations for Benefit Visuals */
.benefit-visual-teal {
    background: linear-gradient(135deg, #0d9488 0%, #06b6d4 100%);
    box-shadow: 0 20px 60px rgba(13, 148, 136, 0.3);
}

.benefit-visual-teal:hover {
    box-shadow: 0 30px 80px rgba(13, 148, 136, 0.4);
}

.benefit-visual-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
}

.benefit-visual-purple:hover {
    box-shadow: 0 30px 80px rgba(124, 58, 237, 0.4);
}

.benefit-visual-orange {
    background: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
    box-shadow: 0 20px 60px rgba(234, 88, 12, 0.3);
}

.benefit-visual-orange:hover {
    box-shadow: 0 30px 80px rgba(234, 88, 12, 0.4);
}


/* ============================================
   BLOG SECTION
   ============================================ */

.blog-section {
    padding: 120px 24px;
    background: white;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(11, 83, 148, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(11, 83, 148, 0.15);
    border-color: #0B5394;
}

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.05) 20px,
        rgba(255, 255, 255, 0.05) 40px
    );
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.blog-card-content {
    padding: 24px;
}

.blog-card-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: #eff6ff;
    color: #0B5394;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    font-size: 12px;
    color: #9ca3af;
}

.blog-card {
    cursor: pointer;
}

/* Article Modal */
.article-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 24px;
}

.article-modal-overlay.active {
    display: flex;
}

.article-modal {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-out;
    position: relative;
}

.article-modal-header {
    padding: 32px 32px 0;
}

.article-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6e6e73;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.article-modal-close:hover {
    background: #f3f4f6;
    color: #1d1d1f;
}

.article-modal-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    background: #eff6ff;
    color: #0B5394;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.article-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-modal-meta {
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 24px;
}

.article-modal-content {
    padding: 0 32px 32px;
}

.article-modal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.article-modal-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 28px 0 16px;
}

.article-modal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.article-modal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 8px;
}

.article-modal-footer {
    padding: 24px 32px;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.article-modal-footer a {
    display: inline-block;
    padding: 12px 24px;
    background: #0B5394;
    color: white;
    text-decoration: none;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.article-modal-footer a:hover {
    background: #083d6b;
    transform: translateY(-2px);
}

.blog-cta {
    text-align: center;
    margin-top: 48px;
}

.blog-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #0B5394;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #0B5394;
    transition: all 0.3s ease;
}

.blog-cta a:hover {
    background: #0B5394;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    padding: 120px 24px;
    background: #f7f8fa;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-mission {
    text-align: center;
    margin-bottom: 80px;
}

.about-mission p {
    font-size: 24px;
    color: #374151;
    line-height: 1.6;
    font-weight: 400;
}

.about-founder {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 80px;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(11, 83, 148, 0.3);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.founder-title {
    font-size: 16px;
    color: #0B5394;
    font-weight: 600;
    margin-bottom: 20px;
}

.founder-story {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.8;
}

.founder-story p {
    margin-bottom: 16px;
}

.founder-story p:last-child {
    margin-bottom: 0;
}

.about-why-now {
    margin-bottom: 80px;
}

.about-why-now h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 32px;
    text-align: center;
}

.why-now-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-now-item {
    background: white;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(11, 83, 148, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 83, 148, 0.08);
}

.why-now-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 83, 148, 0.12);
    border-color: rgba(11, 83, 148, 0.2);
}

.why-now-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-now-icon svg {
    width: 100%;
    height: 100%;
    stroke: #0B5394;
    fill: none;
    stroke-width: 1.5;
}

.why-now-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.why-now-item p {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.6;
}

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

.about-values h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 32px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-item {
    background: white;
    border-radius: 16px;
    padding: 40px 24px;
    box-shadow: 0 4px 16px rgba(11, 83, 148, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 83, 148, 0.08);
}

.value-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 83, 148, 0.12);
    border-color: rgba(11, 83, 148, 0.2);
}

.value-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: #0B5394;
    fill: none;
    stroke-width: 1.5;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: #6e6e73;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-founder {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-photo {
        margin: 0 auto;
    }
    .why-now-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    padding: 120px 24px;
    background: white;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 48px;
}

.contact-intro p {
    font-size: 18px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 4px 24px rgba(11, 83, 148, 0.08);
    border: 1px solid rgba(11, 83, 148, 0.1);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form-group.full-width {
    grid-column: 1 / -1;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
}

.contact-input,
.contact-textarea {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    outline: none;
    border-color: #0B5394;
    box-shadow: 0 0 0 3px rgba(11, 83, 148, 0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: #9ca3af;
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-submit {
    width: 100%;
    padding: 16px 32px;
    background: #0B5394;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-submit:hover {
    background: #083d6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 83, 148, 0.4);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.contact-info-item {
    text-align: center;
}

.contact-info-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-info-label {
    font-size: 12px;
    color: #6e6e73;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
}

.contact-info-value a {
    color: #0B5394;
    text-decoration: none;
}

.contact-info-value a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        gap: 32px;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    padding: 120px 24px;
    background: linear-gradient(135deg, #0B5394 0%, #1E88E5 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .landing-btn-primary {
    background: white;
    color: #0B5394;
}

.cta-section .landing-btn-primary:hover {
    background: #f7f8fa;
}

/* ============================================
   FOOTER
   ============================================ */

.landing-footer {
    padding: 60px 24px 40px;
    background: #1d1d1f;
    color: #f5f5f7;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #a1a1a6;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #a1a1a6;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}

.footer-links a:hover {
    color: #f5f5f7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: #a1a1a6;
    font-size: 13px;
}

/* ============================================
   DEMO REQUEST MODAL
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-out;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 16px;
    color: #6e6e73;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
}

.form-input {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: #0B5394;
    box-shadow: 0 0 0 3px rgba(11, 83, 148, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.modal-submit {
    padding: 16px 32px;
    background: #0B5394;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.modal-submit:hover {
    background: #083d6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 83, 148, 0.4);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6e6e73;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f3f4f6;
    color: #1d1d1f;
}

.modal-container {
    position: relative;
}

/* Sign In Modal Styles */
.signin-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    padding: 24px;
}

.signin-modal-overlay.active {
    display: flex;
}

.signin-modal-container {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 440px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.3s ease-out;
    position: relative;
}

.signin-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.signin-modal-title {
    font-size: 32px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.signin-modal-subtitle {
    font-size: 16px;
    color: #6e6e73;
}

.signin-modal-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.signin-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
}

.signin-form-input {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.signin-form-input:focus {
    outline: none;
    border-color: #0B5394;
    box-shadow: 0 0 0 3px rgba(11, 83, 148, 0.1);
}

.signin-form-input::placeholder {
    color: #9ca3af;
}

.signin-form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.signin-form-error {
    color: #ef4444;
    font-size: 13px;
    margin-top: -4px;
    display: none;
}

.signin-form-error.show {
    display: block;
}

.signin-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.signin-form-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signin-form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.signin-form-checkbox label {
    color: #6e6e73;
    cursor: pointer;
}

.signin-form-forgot {
    color: #0B5394;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.signin-form-forgot:hover {
    color: #083d6b;
    text-decoration: underline;
}

.signin-modal-submit {
    padding: 16px 32px;
    background: #0B5394;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.signin-modal-submit:hover {
    background: #083d6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 83, 148, 0.4);
}

.signin-modal-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    gap: 16px;
}

.signin-modal-divider::before,
.signin-modal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.signin-modal-divider span {
    color: #6e6e73;
    font-size: 14px;
}

.signin-modal-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #6e6e73;
}

.signin-modal-footer a {
    color: #0B5394;
    text-decoration: none;
    font-weight: 500;
}

.signin-modal-footer a:hover {
    text-decoration: underline;
}

.signin-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6e6e73;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.signin-modal-close:hover {
    background: #f3f4f6;
    color: #1d1d1f;
}

/* ============================================
   DEMO REQUEST FORM STYLES
   ============================================ */

.demo-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.demo-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.demo-modal-subtitle {
    font-size: 16px;
    color: #6e6e73;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.demo-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1d1f;
}

.demo-form-input {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.demo-form-input:focus {
    outline: none;
    border-color: #0B5394;
    box-shadow: 0 0 0 3px rgba(11, 83, 148, 0.1);
}

.demo-form-input::placeholder {
    color: #9ca3af;
}

.demo-form-submit {
    padding: 16px 32px;
    background: #0B5394;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.demo-form-submit:hover {
    background: #083d6b;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 83, 148, 0.4);
}

/* ============================================
   SUCCESS MODAL STYLES
   ============================================ */

.success-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    margin-top: 20px;
}

.success-modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #1d1d1f;
    margin: 0;
}

.success-modal-message {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   DASHBOARD CARD STYLES
   ============================================ */

.card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.card-header-icon {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.card-header-icon svg {
    width: 100%;
    height: 100%;
    stroke: #4A90E2;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.table th {
    text-align: left;
    padding: 8px;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
    font-size: 11px;
}

.table td {
    padding: 10px 8px;
    border-bottom: 1px solid #f3f4f6;
    color: #1a1a1a;
}

.task-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.task-row:hover {
    background-color: #f9fafb;
}

.task-action-cell {
    display: flex;
    align-items: center;
}

.task-checkbox {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    margin-right: 8px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.task-row:hover .task-checkbox {
    border-color: #4a90e2;
}

.task-checkbox.checked {
    background-color: #10b981;
    border-color: #10b981;
}

.task-checkbox.checked::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.task-status-cell {
    font-size: 11px;
    color: #6b7280;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.status-icon {
    font-size: 8px;
}

.status-progress {
    background: #fef3c7;
    color: #92400e;
}

.status-todo {
    background: #dbeafe;
    color: #1e40af;
}

.status-completed {
    background: #d1fae5;
    color: #065f46;
}

.question-card {
    padding: 12px;
    background: #f9fafb;
    border-radius: 6px;
    margin-bottom: 10px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.question-card:hover {
    background: #f3f4f6;
    border-color: #e5e7eb;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 8px;
}

.question-text {
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 6px;
}

.question-check-icon {
    color: #4a90e2;
    font-weight: bold;
}

.question-answer {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.6;
}

.confidence-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.confidence-high {
    background: #dbeafe;
    color: #1e40af;
}

.confidence-medium {
    background: #fef3c7;
    color: #92400e;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* ============================================
   INTEGRATIONS RESPONSIVE DESIGN
   ============================================ */

/* Tablet-specific fixes */
@media (min-width: 769px) and (max-width: 1024px) {
    .dashboard-showcase {
        padding: 60px 24px 70px;
        margin-top: -150px;
    }
}

/* Spacing fix for 768px and above */
@media (min-width: 768px) {
    .cta-buttons {
        margin-bottom: 140px;
    }
    
    .dashboard-showcase {
        padding-top: 80px;
    }
}

/* Blur layer fixes for tablet and small desktop to prevent covering buttons */
@media (max-width: 1280px) {
    .blur-layer {
        height: 200px;
    }
    
    .blur-layer-1,
    .blur-layer-2,
    .blur-layer-3,
    .blur-layer-4 {
        height: 140px;
    }
    
    .blur-layer-5 {
        height: 200px;
    }
}

@media (max-width: 1024px) {
    .integrations-title {
        font-size: 18px;
        font-style: italic;
        margin-bottom: 0;
    }
    
    .integrations-content {
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    
    .integrations-track {
        gap: 60px;
    }
    
    .integration-logo {
        height: 50px;
    }
    
    .integration-logo img {
        max-width: 140px;
    }
}

@media (max-width: 768px) {
    .integrations-section {
        padding: 60px 16px 80px;
        margin-top: -40px;
    }
    
    .integrations-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .integrations-title {
        font-size: 16px;
        font-style: italic;
        margin-bottom: 0;
        text-align: center;
    }
    
    .integrations-track {
        gap: 40px;
        animation-duration: 20s;
    }
    
    .integration-logo {
        height: 40px;
    }
    
    .integration-logo img {
        max-width: 100px;
    }
    
    .integrations-fade-overlay {
        width: 100px;
    }
}

/* Activity Card Responsive Styles (Triggers earlier for better tablet support) */
@media (max-width: 1200px) {
    .benefit-visual .card {
        padding: 16px;
        width: 100% !important;
    }

    .card-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 8px !important;
        font-size: 13px !important;
        height: auto !important;
    }
    
    .card-header span {
        white-space: normal !important;
        text-align: left !important;
    }

    .activity-card-columns {
        display: none !important;
    }

    .activity-task-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 12px !important;
        gap: 8px !important;
    }

    .activity-task-row > div {
        padding: 0 !important;
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        text-align: left !important;
    }

    .activity-task-action {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        font-weight: 600 !important;
        margin-bottom: 4px !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .activity-task-action span[style*="font-size"] {
        font-size: 14px !important;
    }

    .activity-task-status {
        padding-left: 28px !important;
        margin-bottom: 8px !important;
        width: 100% !important;
    }

    .activity-task-due {
        padding-left: 28px !important;
        text-align: left !important;
        width: 100% !important;
        margin-bottom: 8px !important;
    }

    .activity-category-header {
        padding: 8px 12px !important;
        font-size: 10px !important;
        flex-wrap: wrap !important;
    }

    .activity-trail {
        padding: 12px 12px 12px 40px !important;
    }
    
    .activity-trail > div > div {
        font-size: 12px !important;
    }

    .activity-arrow {
        display: none !important;
    }

    /* Fix container clipping issues */
    .benefit-visual {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important; /* Allow card to expand */
        display: block !important; /* Remove flex centering constraint */
        padding: 40px 20px !important;
    }
}

/* Value Proposition Responsive Design */
@media (max-width: 1024px) {
    .value-proposition-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .value-proposition-image {
        padding: 30px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .value-proposition-section {
        padding: 80px 16px;
    }
    
    .value-proposition-image {
        padding: 20px;
        border-radius: 16px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-card {
        padding: 24px;
        gap: 12px;
    }
    
    .metric-number {
        font-size: 44px;
    }
    
    .metric-label {
        font-size: 12px;
    }
    
    .metric-description {
        font-size: 14px;
    }
}

/* General Mobile Styles */
@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .benefit-row { grid-template-columns: 1fr; gap: 40px; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; }
    .section-title { font-size: 36px; }
    .nav-links { gap: 16px; }
    .nav-links a:not(.btn-signin) { display: none; }
    
    /* Reduce blur layer height on mobile to prevent covering buttons */
    .blur-layer {
        height: 150px;
    }
    
    .blur-layer-1,
    .blur-layer-2,
    .blur-layer-3,
    .blur-layer-4 {
        height: 100px;
    }
    
    .blur-layer-5 {
        height: 150px;
    }
    
    /* Dashboard Showcase Mobile Spacing */
    .dashboard-showcase {
        padding: 80px 8px 60px;
    }
    
    .showcase-container {
        padding: 0 8px;
    }
    
    .showcase-image {
        padding: 16px;
        border-radius: 24px;
        background: linear-gradient(
            135deg,
            rgba(11, 83, 148, 0.05) 0%,
            rgba(30, 136, 229, 0.05) 100%
        );
    }
    
    /* Hide desktop image, show mobile image */
    .showcase-image .dashboard-desktop {
        display: none;
    }
    
    .showcase-image .dashboard-mobile {
        display: block;
        border-radius: 20px;
    }
    
    .showcase-image img {
        transform: scale(1);
    }
    
    /* Product Tour Carousel Responsive */
    .carousel-slide-content {
        padding: 40px 24px;
        min-height: 500px;
    }
    .carousel-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 24px;
    }
    .carousel-slide h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .carousel-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .carousel-description {
        font-size: 14px;
    }
    .carousel-controls {
        bottom: 80px;
    }
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    .carousel-btn::before,
    .carousel-btn::after {
        font-size: 20px;
    }
    
    /* How It Works Responsive */
    /* Steps Card Carousel Responsive */
    .steps-cards-wrap {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .steps-cards-wrap::before {
        display: none;
    }
    .step-card {
        flex-direction: column;
        min-height: auto;
        border-radius: 16px;
        padding: 24px;
    }
    .step-card:nth-child(2) {
        flex-direction: column;
    }
    .step-card-col-left {
        border-right: none;
        border-left: none;
        border-bottom: none;
        padding: 0;
    }
    .step-card-col-right {
        display: none;
    }
    .step-card-header {
        top: -8px;
        left: 24px;
    }
    .step-card-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    .step-card-icon {
        font-size: 40px;
        margin-bottom: 12px;
        margin-top: 8px;
        width: 56px;
        height: 56px;
    }
    .icon-svg {
        width: 28px;
        height: 28px;
    }
    .step-card-text-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .step-card-text-content p {
        font-size: 14px;
    }
    .step-card-footer-link {
        font-size: 13px;
    }
    .step-card-thumbnail {
        opacity: 0.6;
    }
    .step-card:hover .step-card-thumbnail {
        opacity: 0.8;
    }
}

/* ============================================
   DASHBOARD CARDS SECTION
   ============================================ */

.dashboard-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    margin-top: 40px;
}

.dashboard-cards-row:last-of-type {
    grid-template-columns: repeat(2, 1fr);
}

.dashboard-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: #0B5394;
}

.dashboard-card.wide {
    grid-column: span 1;
}

.card-header-section {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.card-header-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 12px;
}

.card-content {
    padding: 24px;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.card-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Donut Chart */
.donut-chart {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
}

/* Donut Chart Image */
.donut-chart-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* Sentiment Chart Image */
.sentiment-chart-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* AI Recommendations Image */
.ai-recommendations-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* Anticipated Questions Image */
.anticipated-questions-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}

/* Calendar Image */
.calendar-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
}


.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-size: 13px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}

/* Sentiment Meter */
.sentiment-visual {
    gap: 20px;
}

.sentiment-meter {
    width: 100%;
}

.meter-bar {
    width: 100%;
    height: 24px;
    background: linear-gradient(to right, #ef4444, #f97316, #eab308, #84cc16);
    border-radius: 12px;
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
}

.meter-indicator {
    position: absolute;
    top: 50%;
    width: 3px;
    height: 32px;
    background: #1f2937;
    transform: translateY(-50%);
    border-radius: 2px;
}

.meter-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.sentiment-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sentiment-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.sentiment-btn.positive {
    color: #10b981;
    border-color: #10b981;
}

.sentiment-btn.neutral {
    color: #6b7280;
    border-color: #d1d5db;
}

.sentiment-btn.negative {
    color: #ef4444;
    border-color: #ef4444;
}

/* Alert Visual */
.alert-visual {
    width: 100%;
}

.alert-box {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
}

.alert-question {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 8px;
}

.alert-details {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* Predictions Visual */
.predictions-visual {
    width: 100%;
}

.predictions-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
}

.prediction-column {
    background: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.prediction-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 8px;
}

.prediction-subtitle {
    font-size: 13px;
    color: #0B5394;
    font-weight: 500;
}

/* Calendar Visual */
.calendar-visual {
    width: 100%;
}

.calendar-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 16px;
    text-align: center;
}

.calendar-container {
    width: 100%;
}

.calendar-header {
    text-align: center;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 13px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    margin-bottom: 10px;
}

.weekday {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}

.calendar-day {
    aspect-ratio: 1 / 1;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4px;
    position: relative;
    font-size: 12px;
    transition: all 0.2s ease;
}

.calendar-day:hover {
    background: #f3f4f6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.calendar-day.empty {
    background: transparent;
    border: none;
}

.day-num {
    font-size: 11px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.meeting-block {
    font-size: 8px;
    padding: 3px 4px;
    border-radius: 4px;
    color: #ffffff;
    text-align: center;
    line-height: 1.3;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-weight: 500;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
    margin-top: 2px;
    transition: all 0.2s ease;
}

.card-footer {
    background: #f0f8ff;
    border-top: 1px solid #e5e7eb;
    padding: 16px;
    margin-top: auto;
}

.card-footer h5 {
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px 0;
}

.card-footer p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dashboard-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-cards-row:last-of-type {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card.wide {
        grid-column: span 1;
    }
    
    .predictions-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   INTERACTIVE FEATURES SECTION
   ============================================ */

.features-interactive-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: center;
}

/* Feature list (left column) */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-button {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.feature-button:hover {
    border-color: #3B82F6;
    background: #ffffff;
}

.feature-button.active {
    background: #ffffff;
    border-color: #0071BC;
    box-shadow: 0 10px 25px rgba(7, 113, 188, 0.15);
}

.feature-icon-container {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #DBEAFE;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-container.active {
    background: #0071BC;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #0071BC;
    transition: color 0.3s ease;
    display: block;
    margin: auto;
}

.feature-button.active .feature-icon {
    color: #ffffff;
}

.feature-button-content {
    flex: 1;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.feature-description {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.feature-button.active .feature-description {
    max-height: 100px;
    opacity: 1;
}

/* Demo preview container (right column) */
.demo-preview-container {
    position: relative;
}

.demo-preview-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #ffffff 100%);
    border-radius: 16px;
    transform: rotate(1deg);
    z-index: 0;
}

.demo-preview-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(11, 83, 148, 0.1);
    border: 1px solid #e5e7eb;
    z-index: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.demo-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e7eb;
}

.demo-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.demo-subtitle {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

#demoContent {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Demo component styling */
.demo-portfolio,
.demo-calendar,
.demo-questions,
.demo-sentiment,
.demo-recommendations,
.demo-security {
    width: 100%;
}

.demo-section-header {
    margin-bottom: 16px;
    text-align: center;
}

.demo-section-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 4px 0;
}

.demo-section-header p {
    font-size: 12px;
    color: #9ca3af;
    margin: 0;
}

/* Portfolio demo */
.demo-portfolio {
    text-align: center;
}

.demo-legend {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: #f9fafb;
    border-radius: 8px;
}

.legend-color {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-item > div {
    text-align: left;
}

.legend-label {
    display: block;
    font-size: 11px;
    color: #6b7280;
}

.legend-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

/* Calendar demo */
.calendar-grid {
    font-size: 13px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 12px;
    text-align: center;
}

.weekday {
    font-weight: 500;
    color: #6b7280;
    padding: 4px 0;
    font-size: 12px;
    letter-spacing: 0.3px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #f3f4f6;
    border-radius: 8px;
    color: #1f2937;
    font-size: 14px;
    font-weight: 400;
    position: relative;
    min-height: 65px;
    height: 65px;
    padding: 4px 2px;
    transition: all 0.2s ease;
    overflow: hidden;
}

.calendar-day:empty {
    background: transparent;
}

.calendar-day .day-number {
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 2px;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    line-height: 1.2;
}

.calendar-day.event-day {
    background: #DBEAFE;
    color: #1e40af;
    border-radius: 8px;
}

.calendar-day.event-day .day-number {
    color: #1f2937;
    font-weight: 500;
}

.meeting-info {
    display: flex;
    flex-direction: column;
    gap: 0px;
    width: 100%;
    text-align: center;
    flex: 1;
    justify-content: center;
    padding-top: 1px;
    min-height: 0;
    overflow: hidden;
}

.meeting-name {
    font-weight: 400;
    color: #1e40af;
    font-size: 10.8px;
    line-height: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.meeting-name .name-part {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meeting-aum {
    font-weight: 400;
    color: #1e40af;
    font-size: 9px;
    line-height: 1.1;
    margin-top: 0px;
    overflow: hidden;
}

.calendar-day.event {
    background: #0071BC;
    color: #ffffff;
    font-weight: 600;
}

/* Event days with tooltips */
.calendar-day.event-day {
    background: #0071BC;
    color: #ffffff;
    font-weight: 600;
    position: relative;
    cursor: pointer;
}

.day-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1f2937;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.day-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}

.calendar-day.event-day:hover .day-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.tooltip-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 2px;
}

.tooltip-aum {
    font-size: 11px;
    color: #9ca3af;
}

/* Calendar meetings list */
.calendar-meetings {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.meeting-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #0071BC;
}

.meeting-date {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    min-width: 40px;
}

.meeting-details {
    flex: 1;
}


/* Questions demo */
.questions-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.question-item {
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #0071BC;
}

.question-text {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.5;
}

.answer-text {
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

/* Sentiment demo */
.sentiment-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sentiment-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sentiment-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
}

.sentiment-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.sentiment-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Recommendations demo */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.recommendation-card {
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.rec-title {
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 6px 0;
}

.rec-detail {
    font-size: 11px;
    color: #6b7280;
    margin: 0;
}

/* Security demo */
.demo-security {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #0071BC;
}

.demo-security p {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .features-interactive-layout {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .dashboard-cards-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dashboard-cards-row:last-of-type {
        grid-template-columns: 1fr;
    }
    
    .card-content {
        min-height: 180px;
    }
    
    .predictions-columns {
        grid-template-columns: 1fr;
    }

    /* Interactive features responsive */
    .features-interactive-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .features-list {
        gap: 8px;
    }

    .feature-button {
        padding: 12px;
        gap: 12px;
    }

    .feature-icon-container {
        width: 36px;
        height: 36px;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-description {
        font-size: 13px;
    }

    .feature-button.active .feature-description {
        max-height: 80px;
    }

    .demo-preview-card {
        min-height: 250px;
        padding: 16px;
    }

    .recommendations-grid {
        grid-template-columns: 1fr;
    }

    .demo-legend {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ============================================
   REACT COMPONENTS STYLES
   ============================================ */

/* Sentiment Bar Animation */
.sentiment-indicator {
    transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}

/* Question Chevron Rotation */
.question-chevron {
    transition: transform 0.3s ease;
    display: inline-block;
}

.question-chevron.expanded {
    transform: rotate(180deg);
}

/* Recommendation Card Hover */
.recommendation-card {
    transition: all 0.3s ease;
}

.recommendation-card:hover {
    background: #f0f4f8 !important;
}

.recommendation-card:hover .rec-title {
    color: #0071BC;
}

/* Calendar Day Styles */
.calendar-day {
    position: relative;
    font-weight: 500;
    color: #1f2937;
    transition: all 0.2s ease;
}

.calendar-day.event-day {
    color: #ffffff;
    border-radius: 6px;
}

.calendar-day.event-day:hover {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.day-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 10;
    margin-bottom: 4px;
}

.calendar-day.event-day:hover .day-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-12px);
}

.tooltip-name {
    font-weight: 600;
    margin-bottom: 2px;
}

.tooltip-aum {
    font-size: 10px;
    opacity: 0.9;
}

/* Question Accordion */
.question-header {
    user-select: none;
}

.question-answer {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Demo Content Fade In */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.demo-content {
    animation: fadeIn 0.3s ease-in;
}

/* Recharts Container Customization */
.recharts-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.recharts-text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

/* Legend Item Styles */
.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
}

.legend-label {
    display: block;
    font-weight: 500;
    color: #6b7280;
    font-size: 12px;
}

.legend-value {
    display: block;
    font-weight: 600;
    color: #1f2937;
    font-size: 13px;
}

/* Recommendation Grid */
.recommendations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 768px) {
    .recommendations-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-day.event-day:hover .day-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(-8px);
    }
}

