/* ============================================
   TRUSTED BRANDS SECTION
   ============================================ */

.trusted-brands {
    background: var(--bg-primary);
    padding: 80px 0;
    border-top: 1px solid var(--premium-blue-border);
    border-bottom: 1px solid var(--premium-blue-border);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 1px 0 var(--premium-blue-glow);
}

/* Elegant centered ambient glow */
.trusted-brands::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(80, 100, 140, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

[data-theme="light"] .trusted-brands::before {
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(160, 180, 220, 0.05) 0%, transparent 60%);
}

.trusted-brands__content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trusted-brands__label {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    margin-bottom: 48px;
    max-width: 700px;
    line-height: 1.6;
}

.trusted-brands__logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1000px;
}

.trusted-brands__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0.35;
    transition: opacity 0.8s ease;
}

/* Scroll-activated white state */
.trusted-brands__logo.visible {
    opacity: 0.85;
}

.trusted-brands__logo img {
    max-height: 48px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Light Mode - Show logos in full color without grayscale or hover effects */
[data-theme="light"] .trusted-brands {
    background: linear-gradient(180deg, var(--bg-primary) 0%, #f5f7fa 100%);
    border-top-color: rgba(59, 130, 246, 0.15);
    border-bottom-color: rgba(59, 130, 246, 0.15);
    box-shadow: inset 0 1px 0 rgba(59, 130, 246, 0.1);
}

[data-theme="light"] .trusted-brands__label {
    color: #64748b;
}

[data-theme="light"] .trusted-brands__logo {
    opacity: 1;
    filter: none;
}

[data-theme="light"] .trusted-brands__logo:hover {
    opacity: 1;
    filter: none;
}

[data-theme="light"] .trusted-brands__logo img {
    filter: none;
    opacity: 0.7;
    transition: opacity 0.2s;
}

[data-theme="light"] .trusted-brands__logo:hover img {
    opacity: 1;
}

.trusted-brands__logo span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .trusted-brands__logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .trusted-brands {
        padding: 60px 0;
    }

    .trusted-brands__logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .trusted-brands__logo {
        padding: 16px;
    }
}

/* ============================================
   TECHPACK / STEPS SECTION
   ============================================ */

.va-techpack {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Elegant ambient glow for techpack section */
.va-techpack::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 30%, rgba(80, 100, 160, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 85% 70%, rgba(60, 80, 140, 0.03) 0%, transparent 45%);
    pointer-events: none;
}

[data-theme="light"] .va-techpack::before {
    background:
        radial-gradient(ellipse 60% 50% at 15% 30%, rgba(180, 200, 240, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 85% 70%, rgba(160, 180, 220, 0.05) 0%, transparent 45%);
}

.va-techpack-header {
    text-align: center;
    margin-bottom: 80px;
}

.va-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
}

.va-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.va-step {
    text-align: center;
    position: relative;
}

.va-step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

[data-theme="light"] .va-step-number {
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.va-step h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.va-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 280px;
    margin: 0 auto;
}

/* ============================================
   DASHBOARD / BENTO GRID
   ============================================ */

.va-dashboard {
    background: var(--bg-primary);
}

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

.va-bento-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all var(--animation-normal) var(--ease-out);
}

.va-bento-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.va-bento-card.large {
    grid-column: span 2;
}

.va-bento-card.tall {
    grid-row: span 2;
}

