/* Index page styles - inherits variables from base.css */

/* Scroll Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Index-specific body styles */
body {
    position: relative;
    z-index: 1;
}

/* Premium Grain Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Matrix Canvas */
#matrix-bg {
    position: fixed;
    top: 0;
    left: -20px;
    width: calc(100% + 40px);
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #050508;
}

/* Tech Subsection (within Services) */
.tech-subsection {
    margin-top: 64px;
    padding-top: 56px;
    border-top: 1px solid rgba(34, 197, 94, 0.15);
}

.tech-subsection-header {
    text-align: center;
    margin-bottom: 40px;
}

.tech-subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 12px 0;
}

.tech-subsection-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
    margin: 0;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .tech-categories {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.tech-category {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.5), rgba(34, 197, 94, 0.15));
    border-radius: 4px 0 0 4px;
}

.tech-category::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 25px 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.tech-category:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
    border-color: rgba(34, 197, 94, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 197, 94, 0.08);
}

.tech-category:hover::after {
    opacity: 1;
}


.tech-category-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.tech-category-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.tech-tag {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    padding: 0;
    background: none;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.tech-tag::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 2px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    color: var(--white);
}

.tech-tag:hover::before {
    opacity: 1;
}

/* Clients/Trust Section */
.clients-bar {
    padding: 56px 0;
    background:
        radial-gradient(ellipse 60% 100% at 50% 50%, rgba(227, 30, 36, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, #08080c 0%, #0a0a0e 100%);
    position: relative;
    z-index: 1;
}

.clients-bar::before,
.clients-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.3), transparent);
}

.clients-bar::before { top: 0; }
.clients-bar::after { bottom: 0; }

.clients-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.clients-bar-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.clients-bar-stats {
    display: flex;
    gap: 32px;
}

.clients-bar-stat {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.clients-bar-stat strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.clients-bar-divider {
    width: 100%;
    max-width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

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

.client-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.client-name:hover {
    color: var(--white);
}

.client-name:not(:last-child)::after {
    content: '·';
    margin: 0 20px;
    color: rgba(227, 30, 36, 0.5);
    font-weight: 400;
}

@media (max-width: 768px) {
    .clients-bar {
        padding: 48px 0;
    }

    .clients-logos {
        gap: 12px 0;
    }

    .client-name {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .client-name:not(:last-child)::after {
        margin: 0 14px;
    }
}

@media (max-width: 480px) {
    .clients-bar {
        padding: 40px 0;
    }

    .clients-logos {
        gap: 10px 0;
    }

    .client-name {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .client-name:not(:last-child)::after {
        margin: 0 10px;
    }
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.industries::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

/* Industries - Full Width Layout */
.industries {
    padding: 100px 0 0;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(227, 30, 36, 0.12) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0e 0%, #08080c 100%) !important;
    border-top: none !important;
}

.industries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.4), transparent);
}

.industries::after {
    display: none !important;
}

.industries > .container {
    max-width: none;
    padding: 0;
}

.industries .section-header {
    max-width: 1200px;
    margin: 0 auto 72px;
    padding: 0 var(--container-padding);
    text-align: center;
    position: relative;
}

.industries .section-header::after {
    content: '';
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.industry-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 500px;
    align-items: stretch;
    position: relative;
}

.industry-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.2), transparent);
}

.industry-item:last-child::after {
    display: none;
}

.industry-item:nth-child(even) {
    direction: rtl;
}

.industry-item:nth-child(even) > * {
    direction: ltr;
}

.industry-item-visual {
    position: relative;
    overflow: hidden;
    background: #050508;
}

.industry-item-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-item-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.industry-item:nth-child(odd) .industry-item-visual::after {
    background: radial-gradient(ellipse 120% 120% at 100% 100%, rgba(5, 5, 8, 1) 0%, rgba(5, 5, 8, 0.8) 30%, rgba(5, 5, 8, 0.4) 60%, transparent 90%);
}

.industry-item:nth-child(even) .industry-item-visual::after {
    background: radial-gradient(ellipse 120% 120% at 0% 100%, rgba(5, 5, 8, 1) 0%, rgba(5, 5, 8, 0.8) 30%, rgba(5, 5, 8, 0.4) 60%, transparent 90%);
}

.industry-item-visual svg {
    display: none;
}

/* ========================================
   INDUSTRY ANIMATIONS
   ======================================== */

/* Base Animation Container */
.industry-item-visual[class*="industry-anim-"] {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 50% 50%, rgba(227, 30, 36, 0.03) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0f 0%, #050508 100%);
    position: relative;
}

.industry-item-visual[class*="industry-anim-"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(227, 30, 36, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 30, 36, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.industry-item-visual[class*="industry-anim-"]::after {
    display: none;
}

/* ---- AUTOMOTIVE Animation ---- */
.anim-automotive {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.6), transparent);
    opacity: 0;
    animation: speedLine 3s ease-in-out infinite;
}

