html {
    scroll-behavior: smooth;
}
:root {
    /* Colors - Brand Palette */
    --brand-pink: #d81b60;
    --brand-purple: #8e24aa;
    --brand-gradient: linear-gradient(135deg, var(--brand-pink), var(--brand-purple));
    
    --primary: var(--brand-purple); 
    --primary-light: #ab47bc;
    
    /* Accent colors using brand hues */
    --accent: var(--brand-purple); 
    --accent-hover: var(--primary-light);
    
    --bg-main: #FAFAF9; 
    --bg-light: #FFFFFF;
    --bg-dark: #1C1917; 
    
    --text-main: #292524;
    --text-muted: #57534E;
    --text-light: #F5F5F4;
    
    --error: #EF4444;
    --success: #10B981;
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-editorial: 'Playfair Display', serif;
    
    /* Spacing & Utilities */
    --radius-sm: 0px;
    --radius-md: 0px;
    --radius-lg: 0px;
    --radius-pill: 0px;
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
* {
    border-radius: 0 !important;
}
body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1rem;
}
p { margin-bottom: 1rem; color: var(--text-muted); }
a { color: var(--primary); text-decoration: none; transition: 0.2s; }

.container { width: 100%; max-width: 1300px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); }
.bg-purple { background: var(--brand-gradient); }
.light-text, .light-text h2, .light-text p { color: var(--text-light); }
.text-error { color: var(--error); font-weight: 500; }
.text-success { color: var(--success); font-weight: 500; }

section { padding: 6rem 0; }
.section-header { margin-bottom: 4rem; }
.section-subtitle { font-size: 1.25rem; max-width: 600px; }
.section-header.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.section-subtitle.wide-subtitle { 
    max-width: 900px; 
    font-size: 1.25rem; 
    font-weight: 400; 
    font-family: var(--font-editorial);
    color: #4b5563; 
}
.light-heading {
    font-family: var(--font-editorial);
    font-weight: 500;
    font-size: 3rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
}
.highlight-wrapper {
    position: relative;
    display: inline-block;
    white-space: nowrap;
    z-index: 1;
    padding: 0 5px;
}
.highlight-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 140%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
    overflow: visible;
}
.highlight-svg path {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: drawCircle 0.8s ease-out forwards;
    animation-delay: 0.2s;
}
@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
    font-weight: 600;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
}
.btn-outline {
    border-color: var(--text-main);
    color: var(--text-main);
}
.btn-large { padding: 1rem 2rem; font-size: 1.125rem; }

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Recreated Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}
.icon-figure {
    width: 8px;
    height: 16px;
    background: white;
    border-radius: 10px 10px 0 0;
    position: relative;
    margin-top: 6px;
}
.icon-figure::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 1px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
}
.logo-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: white;
    letter-spacing: -0.5px;
}
.logo-subtitle {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 0.8rem;
    color: white;
    margin-top: -2px;
}
.navbar .logo-title, .navbar .logo-subtitle {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}
.nav-links a:not(.btn) {
    color: white;
    font-weight: 400;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.nav-links a:not(.btn):hover { color: var(--accent); }
.navbar .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Partner Marquee */
.partner-marquee-section {
    background: #ffffff;
    padding: 3.5rem 0 3rem;
    overflow: hidden;
}
.partner-marquee-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}
.partner-marquee-title span {
    font-weight: 700;
    color: var(--text-main);
    background: linear-gradient(90deg, transparent 0%, rgba(226, 232, 240, 0.5) 50%, transparent 100%);
    padding: 0 1rem;
    position: relative;
}
.partner-marquee-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    z-index: -1;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-content {
    display: flex;
    gap: 5rem;
    min-width: 100%;
    animation: scroll-marquee 25s linear infinite;
    align-items: center;
    padding: 0 2rem;
}
.marquee-logo-img {
    height: 50px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}
.marquee-logo-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08);
}
@keyframes scroll-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 1.5rem;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}
.hero-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.hero-title {
    font-size: clamp(3rem, 7vw, 6.5rem);
    font-weight: 300;
    color: white;
    line-height: 1;
    letter-spacing: -1.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    margin-bottom: 0;
    text-align: center;
}

.hero-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 0.5rem; /* Reduced so text rests on the line */
    padding-top: 3rem;
    position: relative;
    gap: 2rem;
}
/* Removed horizontal and vertical grid lines */

