:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1e1e1e;
    --text-white: #ffffff;
    --text-gray: #a0a0a0;

    /* Branding Colors */
    --accent-pink: #EA64C6;
    --accent-cyan: #31DDF0;
    --accent-green: #20D12F;
    --accent-purple: #BA57E1;

    --font-main: 'Outfit', sans-serif;
    --transition-speed: 0.3s;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

.gradient-text {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(234, 100, 198, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 100, 198, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid var(--text-gray);
    color: var(--text-white);
    border-radius: 50px;
    font-weight: 600;
    margin-left: 20px;
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    z-index: 1000;
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
    height: 60px;
    width: auto;
}

.nav-links a {
    margin-left: 30px;
    font-size: 16px;
    color: var(--text-gray);
}

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

.nav-links .btn-primary {
    margin-left: 30px;
    padding: 10px 24px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 300;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%, rgba(49, 221, 240, 0.1) 0%, rgba(10, 10, 10, 1) 70%);
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    width: 400px;
    /* Increased size for better effect */
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    will-change: transform;
    /* Optimize for animation */
}

.hero-blob.purple {
    background: var(--accent-purple);
    top: 15%;
    left: 15%;
}

.hero-blob.green {
    background: var(--accent-green);
    bottom: 15%;
    right: 15%;
    animation-delay: -5s;
}

/* Float animation still useful for idle movement */
@keyframes float {
    0% {
        transform: translateY(0) scale(1);
    }

    100% {
        transform: translateY(-30px) scale(1.1);
    }
}

/* Visual Cards Grid (Redesigned About Section - Reverted to Visual Grid) */
.visual-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: -120px;
    /* Increased overlap */
    position: relative;
    z-index: 50;
    /* Ensure strictly above Hero */
}

main {
    position: relative;
    z-index: 10;
}

.hero {
    position: relative;
    z-index: 1;
    /* Lower than main/cards */
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.visual-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.visual-card {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    transition: transform var(--transition-speed);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.card-visual {
    height: 200px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(20, 20, 20, 0.8) 100%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.card-text {
    padding: 25px;
}

.card-text h3 {
    margin-bottom: 10px;
    color: var(--text-white);
}

.card-text p {
    font-size: 14px;
    color: var(--text-gray);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
}

.floating-badge.graph {
    color: var(--accent-green);
    border-color: rgba(32, 209, 47, 0.3);
}

.floating-badge.ai {
    color: var(--accent-pink);
    border-color: rgba(234, 100, 198, 0.3);
}

.floating-badge.audience {
    color: var(--accent-cyan);
    border-color: rgba(49, 221, 240, 0.3);
}

/* Visualization: Graph */
.graph-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 80px;
    padding-bottom: 10px;
}

.bar {
    width: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 0;
    animation: growBar 1.5s ease-out forwards;
}

.bar.highlight {
    background: var(--accent-green);
    box-shadow: 0 0 15px rgba(32, 209, 47, 0.4);
}

.card-visual:hover .bar {
    animation: none;
    height: var(--h);
    transition: height 0.5s ease;
}

/* Visualization: AI Interface */
.ai-interface {
    width: 180px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.dates-loader {
    width: 60%;
    height: 8px;
    background: var(--accent-pink);
    border-radius: 4px;
    opacity: 0.5;
}

.dots-loader {
    display: flex;
    gap: 4px;
}

.dots-loader span {
    width: 6px;
    height: 6px;
    background: var(--accent-pink);
    border-radius: 50%;
    animation: pulse 1s infinite alternate;
}

.dots-loader span:nth-child(2) {
    animation-delay: 0.2s;
}

.dots-loader span:nth-child(3) {
    animation-delay: 0.4s;
}

.input-mimic {
    height: 4px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
}

/* Visualization: Profile Group */
.profile-group {
    position: relative;
    width: 120px;
    height: 60px;
}

.profile-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--bg-card);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-size: cover;
    background-color: var(--bg-card-hover);
}

.p1 {
    left: 0;
    background-color: var(--accent-purple);
    z-index: 1;
    opacity: 0.6;
}

.p2 {
    left: 30px;
    background-color: var(--accent-cyan);
    z-index: 2;
    opacity: 0.8;
}

.p3 {
    left: 60px;
    background-color: var(--accent-pink);
    z-index: 3;
    box-shadow: 0 0 20px rgba(234, 100, 198, 0.4);
}

/* Animation Keyframes */
@keyframes growBar {
    0% {
        height: 0;
    }

    100% {
        height: var(--h);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(0.8);
    }

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

/* Services */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.service-card.one-time::before {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
}

.service-card.monthly::before {
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-purple));
}

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

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.setup {
    background: rgba(49, 221, 240, 0.1);
    color: var(--accent-cyan);
}