.va-bento-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.va-bento-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.va-bento-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.va-bento-card .stat {
    font-size: 48px;
    font-weight: 700;
    margin-top: 24px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.va-bento-card .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Interactive Badge - Premium Minimal */
.interactive-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    margin-left: 12px;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Clickable Cards */
.clickable {
    cursor: pointer;
}

.interactive-hint {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.clickable:hover .interactive-hint,
.va-app-card:hover .interactive-hint {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle glow effect on hover */
.clickable::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.clickable:hover::before {
    opacity: 1;
}

/* ============================================
   CAPABILITIES SECTION - OPTION B
   Clean Lines with Border Accents
   ============================================ */

.capabilities-section {
    padding: 120px 0 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Premium grey gradient background effect */
.capabilities-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(40, 40, 45, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(35, 35, 40, 0.3) 0%, transparent 40%),
        radial-gradient(ellipse 70% 50% at 80% 80%, rgba(30, 30, 35, 0.25) 0%, transparent 40%);
    pointer-events: none;
}

[data-theme="light"] .capabilities-section::before {
    background:
        radial-gradient(ellipse 100% 80% at 50% 0%, rgba(200, 200, 210, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 20% 100%, rgba(210, 210, 215, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse 70% 50% at 80% 80%, rgba(215, 215, 220, 0.2) 0%, transparent 40%);
}

/* Top accent line */
.capabilities-section .accent-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--premium-blue-border) 20%, var(--premium-blue-border) 80%, transparent);
    box-shadow: 0 0 20px var(--premium-blue-glow);
}

[data-theme="light"] .capabilities-section .accent-line {
    background: linear-gradient(90deg, transparent, var(--premium-blue-border) 20%, var(--premium-blue-border) 80%, transparent);
    box-shadow: 0 0 15px var(--premium-blue-glow);
}

/* Bottom fade to stats */
.capabilities-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, transparent, var(--bg-primary));
    pointer-events: none;
    z-index: 1;
}

/* Capabilities Header */
.capabilities-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--premium-blue-border);
    position: relative;
    z-index: 2;
}

/* Left side title area - remove margin from last element */
.capabilities-header > div:first-child .section-title {
    margin-bottom: 0;
}

/* Color Selector - align with title baseline */
.color-selector {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 6px;
}

.color-selector__options {
    display: flex;
    gap: 12px;
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.color-swatch::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: border-color 0.25s;
}

.color-swatch.active::after {
    border-color: var(--premium-blue);
    box-shadow: 0 0 0 1px var(--premium-blue), inset 0 0 12px var(--premium-blue-glow);
}

[data-theme="light"] .color-swatch.active::after {
    border-color: var(--premium-blue);
    box-shadow: 0 0 0 1px var(--premium-blue), inset 0 0 12px var(--premium-blue-glow);
}