/* Bottom Left Card */
.hero-card {
    background: rgba(30,30,30,0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 340px;
    border: 1px solid rgba(255,255,255,0.1);
}
.hero-card-top {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-card-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.hero-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card-text {
    flex-grow: 1;
}
.hero-card-text p {
    color: white;
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 0;
    font-weight: 300;
}
.hero-card-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--accent);
    color: #ffffff;
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-pill);
    font-weight: 500;
    font-size: 0.8rem;
}
.hero-card-btn:hover {
    background: var(--accent-hover);
}
.btn-arrow {
    background: #ffffff;
    color: var(--accent);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Bottom Right Section */
.hero-bottom-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.5rem;
    max-width: 400px;
}
.hero-bottom-right p {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: 300;
}
.scroll-btn {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    flex-shrink: 0;
    font-size: 0.9rem;
    padding-bottom: 1px;
}
.scroll-btn:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

/* Persona Section (Who Are You?) */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.persona-card.modern-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}
.persona-card.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.persona-img-wrapper.square-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}
.persona-img-wrapper.square-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.persona-card.modern-card:hover .persona-img-wrapper.square-img img {
    transform: scale(1.05);
}
.persona-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}
.persona-card-content h3 {
    font-family: var(--font-editorial);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    min-height: auto;
}
.persona-card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.persona-card-content .persona-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: auto;
}
.persona-card-content .persona-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Flow Diagram Infographic */
.flow-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 600px;
    margin: 4rem auto 6rem;
}
.flow-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}
.flow-line-bg {
    fill: none;
    stroke: rgba(0,0,0,0.08);
    stroke-width: 4px;
    stroke-dasharray: 8 8;
}
.flow-line-anim {
    fill: none;
    stroke: var(--brand-purple);
    stroke-width: 4px;
    stroke-dasharray: 12 12;
    animation: flowData 1s linear infinite;
}
@keyframes flowData {
    to { stroke-dashoffset: -24; }
}

.flow-node {
    position: absolute;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 240px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    z-index: 10;
}
.flow-node:hover {
    transform: translate(-50%, -55%);
    border-color: var(--brand-purple);
    box-shadow: 0 10px 20px rgba(142, 36, 170, 0.15);
}
.flow-icon {
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: rgba(142, 36, 170, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(142, 36, 170, 0.1);
    color: var(--brand-purple);
    flex-shrink: 0;
}
.flow-text {
    flex-grow: 1;
}
.flow-node h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
    min-height: auto;
}
.flow-node p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.3;
}

/* Center Hub */
.flow-node.flow-hub {
    width: 280px;
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
    background: var(--bg-dark);
    border: 2px solid var(--brand-purple);
}
.flow-hub h3 { color: white; font-size: 1.2rem; }
.flow-hub p { color: rgba(255,255,255,0.8); }
.flow-hub .hub-icon {
    margin: 0 auto 1rem;
    width: 48px; height: 48px;
}

/* Bento Section */
.bento-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
}
.bento-grid {
    display: flex;
    gap: 1.5rem;
    align-items: stretch;
    height: 500px;
    margin-top: 3rem;
}
.bento-col-main {
    flex: 2;
    display: flex;
    flex-direction: column;
}
.bento-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.bento-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 36, 170, 0.15);
}
.bento-tall { flex: 1.3; }
.bento-short { flex: 0.7; }
.bento-metric {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--brand-purple);
    margin-bottom: 0.5rem;
    line-height: 1;
}
.bento-dark {
    background: var(--bg-dark);
    color: white;
}
.bento-dark p { color: rgba(255,255,255,0.8); }

/* Left Card: Chat UI */
.bento-chat-card {
    padding: 0;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bento-bg-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}
.bento-chat-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}
.chat-ui-container {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    width: 80%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
}
.chat-bubble {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}
.chat-send { justify-content: flex-end; }
.chat-avatar {
    width: 24px; height: 24px;
    background: #ccc;
    border-radius: 50%;
    flex-shrink: 0;
}
.brand-avatar { background: var(--brand-purple); }
.chat-text {
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.85rem;
    color: #333;
    max-width: 85%;
}
.chat-send .chat-text {
    background: rgba(142, 36, 170, 0.1);
    color: var(--brand-purple);
    border-bottom-right-radius: 4px;
}
.chat-receive .chat-text { border-bottom-left-radius: 4px; }
.chat-fade { opacity: 0.5; }

/* Partner Logos */
.partner-logos {
    display: flex;
    gap: -10px;
    margin: 1rem 0;
}
.partner-circle {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--brand-purple);
    margin-left: -10px;
}
.partner-circle:first-child { margin-left: 0; background: var(--brand-purple); color: white; }

/* Worker Card */
.bento-worker-card { padding: 0; }
.bento-worker-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.bento-worker-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    justify-content: center;
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}
.use-case-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: default;
}
.use-case-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(142, 36, 170, 0.2);
}
.use-case-icon {
    font-size: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.use-case-card:hover .use-case-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}