.badge.subscription {
    background: rgba(234, 100, 198, 0.1);
    color: var(--accent-pink);
}

.feature-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-gray);
}

.feature-list li::before {
    content: '•';
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
}

/* Custom SVG Icons */
.icon-gradient svg {
    stroke: url(#icon-gradient);
    /* We might need to start with stroke color and use mix-blend or id reference if valid, but simpler is setting color classes */
}

.icon-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    margin-right: 8px;
    vertical-align: middle;
}

.card-text h3 .icon-gradient {
    color: var(--accent-pink);
}

.visual-card:nth-child(2) .card-text h3 .icon-gradient {
    color: var(--accent-cyan);
}

.visual-card:nth-child(3) .card-text h3 .icon-gradient {
    color: var(--accent-purple);
}

.check-icon {
    width: 18px;
    height: 18px;
    stroke: var(--accent-green);
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Workflow Pipeline Redesign */
.workflow-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pipeline-track {
    position: absolute;
    top: 50%;
    left: 100px;
    right: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%);
    z-index: 0;
    overflow: hidden;
    border-radius: 4px;
}

.pipeline-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-pink), transparent);
    animation: pipelineFlow 3s linear infinite;
    filter: blur(4px);
}

.pipeline-step {
    position: relative;
    z-index: 2;
    width: 280px;
}

.pipeline-step.central-node {
    width: 320px;
}

.glass-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-stroke {
    stroke: var(--accent-cyan);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.central-node .gradient-stroke {
    stroke: var(--accent-pink);
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-white);
}

.step-content p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.active-pulse {
    border-color: rgba(234, 100, 198, 0.4);
    box-shadow: 0 0 30px rgba(234, 100, 198, 0.1);
}

.ai-brain-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--accent-pink);
    opacity: 0;
    animation: ringPulse 2s infinite;
}

/* Outcome Cards (Stacked for Step 3) */
.step-outcomes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outcome-card {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    margin: 0;
}

.outcome-card h4 {
    font-size: 14px;
    margin: 0;
}

.outcome-icon {
    font-size: 18px;
}

@keyframes pipelineFlow {
    0% {
        left: -100px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@media (max-width: 1000px) {
    .workflow-container {
        flex-direction: column;
        gap: 60px;
    }

    .pipeline-track {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
    }

    .pipeline-particles {
        width: 100%;
        height: 100px;
        top: -100px;
        background: linear-gradient(180deg, transparent, var(--accent-cyan), var(--accent-pink), transparent);
        animation: pipelineFlowVertical 3s linear infinite;
    }

    .pipeline-step {
        width: 100%;
        max-width: 350px;
    }
}

@keyframes pipelineFlowVertical {
    0% {
        top: -100px;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Data Hub Dashboard */
.data-dashboard-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 700px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    /* Enable 3D perspective */
}

/* Dashboard Mockup (Background) */
.dashboard-mockup {
    width: 800px;
    height: 500px;
    background: #1e1e1e;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.6);
    display: flex;
    overflow: hidden;
    position: absolute;
    transform: rotateX(5deg);
    /* Subtle tilt for depth */
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateX(0deg) scale(1.02);
}

.mockup-sidebar {
    width: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    gap: 20px;
}

.sidebar-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-pink));
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #000;
}

.sidebar-item {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: background 0.3s;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.sidebar-item.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(49, 221, 240, 0.3);
}