.speed-line:nth-child(1) { top: 15%; left: 0; width: 40%; animation-delay: 0s; }
.speed-line:nth-child(2) { top: 30%; left: 0; width: 50%; animation-delay: 0.4s; }
.speed-line:nth-child(3) { top: 70%; left: 0; width: 45%; animation-delay: 0.8s; }
.speed-line:nth-child(4) { top: 85%; left: 0; width: 35%; animation-delay: 1.2s; }
.speed-line:nth-child(5) { display: none; }

@keyframes speedLine {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.6; }
    100% { transform: translateX(250%); opacity: 0; }
}

.dashboard-circle {
    position: relative;
    width: 160px;
    height: 160px;
}

.dashboard-circle svg {
    display: block !important;
    width: 100%;
    height: 100%;
}

.gauge-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 4;
}

.gauge-fill {
    fill: none;
    stroke: var(--red);
    stroke-width: 4;
    stroke-dasharray: 200 283;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    transform-origin: center;
    animation: gaugeFill 3s ease-in-out infinite;
}

.gauge-needle {
    stroke: var(--white);
    stroke-width: 3;
    stroke-linecap: round;
    transform-origin: 50px 50px;
    animation: needleSweep 3s ease-in-out infinite;
}

@keyframes gaugeFill {
    0%, 100% { stroke-dasharray: 100 283; }
    50% { stroke-dasharray: 220 283; }
}

@keyframes needleSweep {
    0%, 100% { transform: rotate(-40deg); }
    50% { transform: rotate(60deg); }
}

/* ---- MEDICAL Animation ---- */
.anim-medical {
    position: relative;
    width: 300px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ecg-line {
    display: block !important;
    width: 200%;
    height: 100%;
    position: absolute;
    animation: ecgScroll 3s linear infinite;
}

.ecg-pulse {
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    filter: drop-shadow(0 0 6px rgba(227, 30, 36, 0.4));
}

@keyframes ecgScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.pulse-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    animation: pulseDot 1.2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(227, 30, 36, 0.6);
}

@keyframes pulseDot {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
}

/* ---- LOGISTICS Animation ---- */
.anim-logistics {
    position: relative;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logistics-grid {
    position: relative;
    width: 100%;
    height: 100%;
}

.logistics-grid .node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.4);
    animation: nodePulse 2.5s ease-in-out infinite;
}

.node.n1 { top: 10%; left: 47%; animation-delay: 0s; }
.node.n2 { top: 40%; left: 15%; animation-delay: 0.3s; }
.node.n3 { top: 40%; left: 80%; animation-delay: 0.6s; }
.node.n4 { top: 75%; left: 30%; animation-delay: 0.9s; }
.node.n5 { top: 75%; left: 65%; animation-delay: 1.2s; }

@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(227, 30, 36, 0.4); }
    50% { transform: scale(1.2); box-shadow: 0 0 18px rgba(227, 30, 36, 0.6); }
}

.logistics-grid .connection {
    position: absolute;
    height: 1px;
    background: rgba(227, 30, 36, 0.4);
    transform-origin: left center;
}

.connection.c1 { top: 16%; left: 51%; width: 60px; transform: rotate(50deg); }
.connection.c2 { top: 16%; left: 45%; width: 60px; transform: rotate(130deg); }
.connection.c3 { top: 46%; left: 21%; width: 55px; transform: rotate(55deg); }
.connection.c4 { top: 46%; left: 74%; width: 55px; transform: rotate(125deg); }

.logistics-grid .package {
    position: absolute;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(227, 30, 36, 0.6);
    background: rgba(227, 30, 36, 0.15);
    animation: packageMove 5s ease-in-out infinite;
}

.package.p1 {
    top: 28%;
    left: 38%;
    animation-delay: 0s;
}

.package.p2 {
    top: 55%;
    left: 52%;
    animation-delay: 2.5s;
}

@keyframes packageMove {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(60px) scale(0.8); opacity: 0.3; }
}

/* ---- PUBLIC SECTOR Animation ---- */
.anim-public {
    position: relative;
    width: 250px;
    height: 250px;
}

.gov-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.5);
}

.gov-node {
    position: absolute;
    width: 14px;
    height: 14px;
    background: rgba(227, 30, 36, 0.7);
    border-radius: 50%;
    animation: govPulse 2s ease-in-out infinite;
}

.gov-node.g1 { top: 15%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.gov-node.g2 { top: 70%; left: 20%; animation-delay: 0.4s; }
.gov-node.g3 { top: 70%; left: 75%; animation-delay: 0.8s; }

@keyframes govPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.3); opacity: 1; }
}

