/* Hero Section */
.hero {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #009dc0;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.badge i {
    width: 16px;
    height: 16px;
}

.cta-group {
    display: flex;
    gap: 16px;
}

/* Glass Cards (Hero Visuals) */
.hero-visuals {
    flex: 1;
    position: relative;
    height: 500px;
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    /* Optional hover effect: reduce the 3D tilt slightly on hover */
    filter: brightness(1.1);
}

.card-1 {
    top: 0;
    right: 20%;
    width: 240px;
    animation: float-card1 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.card-2 {
    top: 35%;
    left: 10%;
    width: 220px;
    animation: float-card2 7s ease-in-out infinite 1s;
    transform-style: preserve-3d;
}

.card-3 {
    bottom: 5%;
    right: 15%;
    width: 220px;
    animation: float-card3 8s ease-in-out infinite 2s;
    transform-style: preserve-3d;
}

@keyframes float-card1 {
    0% {
        transform: perspective(1000px) rotateX(10deg) rotateY(-15deg) rotateZ(3deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateX(10deg) rotateY(-15deg) rotateZ(3deg) translateY(-15px);
    }

    100% {
        transform: perspective(1000px) rotateX(10deg) rotateY(-15deg) rotateZ(3deg) translateY(0px);
    }
}

@keyframes float-card2 {
    0% {
        transform: perspective(1000px) rotateX(8deg) rotateY(15deg) rotateZ(-4deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateX(8deg) rotateY(15deg) rotateZ(-4deg) translateY(-15px);
    }

    100% {
        transform: perspective(1000px) rotateX(8deg) rotateY(15deg) rotateZ(-4deg) translateY(0px);
    }
}

@keyframes float-card3 {
    0% {
        transform: perspective(1000px) rotateX(15deg) rotateY(-10deg) rotateZ(6deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateX(15deg) rotateY(-10deg) rotateZ(6deg) translateY(-15px);
    }

    100% {
        transform: perspective(1000px) rotateX(15deg) rotateY(-10deg) rotateZ(6deg) translateY(0px);
    }
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.icon-green {
    background: var(--primary);
    color: #000;
    box-shadow: 0 0 20px rgba(196, 243, 74, 0.6);
}

.icon-blue {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.icon-purple {
    background: #a855f7;
    color: #fff;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.6);
}

.card-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 0.875rem;
    margin-bottom: 0;
    opacity: 0.7;
}

.card-chart {
    align-self: flex-end;
    margin-top: 8px;
}

/* Trusted By Section */
.trusted-by {
    text-align: center;
    padding: 40px 0;
    margin-top: auto;
}

.trusted-by p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.5;
    letter-spacing: 0.1em;
    margin: 0 auto 24px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-icon {
    height: 28px;
    width: auto;
    /* Make the simple-icon black SVG match the gray/slate color of the text */
    filter: invert(8%) sepia(17%) saturate(1478%) hue-rotate(185deg) brightness(97%) contrast(97%) opacity(0.9);
}

/* Services Section */
.services-section {
    padding: 100px 0 60px;
    position: relative;
}

/* Add a light messy blue gradient as requested */
.services-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -10%;
    right: -10%;
    bottom: -100px;
    background:
        radial-gradient(ellipse at top, #e0f2fe 0%, transparent 50%),
        radial-gradient(ellipse at bottom, #dbeafe 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
    filter: blur(60px);
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.services-header p {
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-dark);
    opacity: 0.7;
    max-width: 600px;
}

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

.service-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

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

.icon-solid {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.icon-solid i {
    width: 24px;
    height: 24px;
}

.bg-blue {
    background: #3b82f6;
}

.bg-purple {
    background: #a855f7;
}

.bg-green {
    background: #22c55e;
}

.bg-yellow {
    background: #eab308;
}

.bg-cyan {
    background: #06b6d4;
}

.bg-pink {
    background: #ec4899;
}

.bg-bright-blue {
    background: #0ea5e9;
}

.text-blue {
    color: #3b82f6;
}

.text-purple {
    color: #a855f7;
}

.text-green {
    color: #22c55e;
}

.text-yellow {
    color: #eab308;
}

.text-cyan {
    color: #06b6d4;
}

.text-pink {
    color: #ec4899;
}

.number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-bottom: 60px;
    /* Space for illustration */
}

.learn-more i {
    width: 16px;
    height: 16px;
}

/* Simplistic illustrations inside cards */
.card-illustration {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.mockup {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mockup.browser {
    width: 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
}

.m-header {
    height: 12px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 4px;
    gap: 2px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

.m-body {
    padding: 6px;
}

.m-img {
    height: 24px;
    background: #e2e8f0;
    border-radius: 4px;
    margin-bottom: 6px;
}

.m-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m-line {
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    width: 100%;
}

.m-line.short {
    width: 60%;
}

.ill-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.ill-badge i {
    width: 16px;
    height: 16px;
}

.mockup.phone {
    width: 45px;
    height: 70px;
    border-radius: 8px;
    padding: 4px;
}

.m-screen {
    background: #e2e8f0;
    height: 100%;
    border-radius: 4px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.m-box {
    background: white;
    border-radius: 2px;
    height: 12px;
}

.mockup.chart {
    width: 90px;
    height: 60px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    border: none;
    background: transparent;
    box-shadow: none;
}

.mockup.chart::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    z-index: -1;
}

.m-bars {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 30px;
    z-index: 1;
    opacity: 0.5;
    padding: 0 4px;
}

.m-bar {
    width: 12px;
    background: #e2e8f0;
    border-radius: 2px 2px 0 0;
}

.h-1 {
    height: 40%;
}

.h-2 {
    height: 60%;
}

.h-3 {
    height: 30%;
}

.h-4 {
    height: 80%;
}

.chart-line {
    position: absolute;
    width: 80px;
    height: 40px;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.mockup.flow {
    width: 90px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.m-node {
    background: #fff;
    border: 2px solid #eab308;
    border-radius: 4px;
}

.m-node.main {
    width: 40px;
    height: 20px;
}

.m-node.small {
    width: 24px;
    height: 16px;
}

.m-connector {
    width: 2px;
    height: 10px;
    background: #cbd5e1;
}

.m-branches {
    display: flex;
    gap: 12px;
    border-top: 2px solid #cbd5e1;
    padding-top: 6px;
    position: relative;
}

.m-branches::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 6px;
    background: #cbd5e1;
}

.mockup.design {
    width: 90px;
    height: 70px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-aa {
    font-weight: 700;
    font-size: 1.5rem;
    color: #06b6d4;
    margin-bottom: 8px;
    line-height: 1;
}

.m-colors {
    display: flex;
    gap: 4px;
}

.m-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.c1 {
    background: #06b6d4;
}

.c2 {
    background: #3b82f6;
}

.c3 {
    background: #a855f7;
}

.mockup.brand {
    width: 90px;
    height: 70px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m-lines-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.m-line-b {
    height: 6px;
    border-radius: 3px;
    background: #e2e8f0;
    width: 100%;
}

.m-line-b.pink {
    background: #ec4899;
    width: 60%;
}

/* CTA Banner */
.cta-banner {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 32px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.cta-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-banner-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-banner-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.7;
}

/* Minimal & Creative Why Choose Section - Vibrant Blue Background */
.why-choose-section {
    padding: 80px 80px;
    position: relative;
    background: var(--primary-grediant);
    color: #ffffff;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 24px 64px rgba(14, 165, 233, 0.15);
    margin: 80px 0;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(0, 0, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.why-choose-section .badge {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 16px;
    border-radius: 100px;
}

.why-choose-section .text-gradient {
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #c4f34a;
    /* Primary green-yellow color */
}

.wc-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.wc-text-column {
    flex: 1;
    position: sticky;
    top: 120px;
}

.wc-text-column h2 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wc-text-column p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    max-width: 480px;
    line-height: 1.6;
}

.wc-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wc-stat h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.wc-stat p {
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.wc-features-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wc-feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.wc-feature-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.wc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #f1f5f9;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wc-icon i {
    width: 28px;
    height: 28px;
}

.wc-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.wc-feature-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

/* Portfolio & Case Studies Section */
.portfolio-section {
    padding: 60px 0 60px;
    margin: 40px 0;
}

.portfolio-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.ph-left h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.ph-left p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 500px;
    line-height: 1.6;
    margin: 0;
}

.bento-portfolio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 480px;
    gap: 24px;
}

.bento-card {
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.b-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.b-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.b-brand i { width: 16px; height: 16px; }

.b-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.b-content p {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 32px;
}

.b-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 100px;
    width: fit-content;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.b-stat strong {
    font-size: 1rem;
    font-weight: 700;
}

.b-visual {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

/* Finora Mockup */
.finora-mockup {
    width: 240px;
    height: 280px;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 24px;
    margin-bottom: -40px;
    padding: 20px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}
.fm-header { margin-bottom: 24px; }
.fm-header div { font-size: 0.85rem; color: #94a3b8; }
.fm-header h2 { font-size: 1.75rem; font-weight: 700; color: #ffffff; margin: 4px 0; }
.fm-badge { display: inline-block; background: rgba(34, 197, 94, 0.1); color: #22c55e; padding: 4px 8px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.fm-chart { height: 60px; margin-bottom: 24px; }
.fm-chart svg { width: 100%; height: 100%; }
.fm-transactions { display: flex; flex-direction: column; gap: 12px; }
.fm-row { display: flex; gap: 12px; align-items: center; }
.fm-icon { width: 32px; height: 32px; border-radius: 50%; background: #1e293b; }
.fm-lines { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.fm-l1 { height: 6px; width: 60%; background: #334155; border-radius: 4px; }
.fm-l2 { height: 4px; width: 30%; background: #1e293b; border-radius: 4px; }

/* Light Card & NutriLife Mockup */
.bento-card.light {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}
.nutri-mockup {
    width: 200px;
    height: 240px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px;
    position: relative;
}
.nm-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #dcfce7;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nm-inner-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #22c55e;
}
.nm-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nm-line { height: 8px; background: #f1f5f9; border-radius: 4px; width: 100%; }
.nm-line.main { width: 70%; background: #e2e8f0; }

/* Movee Mockup */
.movee-mockup {
    position: relative;
    width: 140px;
    height: 140px;
}
.mm-rings {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.mm-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #c4f34a;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(196, 243, 74, 0.8);
}
.mm-ring-bg { stroke: #f1f5f9; }
.mm-ring-1 { stroke: #3b82f6; }
.mm-ring-2 { stroke: #c4f34a; }

/* Elevate Card Visuals (Layered Brand Identity) */
.b-visual-brand {
    justify-content: center;
    position: relative;
    margin-left: 0;
    margin-top: 80px;
    margin-bottom: -40px;
}
.em-layer {
    position: absolute;
    border-radius: 12px;
    box-shadow: -10px 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.em-1 {
    width: 180px;
    height: 220px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transform: rotate(-5deg) translate(-20px, 10px);
    z-index: 1;
}
.em-2 {
    width: 140px;
    height: 140px;
    background: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(5deg) translate(20px, -20px);
    z-index: 2;
}
.em-logo {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
}
.em-3 {
    width: 100px;
    height: 160px;
    background: #ffffff;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: rotate(15deg) translate(60px, 40px);
    z-index: 3;
}
.em-color { width: 100%; height: 50px; border-radius: 8px; }
.em-color.c1 { background: #3b82f6; }
.em-color.c2 { background: #0ea5e9; }

/* Aura Mockup */
.aura-mockup {
    width: 280px;
    height: 180px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: -10px 10px 40px rgba(0,0,0,0.06);
    display: flex;
    padding: 12px;
    gap: 12px;
    margin-bottom: -40px;
}
.am-sidebar { width: 40px; height: 100%; background: #e2e8f0; border-radius: 6px; }
.am-main { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.am-header { height: 20px; background: #e2e8f0; border-radius: 6px; }
.am-cards { display: flex; gap: 12px; height: 40px; }
.am-card { flex: 1; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 6px; }
.am-chart { flex: 1; background: #ffffff; border: 1px solid #e2e8f0; border-radius: 6px; }

/* Nexus Mockup */
.nexus-mockup {
    position: relative;
    width: 140px;
    height: 140px;
}
.nx-node {
    position: absolute;
    border-radius: 50%;
    background: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    z-index: 2;
}
.nx-node.center { width: 40px; height: 40px; top: 50px; left: 50px; background: #c4f34a; box-shadow: 0 0 20px rgba(196, 243, 74, 0.4); }
.nx-node.n1 { width: 20px; height: 20px; top: 10px; left: 60px; }
.nx-node.n2 { width: 24px; height: 24px; top: 90px; left: 10px; }
.nx-node.n3 { width: 16px; height: 16px; top: 100px; left: 100px; }
.nx-line {
    position: absolute;
    background: #e2e8f0;
    z-index: 1;
}
.nx-line.l1 { width: 2px; height: 40px; top: 20px; left: 70px; }
.nx-line.l2 { width: 50px; height: 2px; top: 80px; left: 20px; transform: rotate(45deg); }
.nx-line.l3 { width: 60px; height: 2px; top: 80px; left: 60px; transform: rotate(-30deg); }

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0 60px;
    margin: 40px 0;
    position: relative;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-header h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.testimonial-header p {
    font-size: 1.125rem;
    color: var(--text-dark);
    opacity: 0.7;
    max-width: 600px;
}

.testimonial-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 100%;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 32px;
    padding: 16px 8px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.slider-btn {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
    flex-shrink: 0;
    z-index: 2;
}

.slider-btn:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: scale(1.05);
}

.slider-btn i {
    width: 20px;
    height: 20px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 380px;
    max-width: 400px;
    scroll-snap-align: center;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.t-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: #eab308;
}

.t-rating i {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.t-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 32px;
    flex: 1;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.t-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--bg-light-blue);
}

.t-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.t-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
    margin: 40px 0;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.bc-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.bc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .bc-image img {
    transform: scale(1.05);
}

.bc-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.bc-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bc-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.bc-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.bc-meta i {
    width: 14px;
    height: 14px;
}

.bc-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: color 0.2s ease;
}

.blog-card:hover .bc-content h3 {
    color: var(--bg-blue);
}

.bc-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--bg-blue);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.read-more i {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.read-more:hover {
    gap: 12px;
}


@media (max-width: 1024px) {
    .hero { flex-direction: column; text-align: center; }
    .hero-content { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
    .hero-visuals { height: 400px; width: 100%; margin-top: 40px; }
    .card-1 { right: 10%; }
    .card-2 { left: 5%; }
    .card-3 { right: 5%; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-portfolio { grid-template-columns: 1fr 1fr; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .portfolio-header-top { flex-direction: column; align-items: flex-start; gap: 24px; }
    .why-choose-section { padding: 48px 32px; }
    .wc-container { flex-direction: column; gap: 60px; }
    .wc-text-column { position: static; }
}

@media (max-width: 768px) {
    .hero-bg { background-position: left top; }
    .services-section, .portfolio-section, .testimonial-section, .blog-section { padding: 60px 0; }
    .why-choose-section { padding: 60px 24px; margin: 40px 0; }
    .hero-content p { font-size: 1rem; padding: 0 12px; margin: 0 auto 2rem; }
    .services-header h2, .testimonial-header h2, .portfolio-header-top h2, .wc-text-column h2 { font-size: 2rem; }
    .hero-visuals { height: auto; display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
    .glass-card { position: relative; top: auto !important; left: auto !important; right: auto !important; width: 100% !important; transform: none !important; animation: none !important; flex-direction: row; align-items: center; padding: 16px 20px; }
    .card-icon { margin-bottom: 0; width: 44px; height: 44px; flex-shrink: 0; }
    .card-text { flex: 1; text-align: left; margin-left: 16px; }
    .card-text h3 { font-size: 1.25rem; margin-bottom: 2px; }
    .card-text p { font-size: 0.85rem; margin-bottom: 0; }
    .card-chart { align-self: center; margin-top: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .bento-portfolio { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 85vw; padding: 24px; }
    .testimonial-slider-wrapper { gap: 0; }
    .slider-btn { display: none; }
    .b-visual { margin-top: 40px; justify-content: center; overflow: hidden; }
    .b-mockup-app { margin-right: 0; }
    .b-mockup { transform: scale(0.85); transform-origin: center center; }
    .cta-banner { flex-direction: column; text-align: center; gap: 24px; }
    .cta-banner-content { flex-direction: column; }
    .wc-stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .wc-stat h3 { font-size: 2rem; }
    .wc-feature-card { flex-direction: column; align-items: center; text-align: center; padding: 24px; }
    .logos { gap: 24px; }
}