.color-swatch:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 16px var(--premium-blue-glow), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Color swatches - Beautiful shade progression from black to ash */
.color-swatch--black {
    background: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.1);
}
.color-swatch--espresso { background: #3d2b24; }
.color-swatch--navy { background: #1e3a5f; }
.color-swatch--forest { background: #2d4a3e; }
.color-swatch--slate { background: #4a5568; }
.color-swatch--storm { background: #5c6370; }
.color-swatch--ash { background: #8b9098; }

/* Pantone Info */
.color-selector__info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-left: 24px;
    border-left: 1px solid var(--premium-blue-border);
}

.color-selector__pantone {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.color-selector__pantone strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

/* Product Carousel */
.product-carousel {
    margin: 0 -40px;
    padding: 20px 0 80px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.product-carousel__track-wrapper {
    overflow: hidden;
}

.product-carousel__track {
    display: flex;
    gap: 20px;
    animation: carouselScroll 35s linear infinite;
    padding: 0 40px;
    width: max-content;
}

@keyframes carouselScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-260px * 10)); }
}

.product-carousel__track:hover {
    animation-play-state: paused;
}

/* Product Cards - Borderless Clean */
.product-card {
    flex: 0 0 240px;
    background: var(--bg-card);
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--animation-normal) var(--ease-out);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

[data-theme="light"] .product-card {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

[data-theme="light"] .product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.product-card__image-wrapper {
    aspect-ratio: 1;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.product-card__image {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out), filter 0.4s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-card__image {
    transform: scale(1.08);
}

/* Color filter classes - Rich, vibrant shade progression */
.product-card__image.color-black {
    filter: brightness(0.12) contrast(1.1) saturate(0);
}

/* Light mode: slightly lighter black for better visibility */
[data-theme="light"] .product-card__image.color-black {
    filter: brightness(0.22) contrast(1.05) saturate(0);
}

.product-card__image.color-espresso {
    filter: brightness(0.38) sepia(1) saturate(1.8) hue-rotate(-15deg) contrast(1.1);
}

.product-card__image.color-navy {
    filter: brightness(0.4) sepia(1) saturate(4) hue-rotate(190deg) contrast(1.05);
}

.product-card__image.color-forest {
    filter: brightness(0.45) sepia(1) saturate(2.5) hue-rotate(75deg) contrast(1.05);
}

.product-card__image.color-slate {
    filter: brightness(0.5) sepia(0.4) saturate(1.2) hue-rotate(190deg) contrast(1.05);
}

.product-card__image.color-storm {
    filter: brightness(0.6) contrast(1) saturate(0.3);
}

.product-card__image.color-ash {
    filter: brightness(0.78) contrast(0.95) saturate(0.15);
}

.product-card__name {
    padding: 18px 20px 6px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.product-card__category {
    padding: 0 20px 18px;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Unified Stats Section Below Capabilities */
.capabilities-stats {
    background: var(--bg-primary);
    position: relative;
    z-index: 3;
}

.capabilities-stats__content {
    padding: 50px 0 70px;
}

.capabilities-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.capabilities-stat {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.capabilities-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

.capabilities-stat__value {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.capabilities-stat__label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.carousel-nav__btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.carousel-nav__btn:hover {
    background: var(--glass-hover);
    color: var(--text-primary);
}

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

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story__text h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-story__text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-story__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-story__stat {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.about-story__stat h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #fff, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story__stat p {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.timeline-section {
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--glass-border), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item__content {
    width: calc(50% - 60px);
}

.timeline-item__year {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.timeline-item__content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-item__content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.timeline-item__dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--bg-card);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    transform: translateX(-50%);
}

/* ============================================
   VALUES GRID
   ============================================ */

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

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.3s var(--ease-out);
}

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

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--accent-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
}

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

.value-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PROBLEMS / COMPARISON GRID
   ============================================ */

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

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateY(-4px);
}

.problem-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 100, 100, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-card--solution .problem-card__icon {
    background: rgba(100, 255, 150, 0.1);
}

.problem-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.problem-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Comparison Section */
.compare-section {
    background: var(--bg-primary);
}

.compare-header {
    text-align: center;
    margin-bottom: 60px;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.compare-col {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
}

.compare-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.compare-col.old {
    opacity: 0.7;
}

.compare-col.old h3 {
    color: rgba(255, 100, 100, 0.8);
}

.compare-col.new h3 {
    color: rgba(100, 255, 150, 0.9);
}

.compare-list {
    list-style: none;
}

.compare-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--premium-blue-border);
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.compare-list li:last-child {
    border-bottom: none;
}

.compare-col.old .compare-list li::before {
    content: '✕';
    color: rgba(255, 100, 100, 0.8);
    font-size: 12px;
}

.compare-col.new .compare-list li::before {
    content: '✓';
    color: rgba(100, 255, 150, 0.9);
    font-size: 14px;
}

.compare-vs {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
    padding-top: 80px;
}

/* Speed Section */
.speed-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.speed-header {
    text-align: center;
    margin-bottom: 60px;
}

.speed-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.speed-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.speed-col.new h4 {
    color: rgba(100, 255, 150, 0.9);
}

.speed-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.speed-label {
    width: 120px;
    font-size: 13px;
    color: var(--text-secondary);
}

.speed-track {
    flex: 1;
    height: 8px;
    background: var(--glass-bg);
    border-radius: 5px;
    overflow: hidden;
}

.speed-fill {
    height: 100%;
    background: var(--glass-border);
    border-radius: 5px;
    transition: width 1s var(--ease-out);
}

.speed-col.new .speed-fill {
    background: linear-gradient(90deg, rgba(100, 255, 150, 0.4), rgba(100, 255, 150, 0.7));
}

.speed-time {
    width: 90px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: right;
}

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

.cta-section {
    padding: 140px 0;
    background: var(--gradient-hero);
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--text-primary);
    color: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--premium-blue-border);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s var(--ease-out);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--premium-blue-glow), 0 12px 40px rgba(255, 255, 255, 0.15);
    border-color: var(--premium-blue);
}

/* ============================================
   ICON MASTER DESIGN SYSTEM
   ============================================ */

/* Icon Container Base Styles - Semantic Size & Color System */

/* Size 32px Containers (Small) */
.icon-container-32 {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

/* Size 48px Containers (Medium) */
.icon-container-48 {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

/* Size 64px Containers (Large/Hero) */
.icon-container-64 {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    transition: all 0.3s var(--ease-out);
    flex-shrink: 0;
}

/* Semantic Color System - Blue (Orders/Entry) */
.icon-blue {
    background: rgba(59, 130, 246, 0.12);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.icon-blue:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
    transform: translateY(-2px);
}

/* Semantic Color System - Purple (Dashboard/Organization) */
.icon-purple {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.icon-purple:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

/* Semantic Color System - Cyan (Conversations/Communication) */
.icon-cyan {
    background: rgba(6, 182, 212, 0.12);
    color: #06B6D4;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.icon-cyan:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
    transform: translateY(-2px);
}

/* Semantic Color System - Green (Success/Complete) */
.icon-success {
    background: rgba(34, 197, 94, 0.12);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.icon-success:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.15);
    transform: translateY(-2px);
}

/* Semantic Color System - Red (Alert/Problem) */
.icon-alert {
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.icon-alert:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.15);
    transform: translateY(-2px);
}

/* ============================================
   SOLUTION CARDS ENHANCED
   ============================================ */

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

.solution-card {
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.solution-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(34, 197, 94, 0.0) 0%,
        rgba(34, 197, 94, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
    pointer-events: none;
}

.solution-card:hover {
    border-color: rgba(34, 197, 94, 0.4);
    transform: translateY(var(--card-lift-md));
    box-shadow:
        0 16px 48px rgba(34, 197, 94, 0.15),
        0 0 32px rgba(34, 197, 94, 0.1);
    background: rgba(34, 197, 94, 0.06);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-card__number {
    position: absolute;
    top: -16px;
    left: 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.solution-card:nth-child(1) .solution-card__number {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.solution-card:nth-child(2) .solution-card__number {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

.solution-card:nth-child(3) .solution-card__number {
    background: linear-gradient(135deg, #06B6D4 0%, #0891B2 100%);
}

.solution-card__icon {
    transition: all 0.3s var(--ease-out);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 16px;
}

.solution-card:nth-child(1) .solution-card__icon {
    background: rgba(59, 130, 246, 0.12);
    color: #3B82F6;
}

.solution-card:nth-child(2) .solution-card__icon {
    background: rgba(139, 92, 246, 0.12);
    color: #8B5CF6;
}

.solution-card:nth-child(3) .solution-card__icon {
    background: rgba(6, 182, 212, 0.12);
    color: #06B6D4;
}

.solution-card:hover .solution-card__icon {
    transform: scale(1.1) rotate(3deg);
}

.solution-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.solution-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

/* Flow arrows between solution cards */
.solution-cards::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(33.33% + 20px);
    right: calc(33.33% - 20px);
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(34, 197, 94, 0.2) 10%,
        rgba(34, 197, 94, 0.2) 90%,
        transparent);
    z-index: 0;
    transform: translateY(-24px);
}

/* ============================================
   BENTO CARDS ENHANCED WITH SYSTEM FLOW
   ============================================ */

.va-bento-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.va-bento-card:hover {
    transform: translateY(var(--card-lift-md));
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 24px 64px rgba(59, 130, 246, 0.2),
        0 0 40px rgba(59, 130, 246, 0.12);
    background: rgba(59, 130, 246, 0.02);
}

/* System flow numbering badges */
.va-bento-card[data-group="system"]::before {
    content: attr(data-order);
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #3B82F6;
    z-index: 1;
}

/* System flow card icon colors */
.va-bento-card[data-order="1"] .va-bento-icon {
    color: #3B82F6;
    background: rgba(59, 130, 246, 0.12);
    padding: 8px;
    border-radius: 6px;
}

.va-bento-card[data-order="2"] .va-bento-icon {
    color: #8B5CF6;
    background: rgba(139, 92, 246, 0.12);
    padding: 8px;
    border-radius: 6px;
}

.va-bento-card[data-order="3"] .va-bento-icon {
    color: #06B6D4;
    background: rgba(6, 182, 212, 0.12);
    padding: 8px;
    border-radius: 6px;
}

.va-bento-icon {
    font-size: 32px;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-out);
}

.va-bento-card:hover .va-bento-icon {
    transform: scale(1.2) rotate(2deg);
}

/* ============================================
   CASE STUDY CARDS ENHANCED
   ============================================ */

.case-study-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all var(--animation-normal) var(--ease-out);
    cursor: pointer;
}

.case-study-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(var(--card-lift-md));
    box-shadow:
        0 16px 48px rgba(59, 130, 246, 0.15),
        0 0 32px rgba(59, 130, 246, 0.1);
    background: rgba(59, 130, 246, 0.05);
}

.case-study-challenge {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-left: 3px solid #3B82F6;
    padding: 16px;
    border-radius: 8px;
    margin: 24px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.case-study-challenge svg {
    width: 20px;
    height: 20px;
    color: #EF4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.case-study-results {
    margin-top: 20px;
    padding: 16px;
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-left: 3px solid #22C55E;
    border-radius: 8px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.case-study-results svg {
    width: 20px;
    height: 20px;
    color: #22C55E;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================
   GROWTH TOOL SHOWCASE ENHANCED
   ============================================ */

.growth-tool-showcase {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
    text-align: center;
}

.growth-tool-showcase:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(59, 130, 246, 0.2),
        0 0 40px rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.02);
}

.growth-tool-showcase__icon {
    font-size: 32px;
    margin-bottom: 16px;
    transition: all 0.3s var(--ease-out);
    padding: 12px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 8px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    color: #3B82F6;
}

.growth-tool-showcase:hover .growth-tool-showcase__icon {
    transform: scale(1.15) rotate(-3deg);
    background: rgba(59, 130, 246, 0.15);
}

.growth-tool-showcase__title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.growth-tool-showcase__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ============================================
   AUDIENCE CARD ENHANCED
   ============================================ */

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s var(--ease-out);
    cursor: pointer;
}

.audience-card:hover {
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(var(--card-lift-md));
    box-shadow:
        0 20px 48px rgba(59, 130, 246, 0.2),
        0 0 32px rgba(59, 130, 246, 0.15);
    background: rgba(59, 130, 246, 0.02);
}

.audience-card__icon {
    font-size: 40px;
    margin-bottom: 20px;
    transition: all 0.3s var(--ease-out);
    padding: 12px;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 8px;
    width: fit-content;
    color: #3B82F6;
}

.audience-card:hover .audience-card__icon {
    transform: scale(1.15);
    background: rgba(59, 130, 246, 0.15);
}

.audience-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.audience-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.audience-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.audience-card__features li {
    font-size: 13px;
    color: var(--text-tertiary);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.audience-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #22C55E;
    font-weight: 600;
}

/* ============================================
   ANIMATION KEYFRAMES
   ============================================ */

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes cardLift {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
    }
    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 0.25);
    }
}

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

@media (max-width: 1024px) {
    .va-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-story {
        grid-template-columns: 1fr;
    }

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

    .compare-vs {
        padding: 20px 0;
    }

    .speed-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Capabilities Section Responsive */
    .capabilities-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .capabilities-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .capabilities-stat:not(:last-child)::after {
        display: none;
    }

    .product-card {
        flex: 0 0 220px;
    }

    @keyframes carouselScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-240px * 10)); }
    }
}