.data-stream {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--red), transparent);
    opacity: 0.5;
}

.data-stream.s1 { top: 28%; left: 50%; transform: translateX(-50%) rotate(0deg); animation: streamFlow 2s ease-in-out infinite; }
.data-stream.s2 { top: 55%; left: 35%; transform: rotate(-50deg); animation: streamFlow 2s ease-in-out infinite 0.3s; }
.data-stream.s3 { top: 55%; left: 62%; transform: rotate(50deg); animation: streamFlow 2s ease-in-out infinite 0.6s; }

@keyframes streamFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ---- INSURANCE Animation ---- */
.anim-insurance {
    position: relative;
    width: 200px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-outline {
    width: 120px;
    height: 140px;
}

.shield-outline svg {
    display: block !important;
    width: 100%;
    height: 100%;
}

.shield-path {
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: shieldDraw 3s ease-in-out infinite;
}

.shield-check {
    fill: none;
    stroke: var(--red);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: checkDraw 3s ease-in-out infinite;
}

@keyframes shieldDraw {
    0%, 100% { stroke-dashoffset: 400; }
    50%, 70% { stroke-dashoffset: 0; }
}

@keyframes checkDraw {
    0%, 40% { stroke-dashoffset: 60; }
    60%, 100% { stroke-dashoffset: 0; }
}

.shield-pulse {
    position: absolute;
    width: 150px;
    height: 170px;
    border: 1px solid rgba(227, 30, 36, 0.3);
    border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

/* ---- FINANCE Animation ---- */
.anim-finance {
    position: relative;
    width: 280px;
    height: 180px;
}

.chart-svg {
    display: block !important;
    width: 100%;
    height: 100%;
    position: absolute;
}

.chart-line-bg {
    fill: none;
    stroke: rgba(227, 30, 36, 0.2);
    stroke-width: 2;
}

.chart-line {
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: chartDraw 4s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(227, 30, 36, 0.5));
}

@keyframes chartDraw {
    0% { stroke-dashoffset: 300; }
    50%, 100% { stroke-dashoffset: 0; }
}

.chart-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0;
    animation: dotAppear 4s ease-in-out infinite;
}

.chart-dot.d1 { bottom: 50%; left: 45%; animation-delay: 1.5s; }
.chart-dot.d2 { bottom: 65%; left: 60%; animation-delay: 2s; }
.chart-dot.d3 { bottom: 85%; left: 90%; animation-delay: 2.5s; }

@keyframes dotAppear {
    0%, 30% { opacity: 0; transform: scale(0); }
    40%, 100% { opacity: 1; transform: scale(1); }
}