.sidebar-footer {
    margin-top: auto;
    margin-bottom: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mockup-header {
    height: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.header-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.action-btn {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.profile-pic {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.mockup-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

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

/* Metrics Row */
.metrics-row {
    justify-content: space-between;
}

.metric-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.metric-block .label {
    font-size: 12px;
    color: var(--text-gray);
}

.metric-block .value {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.metric-block .trend {
    font-size: 12px;
    font-weight: 600;
}

.metric-block .trend.up {
    color: var(--accent-green);
}

.metric-block .trend.down {
    color: #FF6B6B;
}

/* Graph Row */
.graph-row {
    height: 200px;
}

.graph-block {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.graph-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-gray);
}

.graph-legend {
    width: 60px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.graph-visual {
    flex: 1;
    position: relative;
    width: 100%;
}

/* Content Row */
.content-row {
    height: 100px;
}

.activity-list {
    flex: 2;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.activity-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.activity-item .bar {
    width: 30px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.activity-item .line {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.mini-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.donut {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent-purple);
    transform: rotate(45deg);
}

/* Pop-out Cards (Simpler & Scattered) */
.data-card {
    position: absolute;
    width: 260px;
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: default;
    z-index: 20;
}

.data-card:hover {
    transform: scale(1.1) translateY(-10px);
    border-color: rgba(255, 255, 255, 0.3);
    z-index: 30;
    background: rgba(30, 30, 30, 0.95);
}

.card-icon-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.d-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #121212;
}

.gradient-cyan {
    background: var(--accent-cyan);
}

.gradient-pink {
    background: var(--accent-pink);
}

.gradient-green {
    background: var(--accent-green);
}

.gradient-purple {
    background: var(--accent-purple);
}

.card-icon-header h3 {
    font-size: 15px;
    color: var(--text-white);
    margin: 0;
}

.card-detail p.highlight {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 13px;
}

.card-detail p.sub {
    color: var(--text-gray);
    font-size: 11px;
    line-height: 1.4;
}

/* Specific Positions - Straight & Overlapping Edges */

/* Top Center-Right */
.pop-top-right {
    top: 30px;
    /* Moved down significantly to overlap top edge */
    right: 150px;
    transform: none;
    /* Straight */
}

/* Middle Right (As requested) */
.pop-bottom-right {
    top: 50%;
    /* Center vertically */
    right: -60px;
    /* Sticking out right side */
    transform: translateY(-50%);
    /* Centering adjustment */
    bottom: auto;
    /* Override previous */
}

/* Correction for hover on centered item */
.pop-bottom-right:hover {
    transform: translateY(-60%);
}


/* Bottom Center-Left */
.pop-bottom-left {
    bottom: 30px;
    /* Moved up significantly to overlap bottom edge */
    left: 150px;
    transform: none;
}

/* Middle Left */
.pop-top-left {
    top: 50%;
    left: -60px;
    /* Sticking out left side */
    transform: translateY(-50%);
}

/* Hover correction for centered item */
.pop-top-left:hover {
    transform: translateY(-60%);
}

/* Removing connecting lines */
.data-card::before {
    display: none;
}

@media (max-width: 1000px) {
    .data-dashboard-container {
        flex-direction: column;
        height: auto;
        gap: 20px;
        padding: 40px 0;
        perspective: none;
    }

    .dashboard-mockup {
        display: none;
        /* Hide mockup on mobile for clarity */
    }

    .data-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 350px;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 20px;
}

.benefit-item .check {
    font-size: 24px;
}

/* Footer */
footer {
    background: var(--bg-card);
    padding: 80px 0 30px;
    margin-top: 100px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-brand h2 {
    color: var(--text-white);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-gray);
}

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cta {
    text-align: right;
}

.footer-cta h3 {
    margin-bottom: 25px;
    /* Added spacing */
    font-size: 24px;
    color: var(--text-white);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(30px, 30px);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

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

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

    .workflow-outcomes {
        flex-direction: column;
        align-items: center;
    }

    .branching-arrows {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

/* Benefits Showcase (Redesign) - Global Styles */
.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* Force 2x2 Grid */
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .benefits-showcase {
        grid-template-columns: 1fr;
        /* Stack on mobile */
    }
}

.benefit-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

/* ... (rest of benefit card styles) */

/* Creative Visual Break */
.creative-break {
    width: 100%;
    padding: 0;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    /* Optional: Parallax or masked effect */
}

.creative-visual-container {
    width: 100%;
    height: 400px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.creative-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.9) contrast(1.1);
}

.creative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0) 20%, rgba(10, 10, 10, 0) 80%, rgba(10, 10, 10, 1) 100%);
    pointer-events: none;
}


.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    background: rgba(30, 30, 30, 0.8);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.benefit-card:nth-child(2):hover {
    border-color: var(--accent-pink);
}

.benefit-card:nth-child(3):hover {
    border-color: var(--accent-purple);
}

.benefit-card:nth-child(4):hover {
    border-color: var(--accent-green);
}

.benefit-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
    transition: transform 0.4s ease;
}

.benefit-card:hover .benefit-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--text-white);
    margin: 0;
}

.benefit-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

/* Custom Icon Colors */
.icon-cyan {
    stroke: var(--accent-cyan);
}

.icon-pink {
    stroke: var(--accent-pink);
}

.icon-purple {
    stroke: var(--accent-purple);
}

.icon-green {
    stroke: var(--accent-green);
}