.use-case-content {
    position: relative;
    z-index: 2;
}
.use-case-content h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}
.use-case-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}
.use-case-card:hover .use-case-content p {
    color: rgba(255, 255, 255, 0.85);
}
.use-case-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(142, 36, 170, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}
.use-case-card:hover .use-case-glow {
    opacity: 1;
}
/* Highlight Amber (Community) */
.use-case-card.highlight-amber {
    background: rgba(245, 158, 11, 0.05);
    border-color: rgba(245, 158, 11, 0.2);
}
.use-case-card.highlight-amber .use-case-icon {
    border-color: rgba(245, 158, 11, 0.3);
    background: rgba(245, 158, 11, 0.1);
}
.use-case-card.highlight-amber .use-case-glow {
    background: radial-gradient(circle at 50% 0%, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
}
.use-case-card.highlight-amber:hover {
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 158, 11, 0.3);
}

/* Highlight Pink (Safeguarding) */
.use-case-card.highlight-pink {
    background: rgba(216, 27, 96, 0.05);
    border-color: rgba(216, 27, 96, 0.2);
}
.use-case-card.highlight-pink .use-case-icon {
    border-color: rgba(216, 27, 96, 0.3);
    background: rgba(216, 27, 96, 0.1);
}
.use-case-card.highlight-pink .use-case-glow {
    background: radial-gradient(circle at 50% 0%, rgba(216, 27, 96, 0.2) 0%, transparent 70%);
}
.use-case-card.highlight-pink:hover {
    border-color: rgba(216, 27, 96, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(216, 27, 96, 0.3);
}

/* Highlight Green (Education) */
.use-case-card.highlight-green {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}
.use-case-card.highlight-green .use-case-icon {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
}
.use-case-card.highlight-green .use-case-glow {
    background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
}
.use-case-card.highlight-green:hover {
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(16, 185, 129, 0.3);
}

/* Highlight Red (Emergency) */
.use-case-card.highlight-red {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}
.use-case-card.highlight-red .use-case-icon {
    border-color: rgba(239, 68, 68, 0.3);
    background: rgba(239, 68, 68, 0.1);
}
.use-case-card.highlight-red .use-case-glow {
    background: radial-gradient(circle at 50% 0%, rgba(239, 68, 68, 0.2) 0%, transparent 70%);
}
.use-case-card.highlight-red:hover {
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 30px rgba(239, 68, 68, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    border: none;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.pricing-card.popular-card {
    border: 2px solid var(--brand-purple);
    box-shadow: 0 10px 25px rgba(142, 36, 170, 0.1);
    transform: scale(1.02);
}
.pricing-card.popular-card:hover {
    transform: scale(1.02) translateY(-8px);
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing-header h3 {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 500;
}
.price {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.billing-cycle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.user-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
}
.pricing-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
    min-height: 3rem;
}
.features-heading {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 1rem;
    font-family: var(--font-sans);
}
.pricing-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-main);
}
.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.6;
}
.pricing-features .check {
    color: var(--success);
    font-weight: bold;
}
.pricing-features .cross {
    color: var(--error);
    font-weight: bold;
}
.pricing-btn {
    width: 100%;
    margin-top: auto;
}

/* Capabilities Split & Dashboard Mockup */
.capabilities-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.capabilities-text {
    padding-right: 2rem;
}

/* Mini Flow on Left */
.mini-flow {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}
.mini-flow::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: rgba(142, 36, 170, 0.2);
    z-index: 1;
}
.mini-node {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.mini-node:hover {
    transform: translateX(10px);
    border-color: var(--brand-purple);
}
.mini-icon {
    width: 48px;
    height: 48px;
    background: white;
    border: 2px solid var(--brand-purple);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(142, 36, 170, 0.1);
}
.mini-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
    color: var(--text-main);
}
.mini-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Dashboard Mockup on Right */
.dash-mockup {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: none;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.dash-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}
.dash-header {
    background: #f8fafc;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e2e8f0;
}
.dash-logo {
    font-weight: 700;
    color: var(--brand-purple);
    font-family: var(--font-display);
}
.dash-tabs {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.dash-tabs .active {
    color: var(--brand-purple);
    font-weight: 600;
}
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    background: #ffffff;
}
.metric-card {
    background: #f8fafc;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    border: none;
}
.metric-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-display);
}
.metric-trend {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.25rem;
}
.metric-trend.up { color: var(--success); }
.metric-trend.down { color: var(--error); }