/* ---- MEDIA Animation ---- */
.anim-media {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn {
    width: 100px;
    height: 100px;
}

.play-btn svg {
    display: block !important;
    width: 100%;
    height: 100%;
}

.play-circle {
    fill: none;
    stroke: var(--red);
    stroke-width: 2;
    animation: playPulse 2s ease-in-out infinite;
}

.play-triangle {
    fill: var(--red);
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.sound-wave {
    position: absolute;
    right: 15px;
    width: 4px;
    background: var(--red);
    border-radius: 2px;
    animation: soundWave 1s ease-in-out infinite;
}

.sound-wave.w1 { height: 30px; top: 50%; transform: translateY(-50%); animation-delay: 0s; }
.sound-wave.w2 { height: 50px; top: 50%; transform: translateY(-50%); right: 25px; animation-delay: 0.2s; }
.sound-wave.w3 { height: 20px; top: 50%; transform: translateY(-50%); right: 35px; animation-delay: 0.4s; }

@keyframes soundWave {
    0%, 100% { transform: translateY(-50%) scaleY(1); opacity: 0.5; }
    50% { transform: translateY(-50%) scaleY(1.5); opacity: 1; }
}

/* ---- COMMERCE Animation ---- */
.anim-commerce {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon {
    width: 120px;
    height: 120px;
}

.cart-icon svg {
    display: block !important;
    width: 100%;
    height: 100%;
}

.cart-path {
    fill: none;
    stroke: var(--red);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-wheel {
    fill: var(--red);
}

.cart-item {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--red);
    border-radius: 2px;
    opacity: 0;
    animation: cartItemDrop 3s ease-in-out infinite;
}

.cart-item.ci1 { top: 20%; left: 45%; animation-delay: 0s; }
.cart-item.ci2 { top: 15%; left: 55%; animation-delay: 1s; }
.cart-item.ci3 { top: 25%; left: 50%; animation-delay: 2s; }

@keyframes cartItemDrop {
    0% { opacity: 0; transform: translateY(0); }
    20% { opacity: 1; }
    80% { opacity: 1; transform: translateY(40px); }
    100% { opacity: 0; transform: translateY(40px); }
}

/* ---- TRAVEL Animation ---- */
.anim-travel {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.globe {
    position: relative;
    width: 120px;
    height: 120px;
}

.globe-circle {
    width: 100%;
    height: 100%;
    border: 2px solid var(--red);
    border-radius: 50%;
    opacity: 0.6;
}

.globe-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    border: 1px solid rgba(227, 30, 36, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.globe-line.gl1 { transform: translate(-50%, -50%) rotateY(60deg); }
.globe-line.gl2 { transform: translate(-50%, -50%) rotateX(60deg); }

.plane-path {
    position: absolute;
    width: 180px;
    height: 180px;
    animation: planeOrbit 6s linear infinite;
}

.plane {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 16px solid var(--red);
    transform: translateX(-50%) rotate(45deg);
}

@keyframes planeOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.location-pin {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    animation: pinPulse 2s ease-in-out infinite;
}

.location-pin.lp1 { top: 30%; left: 25%; animation-delay: 0s; }
.location-pin.lp2 { bottom: 25%; right: 20%; animation-delay: 1s; }

@keyframes pinPulse {
    0%, 100% { transform: rotate(-45deg) scale(1); opacity: 0.7; }
    50% { transform: rotate(-45deg) scale(1.2); opacity: 1; }
}

/* ---- IOT Animation ---- */
.anim-iot {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chip-center {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--red), rgba(227, 30, 36, 0.6));
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.4);
}

.circuit-line {
    position: absolute;
    background: rgba(227, 30, 36, 0.5);
}

.circuit-line.cl1 { width: 2px; height: 50px; top: 10%; left: 50%; transform: translateX(-50%); }
.circuit-line.cl2 { width: 2px; height: 50px; bottom: 10%; left: 50%; transform: translateX(-50%); }
.circuit-line.cl3 { width: 50px; height: 2px; left: 10%; top: 50%; transform: translateY(-50%); }
.circuit-line.cl4 { width: 50px; height: 2px; right: 10%; top: 50%; transform: translateY(-50%); }

.blink-node {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    animation: blinkNode 1.5s ease-in-out infinite;
}

.blink-node.bn1 { top: 8%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.blink-node.bn2 { bottom: 8%; left: 50%; transform: translateX(-50%); animation-delay: 0.4s; }
.blink-node.bn3 { left: 8%; top: 50%; transform: translateY(-50%); animation-delay: 0.8s; }
.blink-node.bn4 { right: 8%; top: 50%; transform: translateY(-50%); animation-delay: 1.2s; }

@keyframes blinkNode {
    0%, 100% { opacity: 0.3; box-shadow: 0 0 5px rgba(227, 30, 36, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 15px rgba(227, 30, 36, 0.8); }
}

/* ---- EDUCATION Animation ---- */
.anim-education {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.atom-core {
    width: 30px;
    height: 30px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.6);
    z-index: 2;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(227, 30, 36, 0.4);
    border-radius: 50%;
}

.orbit.o1 {
    width: 100px;
    height: 100px;
    animation: orbitSpin 4s linear infinite;
}

.orbit.o2 {
    width: 140px;
    height: 80px;
    transform: rotate(60deg);
    animation: orbitSpin 5s linear infinite reverse;
}

.orbit.o3 {
    width: 80px;
    height: 140px;
    transform: rotate(-30deg);
    animation: orbitSpin 6s linear infinite;
}

.electron {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(227, 30, 36, 0.6);
}

@keyframes orbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.orbit.o2 { animation: orbitSpin2 5s linear infinite; }
@keyframes orbitSpin2 {
    0% { transform: rotate(60deg); }
    100% { transform: rotate(420deg); }
}

.orbit.o3 { animation: orbitSpin3 6s linear infinite; }
@keyframes orbitSpin3 {
    0% { transform: rotate(-30deg); }
    100% { transform: rotate(330deg); }
}

.industry-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 60px 80px;
    overflow: hidden;
    position: relative;
}

.industry-item:nth-child(odd) .industry-item-content {
    background:
        radial-gradient(ellipse at 0% 50%, rgba(227, 30, 36, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0c0c12 0%, #050508 100%);
}

.industry-item:nth-child(even) .industry-item-content {
    background:
        radial-gradient(ellipse at 100% 50%, rgba(227, 30, 36, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #0c0c12 0%, #050508 100%);
}

.industry-item:nth-child(odd) .industry-item-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--red), transparent);
    border-radius: 2px;
}

.industry-item:nth-child(even) .industry-item-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, transparent, var(--red), transparent);
    border-radius: 2px;
}

.industry-item-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--red);
}

.industry-item-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--red);
}

.industry-item h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.industry-item p {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin: 0;
}

.industry-item-clients {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.industry-item-clients span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--white);
    background: rgba(227, 30, 36, 0.1);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(227, 30, 36, 0.25);
}