@media (max-width: 1024px) {
    .solution-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .solution-cards::after {
        display: none;
    }

    .solution-card {
        padding: 24px;
    }

    .solution-card__number {
        left: 16px;
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .solution-card__icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }

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

    .growth-tools-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   LIGHT MODE - Bento Cards & Stats
   ============================================ */

[data-theme="light"] .va-bento-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .va-bento-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 24px 64px rgba(59, 130, 246, 0.12),
        0 0 40px rgba(59, 130, 246, 0.08);
    background: rgba(59, 130, 246, 0.02);
}

[data-theme="light"] .va-bento-card .stat {
    background: linear-gradient(135deg, #1a1a2e 0%, rgba(26, 26, 46, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .interactive-badge {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.6);
    border-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .interactive-hint {
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .clickable::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
}

[data-theme="light"] .about-story__stat {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .about-story__stat h3 {
    background: linear-gradient(135deg, #1a1a2e 0%, rgba(26, 26, 46, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .value-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .value-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .compare-col {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .growth-tool-showcase {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .growth-tool-showcase:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 20px 60px rgba(59, 130, 246, 0.12),
        0 0 40px rgba(59, 130, 246, 0.08);
    background: rgba(59, 130, 246, 0.02);
}

[data-theme="light"] .audience-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .audience-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 20px 48px rgba(59, 130, 246, 0.12),
        0 0 32px rgba(59, 130, 246, 0.08);
    background: rgba(59, 130, 246, 0.02);
}

[data-theme="light"] .case-study-card {
    background: rgba(0, 0, 0, 0.02);
    border-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .case-study-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        0 16px 48px rgba(59, 130, 246, 0.1),
        0 0 32px rgba(59, 130, 246, 0.06);
    background: rgba(59, 130, 246, 0.02);
}

[data-theme="light"] .solution-card {
    background: rgba(34, 197, 94, 0.02);
    border-color: rgba(34, 197, 94, 0.12);
}

[data-theme="light"] .solution-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow:
        0 16px 48px rgba(34, 197, 94, 0.1),
        0 0 32px rgba(34, 197, 94, 0.06);
    background: rgba(34, 197, 94, 0.04);
}

@media (max-width: 768px) {
    .va-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .va-steps::before {
        display: none;
    }

    .va-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .va-bento-card.large,
    .va-bento-card.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .va-bento-card[data-group="system"]::before {
        top: 8px;
        right: 8px;
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .va-bento-icon {
        font-size: 28px;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }

    .solution-card {
        padding: 20px;
    }

    .solution-card__icon {
        width: 40px;
        height: 40px;
    }

    .solution-card__number {
        width: 24px;
        height: 24px;
        font-size: 10px;
        left: 12px;
    }

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

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

    .about-story__stats {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 50px;
    }

    .timeline-item__content {
        width: 100%;
    }

    .timeline-item__dot {
        left: 20px;
    }

    /* Capabilities Section Responsive */
    .capabilities-section {
        padding: 80px 0 0;
    }

    .product-card {
        flex: 0 0 200px;
    }

    .color-selector {
        flex-wrap: wrap;
    }

    .color-selector__info {
        border-left: none;
        padding-left: 0;
        width: 100%;
        margin-top: 12px;
    }

    .growth-tools-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .growth-tool-showcase {
        padding: 20px;
    }

    .growth-tool-showcase__icon {
        font-size: 28px;
    }

    .audience-card {
        padding: 24px;
    }

    .audience-card__icon {
        font-size: 32px;
    }

    .case-study-challenge,
    .case-study-results {
        padding: 12px;
        font-size: 13px;
    }

    .case-study-challenge svg,
    .case-study-results svg {
        width: 16px;
        height: 16px;
    }

    @keyframes carouselScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-220px * 10)); }
    }
}