.dash-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    padding: 0 1.5rem 1.5rem;
}
.dash-chart-panel h4, .dash-feed-panel h4 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.dash-chart {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    padding-top: 1rem;
    border-bottom: 1px solid #e2e8f0;
}
.dash-chart .bar {
    flex: 1;
    background: #e2e8f0;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease, background 0.3s ease;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
}
.dash-chart .bar:hover {
    background: var(--brand-pink);
}

@keyframes growBar {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.live-feed-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.feed-item {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border-left: 3px solid #cbd5e1;
    font-size: 0.85rem;
}
.feed-badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.feed-badge.pos { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.feed-badge.neg { background: rgba(239, 68, 68, 0.1); color: var(--error); }
.feed-badge.neu { background: rgba(148, 163, 184, 0.2); color: #475569; }

.feed-item p { margin-bottom: 0.25rem; color: var(--text-main); font-weight: 500; line-height: 1.3; }
.feed-item small { color: var(--text-muted); font-size: 0.75rem; }

.anim-slide-up {
    animation: slideUpFade 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }

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

/* Responsive updates for new dashboard */
@media (max-width: 992px) {
    .capabilities-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .capabilities-text {
        padding-right: 0;
    }
    .dash-mockup {
        transform: none !important;
        margin: 0 -1rem; /* allow it to stretch full width on mobile if needed, or just tight padding */
        border-radius: 0;
    }
    .dash-header {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    .dash-tabs {
        width: 100%;
        justify-content: center;
        order: 3;
        margin-top: 0.5rem;
    }
    .dash-metrics {
        grid-template-columns: 1fr 1fr;
    }
    .metric-card:last-child {
        grid-column: span 2;
    }
    .dash-body {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-main);
    padding: 6rem 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}
.faq-intro h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.4;
    margin-top: 0;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: none;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-sans);
}
.faq-question .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ddd;
    font-size: 1.2rem;
    color: #666;
    transition: all 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: var(--text-muted);
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}
.faq-item.active .faq-question .icon {
    border-color: var(--brand-purple);
    color: var(--brand-purple);
}

/* Contact Hero Section */
.contact-hero-section {
    padding: 0; /* Removed padding to make it touch the edges */
    background-color: var(--bg-main);
}
.contact-hero-card {
    position: relative;
    border-radius: 0; /* Sharp corners */
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}
.contact-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Use a dark purple-tinted gradient for the overlay to enhance text readability and match branding */
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(142, 36, 170, 0.65));
    z-index: 1;
}
.contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
}
.contact-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
}
.contact-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95); /* Explicitly set to white to override any global p styles */
    margin-bottom: 2.5rem;
    line-height: 1.6;
}
.contact-hero-btn {
    background: var(--brand-gradient);
    color: white;
    border: none;
    font-weight: 700;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(142, 36, 170, 0.4);
}
.contact-hero-btn:hover {
    transform: translateY(-3px);
    text-decoration: none;
    color: white;
    box-shadow: 0 6px 20px rgba(142, 36, 170, 0.6);
}

/* Responsive updates for new sections */
@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contact-content h2 {
        font-size: 2rem;
    }
}

/* Dashboard Live Demo Button */
.dash-demo-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-purple);
    background: rgba(142, 36, 170, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: all 0.2s ease;
}
.dash-demo-btn:hover {
    background: rgba(142, 36, 170, 0.2);
    text-decoration: none;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--error);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Testimonial Bento */
.bento-testimonial {
    background: var(--brand-gradient);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-text {
    font-family: var(--font-editorial);
    font-size: 1.35rem;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 1rem;
    color: white;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}
.testimonial-author strong { font-weight: 600; }
.testimonial-author span { opacity: 0.8; font-size: 0.8rem; }

/* Timeline Section (How it Works) */
.timeline-section {
    position: relative;
    padding: 6rem 0;
}
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}
/* The vertical connecting line */
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(142, 36, 170, 0.2);
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    margin-bottom: 6rem;
}
.timeline-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: var(--brand-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 0 0 6px var(--bg-main);
}

.step-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}
.step-content.reverse-layout {
    flex-direction: row-reverse;
}

.step-text {
    flex: 1;
    width: 50%;
    padding: 0 3rem;
}
.step-content:not(.reverse-layout) .step-text {
    text-align: right;
}
.step-content.reverse-layout .step-text {
    text-align: left;
}

.step-label {
    display: inline-block;
    color: var(--brand-purple);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.step-text h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}