@media (max-width: 968px) {
    .industry-item {
        grid-template-columns: 1fr;
        min-height: auto;
        height: auto;
    }

    .industry-item:nth-child(even) {
        direction: ltr;
    }

    .industry-item-visual {
        aspect-ratio: 16/9;
        min-height: 200px;
    }

    .industry-item-content {
        padding: 40px 24px;
    }

    .industry-item h4 {
        font-size: 1.5rem;
    }

    .industry-item p {
        font-size: 1rem;
    }
}

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

    .industries .section-header {
        margin-bottom: 40px;
    }

    /* Hide animations on mobile */
    .industry-item-visual {
        display: none;
    }

    .industry-item {
        grid-template-columns: 1fr;
    }

    .industry-item-content {
        padding: 28px 20px;
    }

    .industry-item h4 {
        font-size: 1.2rem;
    }

    .industry-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .industry-item-tag {
        font-size: 0.7rem;
    }

    /* Comparison section */
    .comparison-col {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .industries {
        padding: 48px 0 0;
    }

    .industries .section-header {
        margin-bottom: 32px;
    }

    .industry-item-content {
        padding: 24px 16px;
    }

    .industry-item h4 {
        font-size: 1.1rem;
    }

    .industry-item p {
        font-size: 0.85rem;
    }

    .comparison-col {
        padding: 24px 16px;
    }
}

/* Navigation - Index specific (transparent, scrolled state) */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    z-index: 1000;
    padding: 18px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

nav.scrolled::after {
    opacity: 1;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo span {
    color: var(--red);
    text-shadow: 0 0 20px rgba(227, 30, 36, 0.3);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-cta svg {
    width: 16px;
    height: 16px;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--white);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.6), transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
}

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

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-glow::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(ellipse at center, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero-glow::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at center, rgba(227, 30, 36, 0.08) 0%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.12) 0%, rgba(227, 30, 36, 0.04) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--red);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: 40px;
    border: 1px solid rgba(227, 30, 36, 0.25);
    animation: fadeInUp 0.6s ease-out;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 24px rgba(227, 30, 36, 0.1);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
    box-shadow: 0 0 12px rgba(227, 30, 36, 0.6);
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    margin-bottom: 32px;
    letter-spacing: -3px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--red) 0%, #ff5555 50%, var(--red) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 0 80px rgba(227, 30, 36, 0.3);
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero p {
    font-size: 1.25rem;
    color: #808080;
    margin-bottom: 56px;
    max-width: 600px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px;
    transition: color 0.3s ease;
}

.cta-secondary:hover {
    color: var(--white);
}

.cta-secondary svg {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.hero-stat-number span {
    color: var(--red);
    text-shadow: 0 0 30px rgba(227, 30, 36, 0.4);
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-operator {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.3);
    align-self: center;
    margin-top: -8px;
}

.hero-stats-equation {
    align-items: flex-start;
}

.hero-stats-equation .hero-stat .hero-stat-number {
    font-size: 2.75rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: none;
}

.hero-stats-equation .hero-stat .hero-stat-number span {
    color: rgba(255, 255, 255, 0.5);
    text-shadow: none;
}

.hero-stats-equation .hero-stat .hero-stat-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
}

/* Problem Section */
.problem {
    padding: 140px 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(227, 30, 36, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, #0d0d12 100%);
    color: var(--white);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

.problem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

.problem .section-tag {
    color: rgba(227, 30, 36, 0.8);
    background: rgba(227, 30, 36, 0.08);
    border-color: rgba(227, 30, 36, 0.15);
}

.problem .section-title {
    color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}

.problem-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.6), rgba(227, 30, 36, 0.15));
    border-radius: 4px 0 0 4px;
}

.problem-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.problem-card:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.025) 100%);
    border-color: rgba(227, 30, 36, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover), 0 0 40px rgba(227, 30, 36, 0.08);
}

.problem-card:hover::after {
    opacity: 1;
}

.problem-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
    color: rgba(227, 30, 36, 0.7);
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid rgba(227, 30, 36, 0.18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.problem-card:hover .problem-icon {
    color: rgba(227, 30, 36, 0.9);
    background: rgba(227, 30, 36, 0.15);
    border-color: rgba(227, 30, 36, 0.3);
}

.problem-icon svg {
    width: 26px;
    height: 26px;
}

.problem-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.8;
}

.problem-solution {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--white);
    padding: 56px 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-solution:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover), 0 0 60px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.35);
}

