/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(143deg, #B380FF 10%, #7AF0FF 90%);
    --accent-color: #97b8ff;
    --accent-gradient: linear-gradient(134deg, #B380FF 10%, #7AF0FF 90%);
    --bg-dark: #07070C;
    --bg-darker: #000000;
    --bg-card: #141419;
    --text-color: #E0D6DE;
    --text-muted: rgba(224, 214, 222, 0.7);
    --heading-color: #97b8ff;
    --border-color: rgba(151, 184, 255, 0.2);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 7, 12, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(7, 7, 12, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-cta:hover {
    background: var(--accent-color);
    color: #000;
    transform: translateY(-2px);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary-gradient);
    width: 0%;
    transition: width 0.1s ease;
}

/* Main Layout */
.landing-page {
    margin-top: 70px;
}

/* Section Styles */
.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #0a0a0f 50%, #000814 100%);
    z-index: 1;
}

.section.dark-section {
    background: linear-gradient(135deg, #07070C 0%, #000000 50%, #0a0a0f 100%);
}

.section-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-bottom: 6rem;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-text {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.highlight {
    color: #7AF0FF;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.4;
    min-width: 200px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(179, 128, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: rgba(151, 184, 255, 0.1);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    z-index: 0;
    pointer-events: none;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: mouseScroll 1.5s infinite;
}

@keyframes mouseScroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Typography */
.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subsection-title {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.card-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.pillar {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 40px rgba(151, 184, 255, 0.2);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pillar-title {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.pillar p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.pillar strong {
    color: #7AF0FF;
}

.differentiator {
    background: linear-gradient(135deg, rgba(179, 128, 255, 0.1), rgba(122, 240, 255, 0.1));
    border-left: 4px solid var(--accent-color);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.differentiator p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Vision & Mission Grid */
.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.vision-box, .mission-box {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.vision-box:hover, .mission-box:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.vm-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vision-box h3, .mission-box h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.statement {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #fff;
}

.context {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Company Facts */
.company-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.fact-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.fact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.fact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7AF0FF;
    font-weight: 600;
}

.fact-value {
    font-size: 1rem;
    color: var(--text-color);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 3rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 0.5rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    box-shadow: 0 0 0 6px rgba(151, 184, 255, 0.2);
    transition: all 0.3s ease;
}

.timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(151, 184, 255, 0.3);
}

.timeline-period {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-content {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Tech Pillars */
.tech-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.tech-pillar {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.tech-pillar:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tech-pillar h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.ip-moat {
    background: linear-gradient(135deg, rgba(179, 128, 255, 0.1), rgba(122, 240, 255, 0.1));
    border: 2px solid var(--accent-color);
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.ip-moat p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Market Advantages */
.market-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.advantage h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* Market Segments */
.market-segments {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.market-segment {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.market-segment:hover {
    transform: translateX(10px);
    border-color: var(--accent-color);
}

.segment-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.segment-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.market-segment h4 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
}

.tam {
    background: linear-gradient(135deg, rgba(179, 128, 255, 0.2), rgba(122, 240, 255, 0.2));
    border: 2px solid var(--accent-color);
    padding: 2.5rem;
    border-radius: 16px;
}

.tam p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Team Characteristics */
.team-characteristics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.characteristic {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.characteristic:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.char-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.characteristic h4 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* Contact Section */
.contact-section {
    text-align: center;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-card {
    background: rgba(20, 20, 25, 0.6);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.contact-email {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.5rem;
    color: #7AF0FF;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 2.5rem;
    background: rgba(122, 240, 255, 0.1);
    border: 2px solid #7AF0FF;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(122, 240, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(122, 240, 255, 0.3);
}

.closing {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .hamburger {
        display: flex;
    }

    /* Mobile Navigation */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(7, 7, 12, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .nav-links.mobile-active {
        transform: translateX(0);
    }

    .nav-cta {
        display: none;
    }

    .nav-content {
        padding: 1rem;
    }

    /* Reduce font sizes on mobile */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .hero-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-section {
        padding: 5rem 1rem 12rem 1rem;
        min-height: 100vh;
        position: relative;
        z-index: 2;
    }

    .hero-content {
        padding-bottom: 3rem;
    }

    .scroll-indicator {
        display: none; /* Hide on mobile */
    }

    .hero-cta {
        margin-bottom: 3rem;
        padding-bottom: 2rem;
    }

    /* Ensure proper stacking */
    .section:not(.hero-section) {
        margin-top: 0;
        padding-top: 6rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .subsection-title {
        font-size: 1.2rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .pillar-number {
        font-size: 3rem;
    }

    .pillar-title {
        font-size: 1.2rem;
    }

    .pillar p {
        font-size: 0.9rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .pillars-grid,
    .vision-mission-grid,
    .tech-pillars,
    .market-advantages,
    .team-characteristics,
    .company-facts {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 1.5rem;
    }

    .timeline-period {
        font-size: 1.1rem;
    }

    .timeline-title {
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
        margin-top: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        text-align: center;
        font-size: 1rem;
        padding: 1rem 1.5rem;
        box-sizing: border-box;
    }

    .contact-intro {
        font-size: 1rem;
    }

    .contact-email {
        font-size: 1.2rem;
        padding: 0.9rem 2rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.95rem;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Smooth Reveal on Scroll */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================ */
/* Professional Updates - Remove Icons, Add Gradient Accents */
/* ============================================ */

/* Hero Background Image */
.hero-section {
    overflow: visible !important;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(40px);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* Pillar Numbers */
.pillar-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(134deg, #B380FF 10%, #7AF0FF 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Sora', sans-serif;
    line-height: 1;
}

/* Fact Items with Accent Bar */
.fact-item {
    position: relative;
    padding-left: 1.2rem !important;
}

.fact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(143deg, #B380FF 10%, #7AF0FF 90%);
    border-radius: 2px;
}

/* Tech Pillars with Top Border */
.tech-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(134deg, #B380FF 10%, #7AF0FF 90%);
    border-radius: 16px 16px 0 0;
}

/* Advantages with Corner Accent */
.advantage {
    position: relative;
    overflow: hidden;
}

.advantage::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(143deg, #B380FF 10%, #7AF0FF 90%);
    opacity: 0.2;
    border-radius: 0 16px 0 100px;
}

/* Team Characteristics with Left Bar */
.characteristic {
    position: relative;
    padding-left: 1.8rem !important;
}

.characteristic::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #B380FF 0%, #7AF0FF 100%);
    border-radius: 4px;
}

/* Hide any remaining icon elements */
.pillar-icon, .vm-icon, .fact-icon,
.tech-icon, .advantage-icon, .segment-icon, .char-icon {
    display: none !important;
}