.step-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-features {
    list-style: none;
    padding: 0;
}
.step-features li {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.step-visual {
    flex: 1;
    width: 50%;
    display: flex;
    justify-content: center;
}
.visual-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    min-width: 250px;
}
.visual-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}
.visual-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.visual-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline-container::before {
        left: 24px;
        transform: none;
    }
    .step-marker {
        left: 0;
        transform: none;
    }
    .step-content, .step-content.reverse-layout {
        flex-direction: column;
        gap: 2rem;
        padding-left: 5rem;
        text-align: left !important;
    }
    .step-text, .step-visual {
        width: 100%;
        padding: 0;
        text-align: left !important;
    }
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand { 
    flex: 1;
    min-width: 280px;
    max-width: 380px;
}
.footer .logo-title, .footer .logo-subtitle { color: white; }
.footer-mission {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.2s ease;
}
.footer-social a:hover {
    background: var(--brand-purple);
    transform: translateY(-2px);
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}
.link-group h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: white;
    font-size: 1.05rem;
}
.link-group a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}
.link-group a:hover { 
    color: white; 
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 992px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 4rem;
    }
    .flow-container {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    .flow-svg {
        display: none;
    }
    .flow-node {
        position: relative;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .flow-node:hover {
        transform: translateY(-5px) !important;
    }
    
    .bento-grid {
        flex-direction: column;
        height: auto;
    }
    .bento-col-main {
        min-height: 400px;
    }
    .bento-tall, .bento-short {
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero {
        min-height: 80vh;
        background-position: center 20%;
        padding-top: 80px;
    }
    .hero-title { font-size: 2.75rem; }
    .hero-card { position: relative; bottom: auto; left: auto; width: 100%; margin-top: 2rem; }
    .persona-grid { grid-template-columns: 1fr; }
}

/* Explore Page Specific Styles */
.explore-hero {
    padding-top: 150px;
    padding-bottom: 6rem;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.explore-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
}
.explore-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}
.explore-nav-pills {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.explore-pill {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid rgba(142, 36, 170, 0.2);
    border-radius: var(--radius-pill);
    color: var(--text-main);
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.explore-pill:hover {
    background: var(--brand-purple);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(142, 36, 170, 0.2);
}

.feature-detail-section {
    padding: 6rem 0;
}
.feature-split {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.feature-split.reverse {
    flex-direction: row-reverse;
}
.feature-text {
    flex: 1;
}
.feature-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(142, 36, 170, 0.1);
    color: var(--brand-purple);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.feature-badge.warning-badge {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}
.feature-badge.action-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}
.feature-badge.bg-white-transparent {
    background: rgba(255,255,255,0.2);
    color: white;
}
.feature-list {
    list-style: none;
    margin-top: 2rem;
}
.feature-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.feature-list .icon {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--brand-purple);
    border-radius: 50%;
    color: var(--brand-purple);
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-list strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}
.feature-image-wrapper {
    flex: 1;
    position: relative;
}
.feature-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
}
.floating-stat {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}
.floating-stat.bottom-left {
    right: auto;
    left: -20px;
}
.floating-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--brand-purple);
    font-weight: 700;
    line-height: 1;
}
.floating-stat .stat-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .feature-split, .feature-split.reverse {
        flex-direction: column;
        gap: 3rem;
    }
    .floating-stat {
        bottom: 10px;
        right: 10px;
    }
    .floating-stat.bottom-left {
        left: 10px;
    }
}

/* Interactive Core Features */
.core-features-interactive {
    padding: 6rem 0;
}
.features-gallery {
    display: flex;
    width: 100%;
    height: 600px;
    margin: 0;
    padding: 0;
}
.gallery-panel {
    position: relative;
    flex: 1;
    overflow: hidden;
}
.gallery-panel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
    z-index: 1;
}
.gallery-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
}
.gallery-content h3 {
    color: white;
    font-size: 1.8rem;
    font-family: var(--font-display);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
/* Flip container CSS */
.gallery-panel.flip-container {
    perspective: 1000px;
    cursor: pointer;
}
.gallery-panel.flip-container:hover .flipper {
    transform: rotateY(180deg);
}
.flipper {
    transition: transform 0.6s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
    height: 100%;
}
.front, .back {
    backface-visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.front {
    z-index: 2;
    transform: rotateY(0deg);
}
.back {
    transform: rotateY(180deg);
    background-color: var(--brand-purple);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}
.back-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}
.back-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}
@media (max-width: 991px) {
    .features-gallery {
        flex-direction: column;
        height: auto;
    }
    .gallery-panel {
        height: 250px;
        width: 100%;
    }
}

/* Case Study Badges and Benefits */
.persona-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: var(--brand-purple);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 10;
}
.persona-img-wrapper {
    position: relative;
}
.persona-benefits {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}
.persona-benefits li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.persona-benefits li .check {
    color: #10b981;
    font-weight: bold;
}