.problem-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.problem-solution::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.solution-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.problem-solution h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.problem-solution p {
    color: #a0a0a0;
    font-size: 1.125rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.problem-solution strong {
    color: var(--white);
}

.solution-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-stat {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.solution-stat span {
    font-weight: 700;
    color: var(--white);
}

@media (max-width: 640px) {
    .solution-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* Services Section */
.services {
    padding: 140px 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(34, 197, 94, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, #0c0c10 0%, #0a0a0e 100%);
    color: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

.services .section-tag {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    color: var(--red);
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(227, 30, 36, 0.08);
    border: 1px solid rgba(227, 30, 36, 0.2);
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.section-title span {
    color: var(--red);
}

.section-title span.subtle {
    color: #606060;
    font-weight: 400;
    font-size: 0.45em;
}

.section-subtitle {
    color: #606060;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 8px;
}

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

.service-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 36px;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, rgba(34, 197, 94, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card:hover {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover), 0 0 60px rgba(34, 197, 94, 0.06);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.18) 0%, rgba(34, 197, 94, 0.08) 100%);
    border-color: rgba(34, 197, 94, 0.35);
    transform: scale(1.05);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #22c55e;
}

.service-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--white);
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}

.service-card p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background:
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(227, 30, 36, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0e 0%, #0d0d12 50%, #0a0a0e 100%);
    text-align: center;
    position: relative;
}

.stats-section::before,
.stats-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

.stats-section::before { top: 0; }
.stats-section::after { bottom: 0; }

.stats-equation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 56px;
}

.stats-equation-item {
    text-align: left;
    padding: 24px 32px;
    background: linear-gradient(145deg, rgba(227, 30, 36, 0.08) 0%, rgba(227, 30, 36, 0.02) 100%);
    border: 1px solid rgba(227, 30, 36, 0.15);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    min-width: 140px;
}

.stats-equation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.6), rgba(227, 30, 36, 0.2));
    border-radius: 3px 0 0 3px;
}

.stats-equation-item:hover {
    background: linear-gradient(145deg, rgba(227, 30, 36, 0.12) 0%, rgba(227, 30, 36, 0.04) 100%);
    border-color: rgba(227, 30, 36, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.1);
}

.stats-equation-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stats-equation-number span {
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
}

.stats-equation-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 10px;
}

.stats-equation-operator {
    font-size: 1.75rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.stats-equation-result {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 100%);
    border-color: rgba(34, 197, 94, 0.2);
}

.stats-equation-result::before {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.8), rgba(34, 197, 94, 0.3));
}

.stats-equation-result:hover {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.06) 100%);
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.12);
}

.stats-equation-result .stats-equation-number {
    color: #22c55e;
    text-shadow: 0 0 50px rgba(34, 197, 94, 0.4);
}

.stats-equation-result .stats-equation-number span {
    color: #22c55e;
}

.stats-equation-result .stats-equation-label {
    color: rgba(34, 197, 94, 0.8);
}

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

    .stats-equation {
        gap: 16px;
    }

    .stats-equation-item {
        padding: 18px 24px;
        min-width: 120px;
    }

    .stats-equation-number {
        font-size: 2.5rem;
    }

    .stats-equation-operator {
        font-size: 1.25rem;
    }

    .stats-equation-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 700px) {
    .stats-equation {
        gap: 12px;
    }

    .stats-equation-item {
        padding: 14px 18px;
        min-width: 100px;
    }

    .stats-equation-number {
        font-size: 2rem;
    }

    .stats-equation-operator {
        font-size: 1rem;
    }

    .stats-equation-label {
        font-size: 0.55rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 540px) {
    .stats-section {
        padding: 60px 0;
    }

    .stats-equation {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }

    .stats-equation-item {
        padding: 20px 24px;
        min-width: unset;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        text-align: center;
    }

    .stats-equation-item::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
        border-radius: 3px 3px 0 0;
    }

    .stats-equation-operator {
        font-size: 1.25rem;
        margin: 4px 0;
    }

    .stats-equation-number {
        font-size: 2.5rem;
    }

    .stats-equation-label {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }
}

/* Why Us Section */
.why-us {
    padding: 140px 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(227, 30, 36, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, #0a0a0e 0%, #08080c 100%);
    color: var(--white);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
    z-index: 2;
}

.why-us::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
    z-index: 2;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 80px;
}

.comparison-col {
    padding: 48px;
    border-radius: var(--radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.comparison-old {
    background: linear-gradient(145deg, rgba(227, 30, 36, 0.06) 0%, rgba(227, 30, 36, 0.02) 100%);
    border: 1px solid rgba(227, 30, 36, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comparison-old::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.5), transparent);
}

.comparison-old::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(227, 30, 36, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(227, 30, 36, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(227, 30, 36, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    pointer-events: none;
}

.comparison-old:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover), 0 0 60px rgba(227, 30, 36, 0.1);
    border-color: rgba(227, 30, 36, 0.25);
}

.comparison-new {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.1) 0%, rgba(34, 197, 94, 0.03) 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.comparison-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.comparison-new::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        linear-gradient(rgba(34, 197, 94, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.015) 1px, transparent 1px);
    background-size: 100% 100%, 30px 30px, 30px 30px;
    pointer-events: none;
}

.comparison-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover), 0 0 60px rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
}

.comparison-header {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.comparison-old .comparison-header {
    color: rgba(227, 30, 36, 0.7);
    border-bottom-color: rgba(227, 30, 36, 0.15);
}

.comparison-new .comparison-header {
    color: #22c55e;
    border-bottom-color: rgba(34, 197, 94, 0.2);
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 0;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
    transition: transform 0.2s ease;
}

.comparison-item:hover {
    transform: translateX(4px);
}

.comparison-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-top: 1px;
}

.comparison-item.negative .comparison-icon {
    background: rgba(227, 30, 36, 0.1);
}

.comparison-item.positive .comparison-icon {
    background: rgba(34, 197, 94, 0.15);
}

.comparison-icon svg {
    width: 14px;
    height: 14px;
}

.comparison-item.negative .comparison-icon svg {
    color: rgba(227, 30, 36, 0.6);
}

.comparison-item.positive .comparison-icon svg {
    color: #22c55e;
}

.comparison-item.negative span:last-child {
    color: rgba(255, 255, 255, 0.55);
}

.comparison-item.positive span:last-child {
    color: rgba(255, 255, 255, 0.9);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 20px;
    padding: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    position: relative;
}

.benefits-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    width: 44px;
    height: 44px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-check {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.35);
}

.benefit-check svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

.benefit-text h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 16px;
    }

    .benefit-item {
        gap: 16px;
        padding: 16px;
    }

    .benefit-check {
        width: 40px;
        height: 40px;
    }

    .benefit-check svg {
        width: 20px;
        height: 20px;
    }

    .benefit-text h4 {
        font-size: 1.05rem;
    }

    .benefit-text p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        padding: 20px;
        gap: 12px;
    }

    .benefit-item {
        gap: 14px;
        padding: 14px;
    }

    .benefit-check {
        width: 36px;
        height: 36px;
    }

    .benefit-check svg {
        width: 18px;
        height: 18px;
    }

    .benefit-text h4 {
        font-size: 1rem;
    }

    .benefit-text p {
        font-size: 0.85rem;
    }
}

/* Founder Section */
.founder {
    padding: 160px 0;
    background: linear-gradient(180deg, #0a0a0e 0%, #08080c 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.4), transparent);
}

.founder::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(227, 30, 36, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.founder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.founder .section-tag {
    margin-bottom: 24px;
}

.founder-name-container {
    position: relative;
    margin-bottom: 20px;
}

.founder-name {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.founder-name .char {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.1s ease;
}

.founder-name .char.space {
    width: 0.3em;
}

.founder-name .char.revealed {
    opacity: 1;
}

.founder-name-underline {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
    transition: width 1.2s ease;
}

.founder-name-container.visible .founder-name-underline {
    width: 60%;
}

.founder-name-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(227, 30, 36, 0.12) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.founder-name-container.visible .founder-name-glow {
    opacity: 1;
}

.founder-role {
    color: var(--red);
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 48px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.founder-bio-container {
    max-width: 650px;
    width: 100%;
}

.founder-bio {
    color: #a0a0a0;
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.founder-bio strong {
    color: var(--white);
}

.founder-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    width: 100%;
    margin: 48px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.founder-stat::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(227, 30, 36, 0.3);
}

.founder-stat:last-child::after {
    display: none;
}

.founder-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.founder-stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-clients {
    margin-top: 8px;
    padding: 32px 48px;
    background: rgba(227, 30, 36, 0.04);
    border: 1px solid rgba(227, 30, 36, 0.1);
    border-radius: 8px;
}

.founder-clients-label {
    display: block;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-bottom: 16px;
}

.founder-clients-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
}

.founder-clients-list span {
    color: #909090;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.founder-clients-list span:hover {
    color: var(--white);
}

.founder-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}

.founder-cta-group .cta-secondary {
    color: rgba(255, 255, 255, 0.6);
}

.founder-cta-group .cta-secondary:hover {
    color: var(--white);
}

/* Process Section */
.process {
    padding: 140px 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 50%, rgba(227, 30, 36, 0.04) 0%, transparent 70%),
        linear-gradient(180deg, #0c0c10 0%, #0a0a0e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.4), transparent);
}

.process::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.4), transparent);
}

.process .section-title {
    color: var(--white);
}

/* Process Steps - Editorial Style */
.process-steps {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 120px;
}

/* Vertical connecting line */
.process-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 70px;
    bottom: 70px;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(227, 30, 36, 0.3) 5%,
        rgba(227, 30, 36, 0.3) 95%,
        transparent 100%
    );
}

.step {
    position: relative;
    padding: 50px 0;
}

.step:hover .step-content h3 {
    color: var(--red);
}

.step:hover .step-content {
    /* no transform */
}

.step-num {
    position: absolute;
    left: -108px;
    top: 42px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--red);
    background: #0a0a0e;
    border: 1px solid rgba(227, 30, 36, 0.4);
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2;
}

.step:hover .step-num {
    background: rgba(227, 30, 36, 0.15);
    border-color: var(--red);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.3);
}

.step-content {
    transition: transform 0.3s ease;
}

.step-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 14px 0;
    transition: color 0.3s ease;
}

.step-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin: 0;
    max-width: 550px;
}


/* FAQ Section */
.faq {
    padding: 140px 0;
    background: linear-gradient(180deg, #0a0a0e 0%, var(--black) 100%);
    color: var(--white);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

.faq::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.4), transparent);
}

.faq .section-title {
    color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, opacity 0.6s ease-out, transform 0.6s ease-out;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.faq-item.open {
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 0 40px rgba(227, 30, 36, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 28px;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.3s, padding-left 0.3s;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    color: var(--red);
    padding-left: 32px;
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer > div {
    overflow: hidden;
    padding: 0 28px;
    color: #909090;
    font-size: 0.9375rem;
    line-height: 1.8;
    transition: padding 0.3s ease;
}

.faq-item.open .faq-answer > div {
    padding-bottom: 24px;
}

/* CTA Section (extends base.css) */
.cta-urgency {
    display: inline-block;
    background: rgba(227, 30, 36, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 32px;
    animation: pulse-urgency 2s infinite;
    border: 1px solid rgba(227, 30, 36, 0.4);
    letter-spacing: 0.5px;
    color: var(--white);
}

@keyframes pulse-urgency {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
    animation: whatsapp-ring 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 36px;
    height: 36px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); }
}

@keyframes whatsapp-ring {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

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

    .hero h1 {
	font-size: 2.5rem;
	letter-spacing: -1px;
    }

    .hero p {
	font-size: 1.1rem;
    }

    .hero-stats {
	flex-direction: column;
	gap: 24px;
	margin-top: 48px;
    }

    .hero-stat-operator {
	display: none;
    }

    .hero-stat-number {
	font-size: 2rem;
    }

    .hero-cta-group {
	flex-direction: column;
	align-items: flex-start;
    }

    .cta-secondary {
	padding: 12px 0;
    }

    /* Process section mobile */
    .process-steps {
        padding-left: 0;
    }

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

    .step {
        padding: 28px 0;
    }

    .step-num {
        position: static;
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .problem, .services, .why-us, .founder, .process, .faq {
        padding: 60px 0;
    }

    .founder {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 28px;
    }

    .founder-name {
	font-size: 2.25rem;
    }

    .founder-stats {
	gap: 40px;
	flex-wrap: wrap;
    }

    .founder-stat::after {
	display: none;
    }

    .founder-stat-number {
	font-size: 2rem;
    }

    .founder-clients {
	padding: 24px 20px;
    }

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

    .problem-solution {
	padding: 32px 24px;
    }

    .problem-solution h3 {
	font-size: 1.5rem;
    }

    .comparison-table {
	grid-template-columns: 1fr;
    }

    .faq-item summary {
        padding: 20px 24px;
        font-size: 1rem;
    }

    .whatsapp-float {
	bottom: 20px;
	right: 20px;
	width: 56px;
	height: 56px;
    }

    .whatsapp-float svg {
	width: 30px;
	height: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .problem, .services, .why-us, .process, .faq {
        padding: 48px 0;
    }

    .founder {
        padding: 60px 0;
    }

    .section-header h2,
    .section-title {
        font-size: 1.5rem;
    }

    .step {
        padding: 24px 0;
    }

    .step-num {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
        margin-bottom: 12px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .founder-name {
        font-size: 1.75rem;
    }

    .founder-stat-number {
        font-size: 1.75rem;
    }

    .problem-solution {
        padding: 24px 20px;
    }

    .problem-solution h3 {
        font-size: 1.25rem;
    }

    .service-card {
        padding: 24px;
    }

    .faq-item summary {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
}

/* CTA Section (Index only) */
.cta-section {
    text-align: center;
    padding: 160px 0;
    background: rgba(5, 5, 8, 0.7);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(227, 30, 36, 0.35), transparent);
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    padding: 22px 48px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 8px 40px rgba(227, 30, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 60px rgba(227, 30, 36, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

p.cta-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 24px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 24px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 18px 32px;
    }

    .cta-button svg {
        display: none;
    }
}

@media (max-width: 360px) {
    .cta-button {
        padding: 16px 24px;
        font-size: 0.9375rem;
        gap: 8px;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }
}
