﻿/* ========================================================
   MASTERPIECE INTERACTIVE CSS (TOP CLASS PREMIUM)
   ======================================================== */

/* --- 1. Scroll Reveal Animations --- */
.reveal-up { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal-up.active, .reveal-left.active, .reveal-right.active { opacity: 1; transform: translate(0, 0); }

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }

/* --- 2. 3D Flip Cards --- */
.flip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; perspective: 1000px; }
.flip-card { background: transparent; height: 350px; cursor: pointer; border-radius: 20px; }
.flip-card-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.8s; transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-front, .flip-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.flip-front { background: #fff; border: 1px solid #f1f5f9; }
.flip-front i { font-size: 50px; color: var(--primary); margin-bottom: 20px; }
.flip-front h3 { font-size: 22px; font-weight: 800; color: var(--dark); margin: 0; }
.flip-back { background: var(--gradient); color: white; transform: rotateY(180deg); }
.flip-back h3 { color: #fff; font-size: 20px; margin-bottom: 15px; }
.flip-back p { font-size: 15px; line-height: 1.6; margin: 0; color: rgba(255,255,255,0.9); }

/* --- 3. Interactive Tabbed Interface --- */
.tab-container { display: flex; max-width: 1200px; margin: 0 auto; background: #fff; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); overflow: hidden; }
.tab-sidebar { width: 30%; background: #f8fafc; padding: 20px 0; border-right: 1px solid #e2e8f0; }
.tab-btn { display: block; width: 100%; text-align: left; padding: 20px 30px; border: none; background: transparent; font-size: 16px; font-weight: 700; color: #64748b; cursor: pointer; transition: 0.3s; position: relative; }
.tab-btn:hover { color: var(--primary); background: #f1f5f9; }
.tab-btn.active { color: var(--primary); background: #fff; }
.tab-btn.active::before { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--primary); }
.tab-content-area { width: 70%; padding: 50px; position: relative; background: #fff; }
.tab-pane { display: none; animation: fadeIn 0.5s ease-in-out; }
.tab-pane.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.tab-pane h3 { font-size: 28px; color: var(--dark); margin-bottom: 20px; }
.tab-pane p { font-size: 16px; color: var(--text); line-height: 1.8; margin-bottom: 25px; }
.tab-pane img { width: 100%; border-radius: 10px; max-height: 300px; object-fit: cover; }

/* --- 4. Asymmetrical Masonry Grid --- */
.masonry-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; grid-auto-rows: 250px; }
.masonry-item { background: #fff; border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.4s; }
.masonry-item:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.masonry-large { grid-column: span 2; grid-row: span 2; }
.masonry-tall { grid-row: span 2; }
.masonry-wide { grid-column: span 2; }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 30px; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; }
.masonry-overlay h4 { font-size: 24px; margin-bottom: 10px; color: #fff; }
.masonry-overlay p { font-size: 14px; margin: 0; opacity: 0.9; }

/* --- 5. Sticky Scroll Section --- */
.sticky-container { display: flex; max-width: 1200px; margin: 0 auto; gap: 50px; position: relative; align-items: flex-start; }
.sticky-left { width: 40%; position: sticky; top: 120px; padding-bottom: 50px; }
.sticky-left h2 { font-size: 40px; font-weight: 900; color: var(--dark); line-height: 1.2; margin-bottom: 20px; }
.sticky-right { width: 60%; }
.sticky-step { background: #fff; padding: 50px; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); margin-bottom: 50px; border-left: 5px solid var(--primary); }
.sticky-step:last-child { margin-bottom: 0; }
.sticky-step h3 { font-size: 25px; margin-bottom: 15px; color: var(--dark); }
.sticky-step p { font-size: 16px; line-height: 1.7; color: var(--text); }

/* --- 6. Neon Glow Border Boxes --- */
.neon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; max-width: 1100px; margin: 0 auto; }
.neon-box { background: #0f172a; padding: 40px; border-radius: 20px; position: relative; text-align: center; overflow: hidden; z-index: 1; transition: 0.3s; }
.neon-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(transparent, transparent, transparent, var(--primary)); animation: rotateGlow 4s linear infinite; z-index: -2; opacity: 0; transition: 0.3s; }
.neon-box::after { content: ''; position: absolute; inset: 3px; background: #0f172a; border-radius: 17px; z-index: -1; }
.neon-box:hover::before { opacity: 1; }
.neon-box:hover { transform: translateY(-10px); }
@keyframes rotateGlow { 100% { transform: rotate(360deg); } }
.neon-box i { font-size: 45px; color: #fff; margin-bottom: 20px; }
.neon-box h3 { font-size: 22px; color: #fff; margin-bottom: 15px; }
.neon-box p { font-size: 15px; color: #94a3b8; line-height: 1.6; }

@media (max-width: 991px) {
    .flip-grid { grid-template-columns: repeat(2, 1fr); }
    .tab-container { flex-direction: column; }
    .tab-sidebar { width: 100%; display: flex; overflow-x: auto; border-right: none; border-bottom: 1px solid #e2e8f0; }
    .tab-btn { white-space: nowrap; padding: 15px 20px; }
    .tab-btn.active::before { height: 4px; width: 100%; top: auto; bottom: 0; }
    .tab-content-area { width: 100%; padding: 30px; }
    .masonry-wrap { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .sticky-container { flex-direction: column; }
    .sticky-left { width: 100%; position: relative; top: 0; padding-bottom: 20px; }
    .sticky-right { width: 100%; }
    .neon-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .flip-grid { grid-template-columns: 1fr; }
    .masonry-wrap { grid-template-columns: 1fr; }
    .masonry-large, .masonry-wide { grid-column: span 1; }
    .neon-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   BATCH 1 NEW PREMIUM COMPONENTS (BENTO, TIMELINE, 3D)
   ======================================================== */

/* --- 6. Bento Grid (Apple-style) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    margin-top: 40px;
}
.bento-box {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 106, 190, 0.08);
    border: 1px solid rgba(26, 106, 190, 0.1);
    transition: var(--transition);
}
.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26, 106, 190, 0.15);
}
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 2; }
.bento-box i { font-size: 32px; color: var(--primary); margin-bottom: 20px; display: block; }
.bento-box h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.bento-box p { font-size: 15px; color: var(--text-muted); }

/* --- 7. Glassmorphism Timeline --- */
.glass-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}
.glass-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--primary-light));
    border-radius: 4px;
}
.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
}
.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}
.timeline-content {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 15px 35px rgba(26, 106, 190, 0.1);
    padding: 30px;
    border-radius: 20px;
    width: 85%;
    position: relative;
}
.timeline-item:nth-child(odd) .timeline-content { margin-right: 40px; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 40px; }
.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(26, 106, 190, 0.2);
}
.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }
.timeline-content h3 { color: var(--primary); font-size: 20px; margin-bottom: 10px; }

/* --- 8. Floating Tech Stack Cubes --- */
.tech-stack-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.tech-cube {
    width: 120px;
    height: 120px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border);
    animation: floatUpDown 4s ease-in-out infinite;
}
.tech-cube:nth-child(2) { animation-delay: 0.5s; }
.tech-cube:nth-child(3) { animation-delay: 1s; }
.tech-cube:nth-child(4) { animation-delay: 1.5s; }
.tech-cube:nth-child(5) { animation-delay: 2s; }
.tech-cube:hover {
    transform: translateY(-15px) scale(1.1);
    box-shadow: 0 20px 40px rgba(26, 106, 190, 0.2);
    border-color: var(--primary);
}
.tech-cube i { font-size: 40px; margin-bottom: 10px; color: var(--primary); }
.tech-cube span { font-size: 13px; font-weight: 600; color: var(--text-dark); }
@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ========================================================
   MORE PREMIUM COMPONENTS FOR BATCH 1 FIX
   ======================================================== */
.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1400px;
}

/* --- 9. Premium Info Cards --- */
.premium-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.premium-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(26, 106, 190, 0.1);
    transition: all 0.4s ease;
    z-index: 1;
}
.premium-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}
.premium-card:hover {
    transform: translateY(-10px);
    border-color: transparent;
}
.premium-card:hover::before {
    transform: scaleY(1);
}
.premium-card:hover h3, .premium-card:hover p, .premium-card:hover i {
    color: #fff;
}
.premium-card i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: 0.4s;
}
.premium-card h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
    transition: 0.4s;
}
.premium-card p {
    font-size: 15px;
    color: var(--text-muted);
    transition: 0.4s;
}

/* --- 10. Split Screen Feature --- */
.split-feature {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 50px;
}
.split-feature.reverse {
    flex-direction: row-reverse;
}
.split-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.split-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.split-image:hover img {
    transform: scale(1.05);
}
.split-content {
    flex: 1;
}
.split-content h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}
.split-content p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 30px;
    line-height: 1.8;
}
.split-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}
.split-list li i {
    color: var(--primary);
    font-size: 20px;
}

/* --- 11. Circular Stats --- */
.circular-stats-wrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}
.circle-stat {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(26, 106, 190, 0.15);
    border: 10px solid var(--primary-light);
    position: relative;
    transition: 0.3s;
}
.circle-stat:hover {
    transform: scale(1.1);
    border-color: var(--primary);
}
.circle-stat h4 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}
.circle-stat span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ========================================================
   BATCH 2 NEW PREMIUM COMPONENTS & ANIMATIONS
   ======================================================== */

/* --- New Reveal Animations --- */
.reveal-zoom {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-flip {
    opacity: 0;
    transform: perspective(400px) rotateY(90deg);
    transition: all 0.8s ease-out;
}
.reveal-flip.active {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg);
}

.reveal-drop {
    opacity: 0;
    transform: translateY(-50px);
    transition: all 0.8s ease-out;
}
.reveal-drop.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- 12. Hexagon Feature Grid --- */
.hexagon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
.hex-card {
    width: 250px;
    height: 280px;
    background: #fff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: 0.5s;
    border: 2px solid transparent;
}
/* A faux border for clip-path requires a wrapper, but we'll use a shadow filter instead */
.hex-wrap {
    filter: drop-shadow(0px 10px 15px rgba(26, 106, 190, 0.15));
    transition: 0.5s;
}
.hex-wrap:hover {
    filter: drop-shadow(0px 15px 25px rgba(26, 106, 190, 0.4));
    transform: translateY(-10px);
}
.hex-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}
.hex-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}
.hex-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* --- 13. Staggered Glow List --- */
.staggered-glow-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto;
}
.glow-list-item {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.glow-list-item:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(26, 106, 190, 0.2);
    border-left-color: var(--accent);
}
.glow-number {
    font-size: 45px;
    font-weight: 900;
    color: rgba(26, 106, 190, 0.1);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}
.glow-list-item:hover .glow-number {
    color: var(--primary-light);
    transform: translateY(-50%) scale(1.2);
}
.glow-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--text-dark);
}
.glow-content p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

/* --- 14. Gradient Border Cards --- */
.gradient-border-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.gb-card {
    position: relative;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    z-index: 1;
    transition: 0.4s;
}
.gb-card::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 15px;
    background: linear-gradient(45deg, var(--primary), #00ff87, var(--accent2), var(--primary-dark));
    z-index: -1;
    filter: blur(5px);
    opacity: 0;
    transition: 0.5s ease-in-out;
}
.gb-card:hover::before {
    opacity: 1;
}
.gb-card:hover {
    transform: translateY(-5px);
}
.gb-card i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 20px;
}
.gb-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* ========================================================
   CRM SOFTWARE MASTERPIECE COMPONENTS
   ======================================================== */

/* CRM Animations */
.crm-fade-up { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1); }
.crm-fade-up.active { opacity: 1; transform: translateY(0); }

.crm-slide-left { opacity: 0; transform: translateX(-60px); transition: all 0.9s ease-out; }
.crm-slide-left.active { opacity: 1; transform: translateX(0); }

.crm-scale-bounce { opacity: 0; transform: scale(0.5); transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.crm-scale-bounce.active { opacity: 1; transform: scale(1); }

/* 1. Floating Dashboard Hero (Specific to CRM) */
.crm-dashboard-hero {
    position: relative;
    margin-top: -60px;
    z-index: 5;
    text-align: center;
}
.crm-dashboard-hero img {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    border: 5px solid rgba(255,255,255,0.1);
    animation: crmFloat 6s ease-in-out infinite;
}
@keyframes crmFloat {
    0%, 100% { transform: translateY(0) rotateX(5deg); }
    50% { transform: translateY(-20px) rotateX(2deg); }
}

/* 2. Glass Hexagons (CRM) */
.crm-glass-hex-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}
.crm-glass-hex {
    width: 220px;
    height: 250px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    border: 1px solid rgba(26, 106, 190, 0.2);
    transition: 0.4s;
    cursor: pointer;
}
.crm-glass-hex:hover {
    background: var(--primary);
    transform: scale(1.05);
}
.crm-glass-hex:hover i, .crm-glass-hex:hover h3, .crm-glass-hex:hover p {
    color: #fff;
}
.crm-glass-hex i { font-size: 35px; color: var(--primary); margin-bottom: 15px; transition: 0.4s; }
.crm-glass-hex h3 { font-size: 18px; color: var(--text-dark); margin-bottom: 10px; transition: 0.4s; }

/* 3. Sales Funnel Graphic (CRM) */
.crm-funnel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}
.crm-funnel-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    height: 80px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}
.crm-funnel-stage:hover { transform: scale(1.02); }
.crm-funnel-1 { width: 100%; max-width: 800px; background: #0A2477; border-radius: 10px 10px 0 0; clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%); }
.crm-funnel-2 { width: 80%; max-width: 640px; background: #1A6ABE; clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%); }
.crm-funnel-3 { width: 60%; max-width: 480px; background: #309F5B; clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%); }
.crm-funnel-4 { width: 40%; max-width: 320px; background: #E91E63; border-radius: 0 0 10px 10px; clip-path: polygon(0 0, 100% 0, 70% 100%, 30% 100%); }

/* 4. Kanban Board UI (CRM) */
.crm-kanban-board {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}
.crm-kanban-column {
    flex: 1;
    min-width: 280px;
    background: #f4f7ff;
    border-radius: 12px;
    padding: 20px;
    border-top: 4px solid var(--primary);
}
.crm-kanban-column:nth-child(2) { border-color: #f39c12; }
.crm-kanban-column:nth-child(3) { border-color: #309F5B; }
.crm-kanban-column h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; display: flex; justify-content: space-between; }
.crm-kanban-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 3px solid transparent;
    transition: 0.3s;
}
.crm-kanban-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); border-left-color: var(--accent); cursor: pointer; }
.crm-kanban-price { font-weight: 700; color: var(--primary); font-size: 18px; }

/* 5. Analytics Circles (CRM) */
.crm-analytics-wrap {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
}
.crm-circle-bar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: conic-gradient(var(--primary) var(--progress, 0%), #e0e0e0 0);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.crm-circle-inner {
    width: 170px;
    height: 170px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
.crm-circle-inner h2 { font-size: 40px; color: var(--text-dark); margin: 0; }
.crm-circle-inner span { font-size: 14px; color: var(--text-muted); text-align: center; }

/* 6. Integration App Grid (CRM) */
.crm-app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.crm-app-icon {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}
.crm-app-icon:hover {
    transform: translateY(-10px) rotate(5deg);
    box-shadow: 0 20px 40px rgba(26, 106, 190, 0.15);
}
.crm-app-icon i { font-size: 50px; margin-bottom: 15px; color: #444; }

/* 7. Split CTA Panel (CRM) */
.crm-split-cta {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(26, 106, 190, 0.2);
    margin-top: 60px;
}
.crm-cta-left {
    flex: 1;
    background: var(--primary);
    color: #fff;
    padding: 60px 50px;
}
.crm-cta-left h2 { color: #fff; font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.crm-cta-right {
    flex: 1;
    background: #fff;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.crm-cta-right input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    outline: none;
}
.crm-cta-right input:focus { border-color: var(--primary); }

/* ========================================================
   COMPLAINT MANAGEMENT MASTERPIECE COMPONENTS
   ======================================================== */

/* CM Animations */
.cm-reveal-up { opacity: 0; transform: translateY(60px) scale(0.95); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.cm-reveal-up.active { opacity: 1; transform: translateY(0) scale(1); }

.cm-reveal-right { opacity: 0; transform: translateX(80px); transition: all 1s ease-out; }
.cm-reveal-right.active { opacity: 1; transform: translateX(0); }

.cm-fade-in { opacity: 0; transition: opacity 1.5s ease-in-out; }
.cm-fade-in.active { opacity: 1; }

.cm-spin-in { opacity: 0; transform: rotate(-180deg) scale(0.2); transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1); }
.cm-spin-in.active { opacity: 1; transform: rotate(0) scale(1); }

/* 1. Neumorphic Feature Grid (CM) */
.cm-neu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}
.cm-neu-card {
    background: #f4f7ff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 10px 10px 20px #d9dfed, -10px -10px 20px #ffffff;
    transition: 0.4s ease;
}
.cm-neu-card:hover {
    box-shadow: inset 10px 10px 20px #d9dfed, inset -10px -10px 20px #ffffff;
}
.cm-neu-card i { font-size: 45px; color: var(--primary); margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
.cm-neu-card h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 15px; font-weight: 700; }
.cm-neu-card p { font-size: 15px; color: var(--text-muted); line-height: 1.6; }

/* 2. Zigzag Path Workflow (CM) */
.cm-zigzag-wrap {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
}
.cm-zigzag-wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 2px; height: 100%;
    background: dashed 2px var(--primary-light);
    transform: translateX(-50%);
    z-index: 1;
}
.cm-zig-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}
.cm-zig-content {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.cm-zig-item:nth-child(even) .cm-zig-content {
    border-left: none;
    border-right: 5px solid var(--primary);
    text-align: right;
}
.cm-zig-icon {
    width: 60px; height: 60px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 10px #fff;
}
.cm-zig-item:nth-child(even) { flex-direction: row-reverse; }

/* 3. Omni-Channel Wheel (CM) */
.cm-omni-wheel {
    position: relative;
    width: 400px; height: 400px;
    margin: 80px auto;
    border-radius: 50%;
    border: 2px dashed var(--primary-light);
    display: flex; align-items: center; justify-content: center;
    animation: cmRotate 20s linear infinite;
}
@keyframes cmRotate { 100% { transform: rotate(360deg); } }
.cm-omni-center {
    width: 120px; height: 120px;
    background: var(--primary); color: #fff;
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    animation: cmRotateRev 20s linear infinite;
    box-shadow: 0 10px 30px rgba(26, 106, 190, 0.4);
}
.cm-omni-icon {
    position: absolute;
    width: 60px; height: 60px;
    background: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: cmRotateRev 20s linear infinite;
}
.cm-omni-icon:nth-child(2) { top: -30px; left: 170px; color: #E1306C; } /* Insta */
.cm-omni-icon:nth-child(3) { bottom: -30px; left: 170px; color: #25D366; } /* WhatsApp */
.cm-omni-icon:nth-child(4) { left: -30px; top: 170px; color: #1DA1F2; } /* Twitter */
.cm-omni-icon:nth-child(5) { right: -30px; top: 170px; color: #EA4335; } /* Gmail */
@keyframes cmRotateRev { 100% { transform: rotate(-360deg); } }

/* 4. CSS Bar Chart Mockup (CM) */
.cm-chart-container {
    display: flex; align-items: flex-end; justify-content: space-around;
    height: 300px;
    padding-bottom: 20px; border-bottom: 2px solid #ddd;
    margin-top: 50px;
}
.cm-chart-bar {
    width: 60px;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.cm-chart-bar::after {
    content: attr(data-val);
    position: absolute; top: -30px; left: 50%;
    transform: translateX(-50%); font-weight: bold; color: var(--text-dark);
}
.cm-chart-bar::before {
    content: attr(data-label);
    position: absolute; bottom: -40px; left: 50%;
    transform: translateX(-50%); font-size: 14px; color: var(--text-muted);
}

/* 5. Folder Tabs (CM) */
.cm-folder-wrap { display: flex; gap: 20px; margin-top: 50px; flex-wrap: wrap; }
.cm-folder {
    flex: 1; min-width: 250px;
    background: #fff;
    border-radius: 0 15px 15px 15px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    position: relative;
    border-top: 4px solid var(--primary);
    transition: 0.3s;
}
.cm-folder::before {
    content: ''; position: absolute;
    top: -20px; left: 0; width: 80px; height: 20px;
    background: var(--primary);
    border-radius: 10px 10px 0 0;
}
.cm-folder:hover { transform: translateY(-5px); }

/* 6. Dark Sticky CTA (CM) */
.cm-dark-cta {
    background: #0f172a;
    color: #fff;
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}
.cm-dark-cta h2 { color: #fff; font-size: 40px; margin-bottom: 20px; position: relative; z-index: 2; }
.cm-dark-cta p { font-size: 18px; color: #94a3b8; margin-bottom: 40px; position: relative; z-index: 2; }
.cm-dark-cta .btn-glow { position: relative; z-index: 2; background: var(--primary); border: none; }
.cm-dark-cta::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(26,106,190,0.2) 0%, transparent 50%);
    z-index: 1; animation: cmPulse 4s infinite alternate;
}
@keyframes cmPulse { 0% { transform: scale(1); } 100% { transform: scale(1.2); } }

/* ========================================================
   IT ASSET MANAGEMENT (ITAM) MASTERPIECE COMPONENTS
   ======================================================== */

/* ITAM Animations */
.itam-fade-in-up { opacity: 0; transform: translateY(50px) perspective(500px) rotateX(-10deg); transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1); }
.itam-fade-in-up.active { opacity: 1; transform: translateY(0) perspective(500px) rotateX(0deg); }

.itam-slide-in-right { opacity: 0; transform: translateX(100px); transition: all 1s ease-out; }
.itam-slide-in-right.active { opacity: 1; transform: translateX(0); }

.itam-pop-in { opacity: 0; transform: scale(0.3); transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.itam-pop-in.active { opacity: 1; transform: scale(1); }

.itam-pulse-slow { animation: itamPulse 3s infinite; }
@keyframes itamPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.05); } }

/* 1. Hero Split Overlay (ITAM) */
.itam-hero-split {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 50%, #e2e8f0 50%);
    overflow: hidden;
    text-align: center;
}
.itam-hero-split h1 { font-size: 48px; color: var(--text-dark); margin-bottom: 20px; font-weight: 800; position: relative; z-index: 2; }
.itam-hero-split p { font-size: 20px; color: var(--text-muted); max-width: 800px; margin: 0 auto 40px auto; position: relative; z-index: 2; }
.itam-floating-tag { z-index: 1;
    position: absolute;
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-weight: bold;
    color: var(--primary);
    animation: floatTag 8s infinite alternate ease-in-out;
}
.itam-tag-1 { top: 10%; left: 5%; animation-delay: 0s; }
.itam-tag-2 { top: 75%; left: 10%; animation-delay: 2s; }
.itam-tag-3 { top: 15%; right: 5%; animation-delay: 4s; }
.itam-tag-4 { top: 80%; right: 10%; animation-delay: 1s; }
@keyframes floatTag { 100% { transform: translateY(-30px) rotate(5deg); } }

/* 2. Dashboard Mock Grid (ITAM) */
.itam-dash-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 20px;
    margin-top: 50px;
}
.itam-dash-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(26,106,190,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 4px solid var(--primary);
    transition: 0.3s;
}
.itam-dash-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(26,106,190,0.15); }
.itam-dash-large { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; }
.itam-dash-card h4 { color: var(--text-muted); font-size: 16px; margin-bottom: 10px; text-transform: uppercase; }
.itam-dash-card .val { font-size: 40px; font-weight: 800; color: var(--text-dark); }
.itam-dash-card .stat { font-size: 14px; color: #27ae60; font-weight: bold; display: flex; align-items: center; gap: 5px; }

/* 3. Horizontal Scroll Timeline (ITAM) */
.itam-horizon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    position: relative;
    padding-bottom: 20px;
}
.itam-horizon-wrap::before {
    content: ''; position: absolute;
    top: 30px; left: 0; width: 100%; height: 4px;
    background: #e2e8f0; z-index: 1;
}
.itam-step {
    width: 22%;
    position: relative;
    z-index: 2;
    text-align: center;
}
.itam-step-icon {
    width: 60px; height: 60px;
    margin: 0 auto 20px auto;
    background: #fff; border: 4px solid var(--primary); color: var(--primary);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: bold; transition: 0.4s;
}
.itam-step:hover .itam-step-icon { background: var(--primary); color: #fff; transform: scale(1.1); box-shadow: 0 10px 20px rgba(26,106,190,0.3); }
.itam-step h3 { font-size: 18px; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.itam-step p { font-size: 14px; color: var(--text-muted); }

/* 4. Circular Node Map (ITAM) */
.itam-node-map {
    position: relative;
    width: 100%; height: 450px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 40px;
}
.itam-node-center {
    width: 150px; height: 150px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff; border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 20px; font-weight: bold; z-index: 5;
    box-shadow: 0 15px 30px rgba(26,106,190,0.4);
}
.itam-node-item {
    position: absolute;
    width: 100px; height: 100px;
    background: #fff; color: var(--primary);
    border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); font-size: 14px; font-weight: bold;
    border: 2px solid var(--primary-light);
    transition: 0.5s;
}
.itam-node-item:hover { transform: scale(1.2) translateY(-10px); z-index: 6; border-color: var(--primary); color: #fff; background: var(--primary); }
.itam-node-item:nth-child(2) { top: 0; left: 50%; margin-left: -50px; }
.itam-node-item:nth-child(3) { top: 50%; right: 10%; margin-top: -50px; }
.itam-node-item:nth-child(4) { bottom: 0; left: 50%; margin-left: -50px; }
.itam-node-item:nth-child(5) { top: 50%; left: 10%; margin-top: -50px; }

/* 5. Fan Cards (ITAM) */
.itam-fan-wrap {
    display: flex; justify-content: center; align-items: center;
    height: 350px; margin-top: 40px;
}
.itam-fan-card {
    width: 250px; height: 320px;
    background: #fff; border-radius: 15px;
    position: absolute;
    box-shadow: -10px 0 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    padding: 30px 20px; text-align: center;
    transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom center;
}
.itam-fan-card:nth-child(1) { transform: rotate(-10deg) translateX(-100px); }
.itam-fan-card:nth-child(2) { transform: rotate(0deg) translateX(0); z-index: 2; }
.itam-fan-card:nth-child(3) { transform: rotate(10deg) translateX(100px); }
.itam-fan-wrap:hover .itam-fan-card:nth-child(1) { transform: rotate(-20deg) translateX(-160px); }
.itam-fan-wrap:hover .itam-fan-card:nth-child(2) { transform: rotate(0deg) translateX(0) scale(1.05); z-index: 2; box-shadow: 0 15px 40px rgba(26,106,190,0.3); border-color: var(--primary); }
.itam-fan-wrap:hover .itam-fan-card:nth-child(3) { transform: rotate(20deg) translateX(160px); }
.itam-fan-card i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.itam-fan-card h3 { font-size: 20px; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.itam-fan-card p { font-size: 14px; color: var(--text-muted); }

/* 6. Scanner Mockup (ITAM) */
.itam-scanner-mock {
    position: relative;
    max-width: 400px;
    margin: 50px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(26,106,190,0.1);
    text-align: center;
    overflow: hidden;
}
.itam-barcode { font-size: 100px; color: var(--text-dark); font-family: 'Courier New', Courier, monospace; letter-spacing: -10px; margin-bottom: 20px; }
.itam-laser {
    position: absolute;
    top: -10px; left: 0; width: 100%; height: 2px;
    background: #ff0000;
    box-shadow: 0 0 10px 2px #ff0000;
    animation: scanLaser 2s infinite ease-in-out;
}
@keyframes scanLaser { 0%, 100% { top: 20%; } 50% { top: 80%; } }

/* 7. 3D CTA (ITAM) */
.itam-3d-cta {
    background: var(--primary-dark);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: #fff;
    margin-top: 60px;
    box-shadow: 
        0 10px 0 var(--primary),
        0 20px 30px rgba(0,0,0,0.3);
    transition: 0.3s;
}
.itam-3d-cta:hover {
    transform: translateY(10px);
    box-shadow: 
        0 0px 0 var(--primary),
        0 10px 15px rgba(0,0,0,0.2);
}
.itam-3d-cta h2 { color: #fff; font-size: 40px; font-weight: 800; margin-bottom: 20px; }
.itam-3d-cta p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 30px; }
.itam-3d-cta .btn-glow { background: #fff; color: var(--primary-dark); font-weight: bold; }


/* ========================================================
   WEB APPLICATION MASTERPIECE COMPONENTS
   ======================================================== */

/* WA Animations */
.wa-swing-in { opacity: 0; transform: rotateX(-100deg); transform-origin: top; transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.wa-swing-in.active { opacity: 1; transform: rotateX(0deg); }

.wa-blur-reveal { opacity: 0; filter: blur(10px); transform: scale(1.1); transition: all 1.2s ease; }
.wa-blur-reveal.active { opacity: 1; filter: blur(0); transform: scale(1); }

.wa-slide-up-fade { opacity: 0; transform: translateY(80px); transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1); }
.wa-slide-up-fade.active { opacity: 1; transform: translateY(0); }

/* 1. Browser Mockup Hero (WA) */
.wa-hero-wrap {
    background: #0f172a;
    padding: 120px 0 80px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.wa-browser-mock {
    max-width: 900px;
    margin: 60px auto 0;
    background: #1e293b;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid #334155;
    position: relative;
    z-index: 2;
}
.wa-browser-head {
    height: 40px;
    background: #0f172a;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 8px;
    border-bottom: 1px solid #334155;
}
.wa-dot { width: 12px; height: 12px; border-radius: 50%; }
.wa-dot.r { background: #ef4444; }
.wa-dot.y { background: #eab308; }
.wa-dot.g { background: #22c55e; }
.wa-browser-content {
    padding: 0;
    position: relative;
}
.wa-browser-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 12px 12px;
}

/* 2. Masonry Feature Grid (WA) */
.wa-masonry-grid {
    column-count: 2;
    column-gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}
@media (max-width: 768px) { .wa-masonry-grid { column-count: 1; } }
.wa-masonry-item {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.wa-masonry-item::before {
    content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0%;
    background: var(--primary); transition: 0.4s ease;
}
.wa-masonry-item:hover::before { height: 100%; }
.wa-masonry-item:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(26,106,190,0.12); }
.wa-masonry-item i { font-size: 38px; color: var(--primary); margin-bottom: 20px; }
.wa-masonry-item h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 15px; }
.wa-masonry-item p { color: var(--text-muted); line-height: 1.7; margin: 0; }

/* 3. Tech Stack Carousel (WA) */
.wa-tech-wrap {
    overflow: hidden;
    white-space: nowrap;
    padding: 60px 0;
    background: #fff;
    position: relative;
}
.wa-tech-wrap::before, .wa-tech-wrap::after {
    content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2;
}
.wa-tech-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.wa-tech-wrap::after { right: 0; background: linear-gradient(to left, #fff, transparent); }
.wa-tech-track {
    display: inline-block;
    animation: waScroll 25s linear infinite;
}
.wa-tech-icon {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    margin: 0 30px;
    background: #f8fafc;
    border-radius: 20px;
    transition: 0.3s;
    color: var(--text-muted);
}
.wa-tech-icon:hover { transform: scale(1.1); background: var(--primary-light); color: var(--primary); }
.wa-tech-icon i { font-size: 45px; margin-bottom: 10px; }
.wa-tech-icon span { font-size: 14px; font-weight: 600; }
@keyframes waScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 4. Circuit Board Architecture (WA) */
.wa-circuit-box {
    background: #020617;
    border-radius: 24px;
    padding: 60px;
    position: relative;
    margin-top: 50px;
    color: #fff;
    box-shadow: 0 0 50px rgba(16, 185, 129, 0.1);
    border: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.wa-circuit-node {
    flex: 1;
    background: #0f172a;
    border: 2px solid #334155;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: 0.4s;
}
.wa-circuit-node:hover { border-color: #10b981; box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
.wa-circuit-node i { font-size: 40px; color: #10b981; margin-bottom: 15px; }
.wa-circuit-line {
    flex: 0.5;
    height: 4px;
    background: #334155;
    position: relative;
    z-index: 1;
}
.wa-circuit-line::after {
    content: ''; position: absolute; top: 0; left: 0; height: 100%; width: 0%;
    background: #10b981; box-shadow: 0 0 10px #10b981;
    animation: waCircuitFlow 3s infinite;
}
@keyframes waCircuitFlow { 0% { width: 0%; opacity: 1; } 100% { width: 100%; opacity: 0; } }

/* 5. Security Shield Reveal (WA) */
.wa-shield-wrap {
    display: flex; justify-content: center; margin-top: 60px;
}
.wa-shield-card {
    width: 350px; height: 400px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px; text-align: center;
    position: relative; overflow: hidden;
}
.wa-shield-icon {
    font-size: 80px; color: #3b82f6; transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; z-index: 2;
}
.wa-shield-text {
    opacity: 0; transform: translateY(20px); transition: 0.5s; position: relative; z-index: 2; margin-top: 20px;
}
.wa-shield-card::after {
    content: ''; position: absolute; bottom: -50px; left: -50%; width: 200%; height: 0%;
    background: #eff6ff; transition: 0.5s; border-radius: 50% 50% 0 0; z-index: 1;
}
.wa-shield-card:hover::after { height: 200%; bottom: -50px; border-radius: 0; }
.wa-shield-card:hover .wa-shield-icon { transform: translateY(-20px) scale(0.8); }
.wa-shield-card:hover .wa-shield-text { opacity: 1; transform: translateY(0); }

/* 6. Speedometer Dials (WA) */
.wa-speed-grid {
    display: flex; justify-content: center; gap: 60px; margin-top: 60px; flex-wrap: wrap;
}
.wa-speed-dial {
    width: 220px; height: 110px;
    position: relative;
    overflow: hidden;
    display: flex; justify-content: center; align-items: flex-end;
}
.wa-speed-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 220px;
    border-radius: 50%;
    background: conic-gradient(from -90deg at 50% 50%, var(--primary) var(--speed), #e2e8f0 var(--speed), #e2e8f0 180deg, transparent 180deg);
}
.wa-speed-inner {
    width: 180px; height: 90px; background: #f8fafc; border-radius: 90px 90px 0 0;
    position: relative; z-index: 2;
    display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding-bottom: 10px;
}
.wa-speed-inner h3 { font-size: 32px; font-weight: 800; color: var(--text-dark); margin: 0; line-height: 1; }
.wa-speed-inner span { font-size: 14px; color: var(--text-muted); font-weight: 600; }

/* 7. Expanding Circle CTA (WA) */
.wa-circle-cta {
    position: relative;
    padding: 100px 40px;
    text-align: center;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 80px;
    color: #fff;
    z-index: 1;
}
.wa-circle-bg {
    position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    background: var(--primary);
    border-radius: 50%; transform: translate(-50%, -50%);
    transition: 1s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}
.wa-circle-cta:hover .wa-circle-bg {
    width: 200%; padding-bottom: 200%;
}
.wa-circle-cta h2 { font-size: 42px; font-weight: 800; color: var(--text-dark); transition: 0.4s; }
.wa-circle-cta p { font-size: 20px; color: var(--text-muted); transition: 0.4s; margin-bottom: 40px; }
.wa-circle-cta:hover h2, .wa-circle-cta:hover p { color: #fff; }
.wa-circle-cta::after {
    content: ''; position: absolute; inset: 0; background: #e0f2fe; z-index: -2;
}

/* ========================================================
   WEB APPLICATION MASTERPIECE COMPONENTS
   ======================================================== */

/* Web Animations */
.web-glitch-in { opacity: 0; transform: skewX(-20deg); filter: drop-shadow(5px 0 0 red) drop-shadow(-5px 0 0 blue); transition: all 0.8s ease-out; }
.web-glitch-in.active { opacity: 1; transform: skewX(0); filter: none; }

.web-float-up { opacity: 0; transform: translateY(80px); transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.web-float-up.active { opacity: 1; transform: translateY(0); }

.web-expand-width { opacity: 0; width: 0; white-space: nowrap; overflow: hidden; transition: width 1.5s ease-out, opacity 0.5s ease-out; }
.web-expand-width.active { opacity: 1; width: 100%; }

.web-rotate-y { opacity: 0; transform: perspective(600px) rotateY(-90deg); transition: all 0.9s ease-out; }
.web-rotate-y.active { opacity: 1; transform: perspective(600px) rotateY(0); }

/* 1. Terminal Hero (Web) */
.web-hero-terminal {
    background: #0f172a;
    padding: 120px 0 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.web-term-box {
    background: #1e293b;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid #334155;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
    overflow: hidden;
}
.web-term-header {
    background: #0f172a;
    padding: 10px 20px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #334155;
}
.web-term-dot { width: 12px; height: 12px; border-radius: 50%; }
.web-term-dot.r { background: #ef4444; } .web-term-dot.y { background: #f59e0b; } .web-term-dot.g { background: #10b981; }
.web-term-body { padding: 30px; font-family: 'Courier New', Courier, monospace; font-size: 16px; color: #10b981; }
.web-cursor { display: inline-block; width: 10px; height: 18px; background: #10b981; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* 2. Slanted Cards (Web) */
.web-slant-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}
.web-slant-card {
    background: #fff;
    width: 300px;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(26,106,190,0.1);
    transform: skewX(-5deg);
    transition: 0.4s;
    border-left: 5px solid var(--primary);
}
.web-slant-card > * { transform: skewX(5deg); } /* Un-skew content */
.web-slant-card:hover { transform: skewX(-5deg) translateY(-10px); box-shadow: 0 20px 40px rgba(26,106,190,0.2); }
.web-slant-card i { font-size: 40px; color: var(--primary); margin-bottom: 20px; }
.web-slant-card h3 { font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }

/* 3. Isometric Stack (Web) */
.web-iso-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 80px;
    gap: 50px;
}
.web-iso-stack {
    position: relative;
    width: 300px; height: 350px;
    transform: rotateX(60deg) rotateZ(-45deg);
    transform-style: preserve-3d;
}
.web-iso-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--primary);
    border-radius: 10px;
    box-shadow: -10px 10px 20px rgba(0,0,0,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: bold; color: var(--primary-dark);
    transition: 0.5s;
}
.web-iso-stack:hover .web-iso-layer:nth-child(1) { transform: translateZ(120px); }
.web-iso-stack:hover .web-iso-layer:nth-child(2) { transform: translateZ(60px); }
.web-iso-layer:nth-child(1) { transform: translateZ(80px); background: rgba(26,106,190,0.9); color: #fff; } /* Frontend */
.web-iso-layer:nth-child(2) { transform: translateZ(40px); background: #f4f7ff; } /* Backend */
.web-iso-layer:nth-child(3) { transform: translateZ(0px); background: #e2e8f0; color: #475569; } /* Database */

/* 4. Neon Rings (Web) */
.web-neon-grid {
    display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; margin-top: 60px;
}
.web-neon-ring {
    width: 180px; height: 180px;
    border-radius: 50%;
    background: #0f172a;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    box-shadow: 
        inset 0 0 20px var(--color),
        0 0 30px var(--color);
    border: 4px solid var(--color);
    color: #fff;
    transition: 0.4s;
}
.web-neon-ring:hover { transform: scale(1.1); box-shadow: inset 0 0 30px var(--color), 0 0 50px var(--color); }
.web-neon-ring h4 { font-size: 40px; margin: 0; font-weight: 900; text-shadow: 0 0 10px var(--color); }
.web-neon-ring span { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: #cbd5e1; }

/* 5. Lock Grid (Web) */
.web-lock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; margin-top: 50px;
}
.web-lock-card {
    background: #fff;
    border-radius: 12px; padding: 30px;
    border-top: 6px solid #10b981;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: 0.3s;
}
.web-lock-card:hover { transform: translateY(-5px); border-color: #3b82f6; }
.web-lock-icon {
    width: 70px; height: 70px;
    background: #ecfdf5; color: #10b981;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 30px; transition: 0.4s;
}
.web-lock-card:hover .web-lock-icon { background: #eff6ff; color: #3b82f6; transform: rotate(15deg); }

/* 6. Vertical Step Line (Web) */
.web-step-line {
    max-width: 600px;
    margin: 60px auto 0 auto;
    border-left: 4px solid var(--primary-light);
    padding-left: 40px;
    position: relative;
}
.web-step-item {
    position: relative;
    margin-bottom: 50px;
}
.web-step-item::before {
    content: '';
    position: absolute;
    left: -52px; top: 0;
    width: 20px; height: 20px;
    background: var(--primary);
    border: 4px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--primary-light);
}
.web-step-item h3 { font-size: 22px; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
.web-step-item p { font-size: 16px; color: var(--text-muted); }

/* 7. Glass Split CTA (Web) */
.web-glass-cta {
    background: url('https://images.unsplash.com/photo-1555066931-4365d14bab8c?auto=format&fit=crop&q=80&w=1920') center/cover;
    border-radius: 30px;
    padding: 80px 50px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}
.web-glass-cta::before {
    content: ''; position: absolute; top:0; left:0; width:100%; height:100%;
    background: rgba(26,106,190,0.8);
}
.web-glass-content {
    position: relative; z-index: 2;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: #fff;
}
.web-glass-content h2 { color: #fff; font-size: 40px; font-weight: 800; margin-bottom: 20px; }
.web-glass-content .btn-glow { background: #fff; color: var(--primary); margin-top: 20px; font-weight: bold; }

/* ========================================================
   COMPLAINT MANAGEMENT REDESIGN (cm2)
   ======================================================== */

.cm2-fade-up { opacity: 0; transform: translateY(40px); transition: all 1s ease; }
.cm2-fade-up.active { opacity: 1; transform: translateY(0); }

/* 1. Curved Hero */
.cm2-hero {
    position: relative;
    background: linear-gradient(135deg, #f0f4f8, #e0e7ff);
    padding: 120px 0 150px 0;
    text-align: center;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
    overflow: hidden;
}
.cm2-hero h1 { font-size: 50px; font-weight: 900; color: #1e293b; margin-bottom: 20px; letter-spacing: -1px; }
.cm2-hero-img-wrap {
    max-width: 900px;
    margin: -100px auto 50px auto;
    position: relative;
    z-index: 5;
    border-radius: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
    border: 8px solid #fff;
    background: #fff;
    transform: perspective(1000px) rotateX(10deg);
    transition: 0.5s;
}
.cm2-hero-img-wrap:hover { transform: perspective(1000px) rotateX(0deg); }
.cm2-hero-img-wrap img { width: 100%; border-radius: 12px; display: block; }

/* 2. Glow Border Features */
.cm2-glow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; margin-top: 60px;
}
.cm2-glow-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}
.cm2-glow-card::before {
    content: ''; position: absolute; inset: 0; border-radius: 20px; padding: 3px;
    background: linear-gradient(135deg, var(--primary), #38bdf8, #818cf8);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: 0; transition: 0.4s;
}
.cm2-glow-card:hover { transform: translateY(-10px); }
.cm2-glow-card:hover::before { opacity: 1; }
.cm2-icon-wrap {
    width: 70px; height: 70px; border-radius: 15px;
    background: #eff6ff; display: flex; align-items: center; justify-content: center;
    margin-bottom: 25px;
}
.cm2-icon-wrap i { font-size: 30px; color: var(--primary); }

/* 3. Horizontal Process */
.cm2-process-wrap {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 80px; position: relative; padding-bottom: 40px;
}
.cm2-process-line {
    position: absolute; top: 40px; left: 5%; width: 90%; height: 4px;
    background: #e2e8f0; z-index: 1;
}
.cm2-process-step {
    width: 25%; position: relative; z-index: 2; text-align: center;
}
.cm2-step-circle {
    width: 80px; height: 80px; border-radius: 50%;
    background: #fff; border: 4px solid #e2e8f0;
    margin: 0 auto 20px auto; display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #94a3b8; transition: 0.5s;
}
.cm2-process-step:hover .cm2-step-circle {
    border-color: var(--primary); background: var(--primary); color: #fff;
    box-shadow: 0 10px 20px rgba(26,106,190,0.3); transform: scale(1.1);
}

/* 4. Floating Bubbles Channel */
.cm2-bubble-container {
    height: 400px; position: relative; max-width: 800px; margin: 60px auto 0;
}
.cm2-bubble-center {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 150px; height: 150px; background: var(--primary-dark);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 50px; box-shadow: 0 20px 40px rgba(0,0,0,0.2); z-index: 10;
}
.cm2-bubble {
    position: absolute; width: 70px; height: 70px; background: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 35px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: floatBubble 4s infinite alternate ease-in-out;
}
.cm2-b1 { top: 20%; left: 15%; color: #25D366; animation-delay: 0s; }
.cm2-b2 { bottom: 20%; left: 25%; color: #1DA1F2; animation-delay: 1s; }
.cm2-b3 { top: 15%; right: 20%; color: #E1306C; animation-delay: 2s; }
.cm2-b4 { bottom: 15%; right: 15%; color: #EA4335; animation-delay: 3s; }
@keyframes floatBubble { 100% { transform: translateY(-20px); } }

/* 5. Expanding SLA Accordion Cards */
.cm2-sla-grid { display: flex; gap: 20px; margin-top: 50px; height: 350px; }
.cm2-sla-card {
    flex: 1; background: #fff; border-radius: 20px; padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex; flex-direction: column; overflow: hidden; position: relative;
    border-top: 5px solid var(--primary);
}
.cm2-sla-card:hover { flex: 2; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.cm2-sla-card h3 { font-size: 24px; white-space: nowrap; margin-bottom: 20px; }
.cm2-sla-detail { opacity: 1; transition: 0.5s; }


/* 6. Blob CTA */
.cm2-blob-cta {
    background: #0f172a; border-radius: 30px; padding: 80px 40px;
    text-align: center; color: #fff; position: relative; overflow: hidden; margin-top: 80px;
}
.cm2-blob {
    position: absolute; filter: blur(60px); opacity: 0.5; z-index: 1;
}
.cm2-blob.r { width: 300px; height: 300px; background: #3b82f6; top: -100px; right: -100px; border-radius: 50%; }
.cm2-blob.l { width: 400px; height: 400px; background: #10b981; bottom: -150px; left: -150px; border-radius: 50%; }
.cm2-blob-cta-content { position: relative; z-index: 2; }



/* ========================================================
   E-COMMERCE SOFTWARE MASTERPIECE COMPONENTS
   ======================================================== */

.ecom-slide-up { opacity: 0; transform: translateY(60px); transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.ecom-slide-up.active { opacity: 1; transform: translateY(0); }

.ecom-zoom-in { opacity: 0; transform: scale(0.8); transition: all 0.8s ease-out; }
.ecom-zoom-in.active { opacity: 1; transform: scale(1); }

.ecom-flip-y { opacity: 0; transform: perspective(800px) rotateY(90deg); transition: all 1s ease; }
.ecom-flip-y.active { opacity: 1; transform: perspective(800px) rotateY(0); }

/* 1. 3D Product Hero */
.ecom-hero {
    background: #f8fafc;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}
.ecom-hero::after {
    content: ''; position: absolute; right: -100px; top: -100px;
    width: 500px; height: 500px; background: var(--primary-light);
    border-radius: 50%; opacity: 0.1; filter: blur(50px);
}
.ecom-3d-box {
    position: relative;
    width: 100%; max-width: 500px; height: 400px;
    margin: 0 auto;
    perspective: 1000px;
}
.ecom-3d-card {
    position: absolute;
    width: 250px; height: 320px;
    background: #fff; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 20px; text-align: center;
    border: 1px solid #f1f5f9;
    animation: float3D 6s infinite alternate ease-in-out;
}
.ecom-card-1 { top: 0; left: 0; transform: translateZ(50px) rotateY(15deg); z-index: 3; }
.ecom-card-2 { top: 40px; right: 0; transform: translateZ(0) rotateY(-15deg); z-index: 2; animation-delay: -2s; opacity: 0.8; }
.ecom-3d-card img { width: 150px; height: 150px; object-fit: cover; margin-bottom: 20px; border-radius: 10px; }
.ecom-3d-card .price { font-size: 24px; font-weight: bold; color: var(--primary); }
@keyframes float3D { 100% { transform: translateY(-20px) rotateY(5deg); } }

/* 2. Masonry Mockup Grid */
.ecom-masonry {
    column-count: 2; column-gap: 30px; margin-top: 50px;
}
.ecom-masonry-item {
    background: #fff; border-radius: 15px; padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 30px; break-inside: avoid;
    transition: 0.4s;
}
.ecom-masonry-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(26,106,190,0.15); }
.ecom-masonry-item img { width: 100%; border-radius: 10px; margin-bottom: 15px; }

/* 3. Floating Cart Panel */
.ecom-cart-wrap {
    display: flex; align-items: center; justify-content: space-between; margin-top: 60px;
}
.ecom-cart-panel {
    background: #fff; width: 350px; border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    padding: 30px; position: relative;
}
.ecom-cart-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f1f5f9; }
.ecom-cart-item img { width: 60px; height: 60px; border-radius: 10px; background: #f8fafc; }
.ecom-cart-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: bold; margin-bottom: 20px; }
.ecom-checkout-btn { display: block; width: 100%; background: var(--primary); color: #fff; text-align: center; padding: 15px; border-radius: 10px; font-weight: bold; }

/* 4. Infinite Stripe Ticker */
.ecom-ticker {
    width: 100%; overflow: hidden; background: #fff;
    padding: 40px 0; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9;
}
.ecom-ticker-track {
    display: flex; gap: 50px; width: max-content;
    animation: scrollTicker 20s linear infinite;
}
.ecom-ticker-item {
    font-size: 30px; font-weight: 900; color: #cbd5e1; display: flex; align-items: center; gap: 10px;
}
@keyframes scrollTicker { 100% { transform: translateX(-50%); } }

/* 5. Growth Chart Bars */
.ecom-chart-wrap {
    display: flex; align-items: flex-end; justify-content: center; gap: 20px;
    height: 250px; margin-top: 50px; padding-bottom: 30px; border-bottom: 2px solid #e2e8f0;
}
.ecom-bar {
    width: 60px; background: linear-gradient(to top, var(--primary-light), var(--primary));
    border-top-left-radius: 10px; border-top-right-radius: 10px;
    display: flex; align-items: flex-start; justify-content: center; padding-top: 10px;
    color: #fff; font-weight: bold; transform-origin: bottom;
}
.ecom-bar.b1 { height: 30%; } .ecom-bar.b2 { height: 50%; } .ecom-bar.b3 { height: 70%; } .ecom-bar.b4 { height: 100%; background: linear-gradient(to top, #10b981, #059669); }

/* 6. Phone Bouncing Mockups */
.ecom-phones {
    display: flex; justify-content: center; gap: -20px; margin-top: 60px;
}
.ecom-phone {
    width: 220px; height: 450px; background: #1e293b; border-radius: 30px;
    border: 8px solid #0f172a; box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    position: relative; overflow: hidden;
}
.ecom-phone-screen { background: #fff; height: 100%; padding: 20px; }
.ecom-phone.left { transform: rotate(-10deg) translateY(20px); z-index: 1; }
.ecom-phone.right { transform: rotate(10deg) translateY(-20px); z-index: 2; border-color: #fff; }

/* 7. Confetti CTA */
.ecom-confetti-cta {
    background: var(--primary-dark); border-radius: 30px; padding: 80px 40px;
    text-align: center; color: #fff; position: relative; margin-top: 80px; overflow: hidden;
}
.ecom-confetti {
    position: absolute; width: 10px; height: 10px; background: #f59e0b;
    animation: fall 5s linear infinite;
}
.ecom-c1 { left: 10%; top: -10px; animation-delay: 0s; }
.ecom-c2 { left: 30%; top: -10px; background: #ef4444; animation-delay: 2s; }
.ecom-c3 { left: 50%; top: -10px; background: #10b981; animation-delay: 1s; }
.ecom-c4 { left: 70%; top: -10px; background: #3b82f6; animation-delay: 3s; }
.ecom-c5 { left: 90%; top: -10px; background: #ec4899; animation-delay: 0.5s; }
@keyframes fall { 100% { transform: translateY(300px) rotate(360deg); opacity: 0; } }


/* ========================================================
   STATIC WEBSITE DESIGN MASTERPIECE COMPONENTS
   ======================================================== */

.static-fade-in { opacity: 0; transition: opacity 1s ease-in; }
.static-fade-in.active { opacity: 1; }

.static-slide-left { opacity: 0; transform: translateX(-50px); transition: all 0.8s ease; }
.static-slide-left.active { opacity: 1; transform: translateX(0); }

.static-pop-out { opacity: 0; transform: scale(0.5); transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.static-pop-out.active { opacity: 1; transform: scale(1); }

/* 1. Hero with floating HTML tags */
.static-hero {
    background: #0f172a; padding: 120px 0 100px; position: relative; overflow: hidden; color: #fff;
}
.static-tag-float {
    position: absolute; font-family: monospace; font-size: 40px; color: rgba(255,255,255,0.05);
    font-weight: bold; user-select: none; animation: floatTag 10s infinite linear;
}
.st-1 { top: 20%; left: 10%; animation-duration: 15s; }
.st-2 { top: 60%; left: 20%; animation-duration: 12s; animation-direction: reverse; }
.st-3 { top: 30%; right: 15%; animation-duration: 18s; }
.st-4 { top: 70%; right: 10%; animation-duration: 14s; animation-direction: reverse; }
@keyframes floatTag { 0% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-30px) rotate(10deg); } 100% { transform: translateY(0) rotate(0deg); } }

/* 2. Speedometer Comparison */
.static-speed-wrap { display: flex; justify-content: center; gap: 40px; margin-top: 50px; flex-wrap: wrap; }
.static-speed-card {
    background: #fff; border-radius: 20px; padding: 40px; text-align: center; width: 300px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); border: 1px solid #f1f5f9;
}
.static-meter {
    width: 150px; height: 75px; border-top-left-radius: 150px; border-top-right-radius: 150px;
    background: #e2e8f0; margin: 0 auto 20px; position: relative; overflow: hidden;
}
.static-meter-fill {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    transform-origin: bottom center; border-top-left-radius: 150px; border-top-right-radius: 150px;
}
.fill-slow { background: #ef4444; transform: rotate(-60deg); }
.fill-fast { background: #10b981; transform: rotate(0deg); }
.static-meter-needle {
    width: 4px; height: 60px; background: #0f172a; position: absolute; bottom: 0; left: 50%;
    transform-origin: bottom center; margin-left: -2px; border-radius: 4px;
}
.needle-slow { transform: rotate(-45deg); }
.needle-fast { transform: rotate(60deg); }

/* 3. CSS Vault */
.static-vault-wrap { display: flex; justify-content: center; margin-top: 50px; }
.static-vault {
    width: 200px; height: 250px; background: #94a3b8; border-radius: 20px;
    position: relative; border: 8px solid #64748b;
    box-shadow: inset -20px -20px 0 rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.2);
}
.static-vault-door {
    position: absolute; top: 10px; left: 10px; right: 10px; bottom: 10px;
    background: #cbd5e1; border-radius: 10px; border: 4px solid #94a3b8;
}
.static-vault-wheel {
    width: 80px; height: 80px; background: #f8fafc; border-radius: 50%;
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border: 8px solid #e2e8f0; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

/* 4. Server Rack */
.static-server-rack {
    background: #1e293b; border-radius: 15px; padding: 20px; width: 100%; max-width: 400px; margin: 50px auto 0;
}
.static-server-unit {
    height: 60px; background: #0f172a; border-radius: 8px; margin-bottom: 15px;
    display: flex; align-items: center; padding: 0 20px; gap: 10px; border-left: 4px solid #334155;
}
.static-server-light { width: 10px; height: 10px; border-radius: 50%; background: #10b981; box-shadow: 0 0 10px #10b981; animation: blinkLight 1s infinite alternate; }
.static-server-light:nth-child(2) { animation-delay: 0.3s; }
.static-server-light:nth-child(3) { animation-delay: 0.6s; }
@keyframes blinkLight { 0% { opacity: 0.3; } 100% { opacity: 1; } }

/* 5. Pricing Grid */
.static-pricing-wrap { display: flex; justify-content: center; gap: 30px; margin-top: 50px; flex-wrap: wrap; }
.static-price-card {
    background: #fff; border-radius: 20px; padding: 40px; width: 320px; text-align: center;
    border: 1px solid #f1f5f9; position: relative; overflow: hidden;
}
.static-price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 20px 40px rgba(26,106,190,0.15); }
.static-ribbon {
    position: absolute; top: 20px; right: -35px; background: var(--primary); color: #fff;
    padding: 5px 40px; transform: rotate(45deg); font-weight: bold; font-size: 12px;
}

/* 6. SEO Search Mockup */
.static-search-mockup {
    background: #fff; border-radius: 30px; padding: 15px 30px; display: flex; align-items: center; gap: 15px;
    max-width: 500px; margin: 50px auto 0; box-shadow: 0 15px 30px rgba(0,0,0,0.08); border: 1px solid #e2e8f0;
}
.static-search-text { font-family: monospace; font-size: 18px; color: #334155; white-space: nowrap; overflow: hidden; border-right: 2px solid #334155; animation: typing 3s steps(30, end) infinite; }
@keyframes typing { 0% { width: 0; } 50% { width: 100%; } 100% { width: 0; } }

/* 7. Diagonal Split CTA */
.static-diagonal-cta {
    background: linear-gradient(135deg, var(--primary) 50%, var(--primary-dark) 50%);
    padding: 80px 0; text-align: center; color: #fff; margin-top: 80px; border-radius: 20px;
}

/* ========================================================
   STATIC V2 PREMIUM COMPONENTS
   ======================================================== */

/* Glassmorphism Cards */
.static-glass-sec { background: #0b1120; padding: 100px 0; color: #fff; }
.static-glass-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.static-glass-card {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 40px; width: 320px; transition: 0.4s; position: relative; overflow: hidden;
}
.static-glass-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); border-color: var(--primary); }
.static-glass-icon { font-size: 40px; margin-bottom: 20px; color: var(--primary-light); }

/* Glowing Shield */
.static-shield-sec { padding: 100px 0; background: #fff; }
.static-shield-wrap { position: relative; width: 250px; height: 300px; margin: 0 auto; }
.static-shield-svg { width: 100%; height: 100%; filter: drop-shadow(0 0 20px rgba(16,185,129,0.4)); fill: #f8fafc; stroke: #10b981; stroke-width: 5; }
.static-shield-scanner {
    position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: #10b981;
    box-shadow: 0 0 15px #10b981; animation: scan 3s infinite alternate ease-in-out;
}
@keyframes scan { 0% { top: 10%; } 100% { top: 90%; } }

/* Tech Stack Floating Logos */
.static-tech-sec { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); padding: 80px 0; text-align: center; }
.static-tech-grid { display: flex; justify-content: center; gap: 40px; margin-top: 40px; }
.static-tech-logo { font-size: 60px; color: #64748b; transition: 0.3s; animation: floatTech 4s infinite alternate ease-in-out; }
.static-tech-logo.html { animation-delay: 0s; } .static-tech-logo.css { animation-delay: 1s; } .static-tech-logo.js { animation-delay: 2s; }
.static-tech-logo:hover { color: var(--primary); transform: scale(1.2); }
@keyframes floatTech { 100% { transform: translateY(-15px); } }

/* Sleek Comparison Table */
.static-compare-sec { padding: 100px 0; background: #0f172a; color: #fff; }
.static-compare-table { width: 100%; max-width: 800px; margin: 50px auto 0; border-collapse: collapse; }
.static-compare-table th { padding: 20px; text-align: center; font-size: 20px; border-bottom: 2px solid rgba(255,255,255,0.1); }
.static-compare-table td { padding: 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,0.05); }
.static-compare-table td:first-child { text-align: left; font-weight: bold; color: #cbd5e1; font-size:18px; }
.static-compare-table .highlight { background: rgba(26,106,190,0.1); color: var(--primary-light); font-weight: bold; }
.static-compare-table th.highlight { border-top-left-radius: 10px; border-top-right-radius: 10px; }

/* Neon CTA */
.static-neon-cta {
    background: #020617; padding: 100px 20px; text-align: center; border-radius: 30px; position: relative;
    border: 1px solid rgba(255,255,255,0.05); margin: 80px 0; overflow:hidden;
}
.static-neon-btn {
    display: inline-block; padding: 15px 40px; font-size: 20px; font-weight: bold; color: #fff;
    background: transparent; border: 2px solid var(--primary); border-radius: 50px;
    box-shadow: 0 0 20px rgba(26,106,190,0.5), inset 0 0 20px rgba(26,106,190,0.5); transition: 0.3s;
}
.static-neon-btn:hover { background: var(--primary); box-shadow: 0 0 40px rgba(26,106,190,0.8); }

/* ========================================================
   DYNAMIC WEBSITE DESIGN MASTERPIECE COMPONENTS
   ======================================================== */

/* 1. Database Hero */
.dynamic-hero { background: #050505; position: relative; padding: 150px 0 100px; color: #fff; overflow: hidden; }
.dynamic-nodes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.4; }
.dynamic-node { position: absolute; width: 10px; height: 10px; background: #3b82f6; border-radius: 50%; box-shadow: 0 0 15px #3b82f6; }
.dyn-1 { top: 20%; left: 15%; animation: pulseNode 2s infinite alternate; }
.dyn-2 { top: 70%; left: 25%; animation: pulseNode 3s infinite alternate; }
.dyn-3 { top: 40%; right: 20%; animation: pulseNode 2.5s infinite alternate; }
.dyn-4 { top: 80%; right: 10%; animation: pulseNode 3.5s infinite alternate; }
.dynamic-line { position: absolute; height: 2px; background: linear-gradient(90deg, rgba(59,130,246,0), rgba(59,130,246,1), rgba(59,130,246,0)); }
.line-1 { top: 45%; left: 15%; width: 65%; transform: rotate(-15deg); }
.line-2 { top: 50%; left: 25%; width: 55%; transform: rotate(25deg); }
@keyframes pulseNode { 0% { transform: scale(1); opacity:0.5; } 100% { transform: scale(2); opacity:1; } }

/* 2. Floating Dashboard Mockup */
.dynamic-dash-sec { padding: 100px 0; background: linear-gradient(to bottom, #050505, #111827); overflow: hidden; }
.dynamic-dash-wrap {
    background: rgba(255,255,255,0.05); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px; padding: 30px; max-width: 900px; margin: 0 auto; box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transform: perspective(1000px) rotateX(15deg) translateY(0); transition: 0.5s ease;
}
.dynamic-dash-wrap:hover { transform: perspective(1000px) rotateX(0deg) translateY(-20px); box-shadow: 0 40px 80px rgba(59,130,246,0.2); }
.dynamic-chart-bar { height: 10px; background: #1f2937; border-radius: 5px; margin-bottom: 20px; overflow: hidden; }
.dynamic-chart-fill { height: 100%; background: linear-gradient(90deg, #3b82f6, #8b5cf6); width: 0%; animation: fillBar 3s ease forwards; }
@keyframes fillBar { 100% { width: var(--w); } }

/* 3. Admin Panel Toggle */
.dynamic-admin-sec { padding: 100px 0; background: #fff; text-align: center; transition: background 0.5s, color 0.5s; position:relative;}
.dynamic-admin-sec.dark-mode-active { background: #0f172a; color: #fff; }
.dynamic-toggle-box {
    width: 300px; padding: 40px; margin: 50px auto 0; background: #f8fafc; border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: 0.5s;
}
.dynamic-admin-sec.dark-mode-active .dynamic-toggle-box { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); }
.dynamic-switch {
    width: 80px; height: 40px; background: #cbd5e1; border-radius: 40px; position: relative; margin: 0 auto;
    cursor: pointer; transition: 0.3s;
}
.dynamic-switch.on { background: #3b82f6; }
.dynamic-switch-knob {
    width: 32px; height: 32px; background: #fff; border-radius: 50%; position: absolute;
    top: 4px; left: 4px; transition: 0.3s; box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.dynamic-switch.on .dynamic-switch-knob { left: 44px; }

/* 4. Infinite Data Marquee */
.dynamic-marquee-sec { padding: 80px 0; background: #1e293b; overflow: hidden; }
.dynamic-marquee { display: flex; width: 200%; animation: marqueeScroll 20s linear infinite; }
.dynamic-data-card {
    background: #334155; color: #fff; border-radius: 10px; padding: 20px; min-width: 250px;
    margin-right: 30px; display: flex; align-items: center; gap: 15px; border-left: 4px solid #3b82f6;
}
.dynamic-data-card.green { border-left-color: #10b981; }
.dynamic-data-card.purple { border-left-color: #8b5cf6; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 5. CMS Hex Grid */
.dynamic-hex-sec { padding: 100px 0; background: #f1f5f9; }
.dynamic-hex-wrap { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 50px; }
.dynamic-hex {
    width: 150px; height: 170px; background: #fff; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex; align-items: center; justify-content: center; font-size: 50px; color: #94a3b8; transition: 0.4s;
}
.dynamic-hex:hover { background: #3b82f6; color: #fff; transform: translateY(-10px); }

/* 6. 3D Flip Features */
.dynamic-flip-sec { padding: 100px 0; background: #fff; }
.dynamic-flip-grid { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-top: 50px; }
.dynamic-flip-card { width: 300px; height: 350px; perspective: 1000px; }
.dynamic-flip-inner {
    width: 100%; height: 100%; transition: transform 0.8s; transform-style: preserve-3d;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); border-radius: 20px;
}
.dynamic-flip-card:hover .dynamic-flip-inner { transform: rotateY(180deg); }
.dynamic-flip-front, .dynamic-flip-back {
    width: 100%; height: 100%; position: absolute; backface-visibility: hidden;
    border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; text-align: center;
}
.dynamic-flip-front { background: #f8fafc; color: #0f172a; border: 1px solid #e2e8f0; }
.dynamic-flip-back { background: #3b82f6; color: #fff; transform: rotateY(180deg); }
.dynamic-flip-icon { font-size: 50px; margin-bottom: 20px; color: #3b82f6; }

/* 7. Radar Pulse CTA */
.dynamic-pulse-cta { padding: 120px 0; background: #0f172a; position: relative; overflow: hidden; text-align: center; color: #fff; }
.dynamic-radar-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border: 2px solid rgba(59,130,246,0.3); border-radius: 50%;
    animation: radarPulse 4s infinite linear;
}
.r-1 { width: 300px; height: 300px; animation-delay: 0s; }
.r-2 { width: 500px; height: 500px; animation-delay: 1.33s; }
.r-3 { width: 700px; height: 700px; animation-delay: 2.66s; }
@keyframes radarPulse { 0% { width:0; height:0; opacity:1; } 100% { width:1000px; height:1000px; opacity:0; } }
.dynamic-pulse-btn {
    display: inline-block; padding: 18px 45px; font-size: 20px; font-weight: bold; color: #fff;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6); border-radius: 50px;
    position: relative; z-index: 10; border: none; box-shadow: 0 10px 20px rgba(59,130,246,0.4);
    transition: 0.3s;
}
.dynamic-pulse-btn:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(139,92,246,0.6); }


/* ========================================================
   DYNAMIC WEBSITE DESIGN MASTERPIECE - EXTRA PREMIUM SECTIONS
   ======================================================== */

/* 8. Gradient Border Workflow */
.dynamic-workflow-sec { padding: 100px 0; background: #020617; }
.dynamic-step-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.dynamic-step-card {
    position: relative; width: 250px; padding: 40px 30px; background: #0f172a; border-radius: 20px;
    z-index: 1; overflow: hidden; color: #fff; text-align: center;
}
.dynamic-step-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: conic-gradient(transparent, transparent, transparent, #3b82f6);
    animation: spinBorder 4s linear infinite; z-index: -2; opacity: 0; transition: 0.5s;
}
.dynamic-step-card:hover::before { opacity: 1; }
.dynamic-step-card::after {
    content: ''; position: absolute; inset: 2px; background: #0f172a; border-radius: 18px; z-index: -1;
}
.dynamic-step-num {
    font-size: 80px; font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05);
    position: absolute; top: -10px; right: 10px; z-index: -1;
}
@keyframes spinBorder { 100% { transform: rotate(360deg); } }

/* 9. Global Data Transfer */
.dynamic-global-sec { padding: 100px 0; background: linear-gradient(135deg, #050505, #1e293b); color: #fff; overflow:hidden;}
.dynamic-map-wrap { position: relative; width: 100%; max-width: 800px; margin: 50px auto 0; height: 350px; }
.dynamic-map-svg { width: 100%; height: 100%; }
.dynamic-data-path { stroke: #3b82f6; stroke-width: 2; fill: none; stroke-dasharray: 10, 10; animation: dashMove 30s linear infinite; }
@keyframes dashMove { to { stroke-dashoffset: -1000; } }
.dynamic-data-node { fill: #3b82f6; filter: drop-shadow(0 0 15px #3b82f6); animation: pulseNode2 2s infinite alternate; }
@keyframes pulseNode2 { 0% { transform: scale(1); } 100% { transform: scale(1.5); } }

/* 10. Premium Testimonials */
.dynamic-testi-sec { padding: 100px 0; background: #0b1120; color: #fff; }
.dynamic-testi-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 50px; }
.dynamic-testi-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px; padding: 40px; width: 400px; position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4); transition: 0.4s;
}
.dynamic-testi-card:hover { transform: translateY(-10px); border-color: rgba(59,130,246,0.3); }
.dynamic-quote-icon {
    position: absolute; top: -20px; left: 30px; font-size: 40px; color: #3b82f6;
    filter: drop-shadow(0 0 10px rgba(59,130,246,0.5));
}
.dynamic-testi-text { font-size: 16px; color: #cbd5e1; font-style: italic; line-height: 1.8; margin-bottom: 20px; }

/* ========================================================
   ECOMMERCE WEBSITE MASTERPIECE COMPONENTS
   ======================================================== */
.ec-web-hero { background: #0b1120; padding: 150px 0 100px; color: #fff; position: relative; overflow: hidden; }
.ec-web-glow { position: absolute; top: 30%; right: 10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(139,92,246,0.2) 0%, transparent 70%); animation: breathGlow 4s infinite alternate; }
@keyframes breathGlow { 100% { transform: scale(1.5); } }

/* 2. Product Hover Showcase */
.ec-web-prod-sec { padding: 100px 0; background: linear-gradient(135deg, #050505, #111827); }
.ec-web-prod-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
    padding: 40px; max-width: 400px; margin: 0 auto; text-align: center; color: #fff;
    transform: perspective(1000px) rotateY(0deg); transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ec-web-prod-card:hover { transform: perspective(1000px) rotateY(-15deg) scale(1.05); border-color: #8b5cf6; }
.ec-web-prod-img { width: 200px; height: 200px; background: linear-gradient(45deg, #3b82f6, #8b5cf6); border-radius: 50%; margin: 0 auto 20px; box-shadow: 0 10px 30px rgba(139,92,246,0.3); }

/* 3. Features Matrix */
.ec-web-feat-sec { padding: 100px 0; background: #fff; }
.ec-web-feat-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; margin-top: 50px; }
.ec-web-feat-card { width: 320px; padding: 40px; background: #f8fafc; border-radius: 20px; text-align: center; border-bottom: 4px solid transparent; transition: 0.4s; }
.ec-web-feat-card:hover { border-bottom-color: #8b5cf6; transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

/* 4. Infinite Logos */
.ec-web-logo-sec { padding: 80px 0; background: #0f172a; overflow: hidden; }
.ec-web-logo-track { display: flex; width: 200%; animation: ecMarquee 15s linear infinite; gap: 50px; align-items: center; }
.ec-web-logo { font-size: 40px; color: #64748b; font-weight: bold; }
@keyframes ecMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 5. Interactive Revenue Chart */
.ec-web-chart-sec { padding: 100px 0; background: #020617; color: #fff; text-align: center; }
.ec-web-chart-wrap { max-width: 800px; margin: 50px auto 0; position: relative; }
.ec-web-chart-line { stroke: #10b981; stroke-width: 5; fill: none; stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: drawChart 4s ease forwards infinite; }
@keyframes drawChart { 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; } }

/* 6. Mobile First Approach */
.ec-web-mob-sec { padding: 100px 0; background: #f1f5f9; }
.ec-web-phone {
    width: 250px; height: 500px; background: #fff; border: 10px solid #0f172a; border-radius: 40px;
    margin: 0 auto; position: relative; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.2);
}
.ec-web-phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 20px; background: #0f172a; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; }
.ec-web-phone-content { padding: 40px 20px; text-align: center; }

/* 7. Gradient Pulse CTA */
.ec-web-cta-sec { padding: 120px 0; background: linear-gradient(to right, #050505, #0f172a); text-align: center; }
.ec-web-cta-title { font-size: 60px; font-weight: 900; background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 30px; }

/* ========================================================
   WORDPRESS WEBSITE MASTERPIECE COMPONENTS
   ======================================================== */
   
/* 1. WP Hero */
.wp-hero-sec { padding: 120px 0; background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; position: relative; overflow: hidden; }
.wp-hero-img-wrap { position: relative; width: 100%; max-width: 500px; margin: 0 auto; perspective: 1000px; }
.wp-hero-img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); transform: rotateY(-15deg) rotateX(10deg); animation: floatWpHero 6s infinite alternate ease-in-out; }
@keyframes floatWpHero { 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(-20px); } }

/* 2. Plugin Ecosystem */
.wp-plugins-sec { padding: 100px 0; background: #020617; text-align: center; color: #fff; overflow: hidden; }
.wp-plugins-orbit { position: relative; width: 400px; height: 400px; margin: 50px auto 0; border-radius: 50%; border: 1px dashed rgba(255,255,255,0.1); animation: spinOrbit 20s linear infinite; }
.wp-orbit-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 80px; color: #3b82f6; text-shadow: 0 0 30px rgba(59,130,246,0.6); animation: counterSpin 20s linear infinite; }
.wp-orbit-icon { position: absolute; font-size: 40px; color: #cbd5e1; background: #0f172a; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; border-radius: 50%; box-shadow: 0 0 20px rgba(255,255,255,0.1); animation: counterSpin 20s linear infinite; }
.wp-orbit-icon:nth-child(2) { top: -40px; left: 160px; }
.wp-orbit-icon:nth-child(3) { bottom: -40px; left: 160px; }
.wp-orbit-icon:nth-child(4) { top: 160px; left: -40px; }
.wp-orbit-icon:nth-child(5) { top: 160px; right: -40px; }
@keyframes spinOrbit { 100% { transform: rotate(360deg); } }
@keyframes counterSpin { 100% { transform: translate(-50%, -50%) rotate(-360deg); } }

/* 3. Themes */
.wp-themes-sec { padding: 100px 0; background: #f8fafc; }
.wp-theme-img { width: 100%; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); transition: 0.5s; }
.wp-theme-img:hover { transform: scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.25); }

/* 4. Performance Metrics */
.wp-stats-sec { padding: 100px 0; background: linear-gradient(135deg, #3b82f6, #8b5cf6); color: #fff; }
.wp-stats-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 50px; }
.wp-stat-card {
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px; padding: 40px; width: 300px; text-align: center; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.wp-stat-num { font-size: 50px; font-weight: 900; margin: 15px 0; }

/* 5. Page Builder Demo */
.wp-builder-sec { padding: 100px 0; background: #fff; }
.wp-builder-mockup {
    background: #f1f5f9; border-radius: 20px; padding: 20px; border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05); max-width: 800px; margin: 50px auto 0;
    display: flex; gap: 20px;
}
.wp-builder-sidebar { width: 80px; background: #fff; border-radius: 10px; padding: 15px; display: flex; flex-direction: column; gap: 15px; }
.wp-builder-tool { width: 100%; height: 40px; background: #e2e8f0; border-radius: 5px; }
.wp-builder-canvas { flex: 1; background: #fff; border-radius: 10px; border: 2px dashed #cbd5e1; padding: 30px; display: flex; flex-direction: column; gap: 20px; }
.wp-builder-drop { width: 100%; height: 80px; background: #f8fafc; border-radius: 10px; animation: pulseDrop 2s infinite alternate; }
@keyframes pulseDrop { 100% { background: #e0e7ff; } }

/* 6. Support */
.wp-support-sec { padding: 100px 0; background: #0f172a; color: #fff; }

/* 7. WP CTA */
.wp-cta-sec { padding: 120px 0; background: #fff; text-align: center; }
.wp-cta-btn {
    display: inline-block; padding: 18px 50px; font-size: 20px; font-weight: bold; color: #fff;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8); border-radius: 50px;
    box-shadow: 0 15px 30px rgba(59,130,246,0.3); transition: 0.3s;
}
.wp-cta-btn:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(59,130,246,0.5); }

/* ========================================================
   WORDPRESS WEBSITE MASTERPIECE - REDESIGN WITH REAL PHOTOS
   ======================================================== */
   
/* 1. Realistic Hero */
.wp-real-hero { padding: 150px 0 100px; background: linear-gradient(135deg, #050505, #0f172a); color: #fff; }
.wp-real-img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); object-fit: cover; height: 500px; border: 1px solid rgba(255,255,255,0.1); }

/* 2. All Types of Websites Grid */
.wp-all-types-sec { padding: 100px 0; background: #020617; color: #fff; }
.wp-type-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.wp-type-card {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px; padding: 40px 30px; text-align: center; transition: 0.4s;
}
.wp-type-card:hover { transform: translateY(-10px); border-color: #3b82f6; background: rgba(255,255,255,0.05); }
.wp-type-icon { font-size: 50px; color: #3b82f6; margin-bottom: 20px; }
.wp-type-title { font-size: 24px; font-weight: bold; margin-bottom: 15px; }
.wp-type-desc { color: #cbd5e1; line-height: 1.6; }

/* 3. 100% Customized Themes */
.wp-custom-sec { padding: 100px 0; background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; }

/* 4. Development Process */
.wp-process-sec { padding: 100px 0; background: #020617; color: #fff; }
.wp-step-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 50px; }
.wp-step-box { width: 250px; position: relative; text-align: center; }
.wp-step-num {
    width: 60px; height: 60px; background: #3b82f6; color: #fff; font-size: 24px; font-weight: bold;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    margin: 0 auto 20px; box-shadow: 0 10px 20px rgba(59,130,246,0.4);
}
.wp-step-title { font-size: 20px; font-weight: bold; margin-bottom: 10px; }
.wp-step-desc { color: #cbd5e1; font-size: 15px; }

/* 5. Premium CTA */
.wp-real-cta { padding: 120px 0; background: url('images/wp_real_dev.png') no-repeat center center/cover; position: relative; text-align: center; color: #fff; }
.wp-real-cta::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(2,6,23,0.85); backdrop-filter: blur(5px); }
.wp-real-cta .container-fluid { position: relative; z-index: 10; }

/* ========================================================
   WORDPRESS WEBSITE MASTERPIECE - CLEAN DESIGN
   ======================================================== */
   
/* 1. Clean Hero */
.wp-clean-hero { padding: 150px 0 100px; background: #ffffff; color: #0f172a; }
.wp-clean-img-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.wp-clean-img { width: 100%; object-fit: cover; height: 500px; }

/* 2. Light Expertise Grid */
.wp-clean-expertise { padding: 100px 0; background: #f8fafc; color: #0f172a; }
.wp-clean-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.wp-clean-card {
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 15px;
    padding: 40px; text-align: left; transition: 0.3s; box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.wp-clean-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); border-color: #3b82f6; }
.wp-clean-icon { font-size: 40px; color: #3b82f6; margin-bottom: 20px; }

/* 3. Dark Section (Custom Themes) - As requested, 1-2 dark sections */
.wp-clean-dark-sec { padding: 100px 0; background: #020617; color: #ffffff; }

/* 4. Types of Websites (Light) */
.wp-clean-types { padding: 100px 0; background: #ffffff; color: #0f172a; }
.wp-type-clean-card {
    display: flex; align-items: center; gap: 20px; padding: 25px; background: #f8fafc;
    border-radius: 15px; transition: 0.3s; border: 1px solid transparent;
}
.wp-type-clean-card:hover { background: #ffffff; border-color: #3b82f6; box-shadow: 0 10px 20px rgba(59,130,246,0.1); }
.wp-type-clean-icon { width: 60px; height: 60px; background: #eff6ff; color: #3b82f6; font-size: 24px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }

/* 5. CTA (Dark Blue) */
.wp-clean-cta { padding: 100px 0; background: linear-gradient(135deg, #1e40af, #1e3a8a); color: #ffffff; text-align: center; border-radius: 30px; margin: 50px 15px; }


/* ========================================================
   WORDPRESS WEBSITE MASTERPIECE - SPACIOUS DARK DESIGN
   ======================================================== */
   
/* Overriding the tight grid from before to fix "chipka hua" */
.wp-spaced-sec { padding: 150px 0; background: #020617; color: #fff; }
.wp-spaced-sec-alt { padding: 150px 0; background: #0f172a; color: #fff; }

.wp-huge-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 50px; margin-top: 80px; }
.wp-huge-card {
    background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.05);
    border-radius: 25px; padding: 60px 40px; text-align: center; transition: 0.4s;
}
.wp-huge-card:hover { transform: translateY(-15px); border-color: #3b82f6; background: rgba(255,255,255,0.08); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }
.wp-huge-icon { font-size: 60px; color: #3b82f6; margin-bottom: 30px; }
.wp-huge-title { font-size: 26px; font-weight: bold; margin-bottom: 20px; }
.wp-huge-desc { color: #cbd5e1; line-height: 1.8; font-size: 16px; }

.wp-real-photo-lg { width: 100%; border-radius: 30px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); object-fit: cover; height: 600px; border: 1px solid rgba(255,255,255,0.1); }


/* ==========================================
   PREMIUM CUSTOM SECTIONS (FROM USER)
   ========================================== */
/* Scroll Animation Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s all ease-in-out;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Section Typography */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}
.section-title span {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(26,106,190, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.section-title h2 {
    font-size: 42px;
    color: #0f172a;
    font-weight: 800;
    margin: 0;
}

/* 1. WHY CHOOSE US (Features Grid) */
.premium-features {
    padding: 100px 0;
    background: #ffffff;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 106, 190, 0.2);
}
.feature-card:hover::before {
    height: 100%;
}
.feature-card:hover h3, .feature-card:hover p, .feature-card:hover .f-icon {
    color: #fff;
}
.f-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. OUR PROCESS (Timeline) */
.process-section {
    padding: 100px 0;
    background: #f8fafc;
}
.process-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.process-step {
    flex: 1 1 250px;
    text-align: center;
    position: relative;
}
.process-icon {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    margin: 0 auto 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-step:hover .process-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1) rotateY(180deg);
}
.process-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}
.process-step p {
    color: #64748b;
    font-size: 15px;
}

/* 3. TECH STACK (Marquee) */
.tech-stack {
    padding: 60px 0;
    background: #0f172a;
    overflow: hidden;
}
.marquee {
    display: flex;
    width: max-content;
    animation: scrollText 20s linear infinite;
}
.tech-item {
    font-size: 24px;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    margin: 0 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}
.tech-item:hover {
    color: var(--primary);
}
@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 4. PORTFOLIO (Gallery) */
.portfolio-section {
    padding: 100px 0;
    background: #ffffff;
}
.port-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.port-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.port-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.port-item:hover img {
    transform: scale(1.1);
}
.port-item:hover .port-overlay {
    opacity: 1;
}
.port-overlay h4 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 5px 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.port-overlay p {
    color: var(--primary);
    font-weight: 600;
    margin: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.1s;
}
.port-item:hover h4, .port-item:hover p {
    transform: translateY(0);
}

/* 5. TESTIMONIALS */
.testimonial-section {
    padding: 100px 0;
    background: #f8fafc;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.testi-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}
.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
}
.testi-text {
    font-style: italic;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    margin-top: 10px;
}
.testi-author h5 {
    color: #0f172a;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}
.testi-author span {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

/* 6. FAQ (Accordion) */
.faq-section {
    padding: 100px 0;
    background: #ffffff;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}
.faq-item {
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #0f172a;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-question:hover {
    color: var(--primary);
}
.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #64748b;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    padding: 0 30px 20px 30px;
    max-height: 200px; /* Adjust if content is very long */
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

/* 7. CTA SECTION */
.cta-premium {
    padding: 100px 15px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    text-align: center;
    color: #fff;
}
.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}
.cta-inner h2 {
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 20px;
}
.cta-inner p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
}
.btn-glow-large {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(26, 106, 190, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-glow-large:hover {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@media(max-width: 768px) {
    .section-title h2 { font-size: 32px; }
    .cta-inner h2 { font-size: 32px; }
}

/* ==========================================
   CYBER-TECH SECTIONS (LANDING PAGE)
   ========================================== */

/* New Modern Scroll Animation Trigger */
.slide-reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: cubic-bezier(0.25, 1, 0.5, 1) 1s;
}
.slide-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Global Title Styles for New Sections */
.cyber-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}
.cyber-title h2 {
    font-size: 45px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}
.cyber-title p {
    color: #94a3b8;
    font-size: 18px;
    margin-top: 10px;
}
.cyber-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* 1. HERO USP GRID (Conversion Anchors) */
.usp-section {
    padding: 100px 0;
    background: #070a13;
}
.usp-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.usp-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.usp-box:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 106, 190, 0.2);
}
.usp-number {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.usp-box h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}
.usp-box p {
    color: #94a3b8;
    font-size: 16px;
    line-height: 1.7;
}

/* 2. VALUE METRICS (Live Counters) */
.metrics-section {
    padding: 80px 0;
    background: #0b0f19;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}
.metric-item {
    text-align: center;
    flex: 1 1 200px;
}
.metric-val {
    font-size: 55px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}
.metric-label {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
}

/* 3. CORE PACKAGES & STYLES */
.package-section {
    padding: 100px 0;
    background: #070a13;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pack-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
}
.pack-card.featured {
    border-color: var(--primary-dark);
    background: linear-gradient(180deg, rgba(26, 106, 190, 0.05) 0%, rgba(0,0,0,0) 100%);
    position: relative;
}
.pack-card.featured .badge {
    position: absolute;
    top: -15px; right: 30px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: #fff; font-size: 12px; font-weight: 800;
    padding: 5px 15px; border-radius: 20px;
}
.pack-card:hover {
    transform: scale(1.03);
    border-color: rgba(255,255,255,0.2);
}
.pack-card h4 { color: #fff; font-size: 22px; margin: 0 0 10px; }
.pack-price { font-size: 40px; font-weight: 800; color: #fff; margin-bottom: 25px; }
.pack-price span { font-size: 16px; color: #94a3b8; font-weight: 400; }
.pack-features { list-style: none; padding: 0; margin: 0; }
.pack-features li { color: #94a3b8; margin-bottom: 12px; font-size: 15px; }
.pack-features li i { color: var(--primary-light); margin-right: 10px; }

/* 4. DESIGN PSYCHOLOGY (Interactive Hotspots Simulation) */
.psychology-section {
    padding: 100px 0;
    background: #0b0f19;
}
.psychology-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
    padding: 0 20px;
}
.psych-text { flex: 1 1 450px; }
.psych-visual {
    flex: 1 1 450px;
    position: relative;
    background: #070a13;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}
.hotspot-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.01);
    border-radius: 12px;
    transition: 0.3s;
}
.hotspot-row:hover {
    background: rgba(255,255,255,0.03);
}
.hotspot-number {
    width: 35px; height: 34px;
    background: rgba(26, 106, 190, 0.1);
    border: 1px solid var(--primary-light);
    color: var(--primary-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; flex-shrink: 0;
}
.hotspot-info h4 { color: #fff; margin: 0 0 5px; font-size: 18px; }
.hotspot-info p { color: #94a3b8; margin: 0; font-size: 14px; }

/* 5. LIVE PROOFS & ACCREDITATIONS */
.proofs-section {
    padding: 80px 0;
    background: #070a13;
}
.proofs-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.6;
}
.proof-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

/* 6. CRITICAL CONVERSION FORM */
.lead-section {
    padding: 100px 0;
    background: #0b0f19;
}
.lead-box {
    max-width: 650px;
    margin: 0 auto;
    background: #070a13;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.lead-form-group {
    margin-bottom: 25px;
}
.lead-form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}
.lead-form-control {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
    box-sizing: border-box;
}
.lead-form-control:focus {
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.05);
    outline: none;
}
.btn-cyber-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.4s;
}
.btn-cyber-submit:hover {
    box-shadow: 0 0 30px rgba(26, 106, 190, 0.4);
    transform: translateY(-2px);
}

/* 7. RADICAL FINAL RE-ENGAGEMENT */
.radical-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #070a13 0%, #020408 100%);
    text-align: center;
    position: relative;
}
.radical-content { max-width: 750px; margin: 0 auto; position: relative; z-index: 5; }
.radical-content h2 { font-size: 50px; font-weight: 900; color: #fff; margin-bottom: 20px; }
.radical-content p { font-size: 20px; color: #94a3b8; margin-bottom: 40px; }

/* ==========================================
   CYBER-TECH CLEAN OVERRIDES (LANDING PAGE)
   ========================================== */
   
/* Override Global Titles for light sections */
.cyber-title-light h2 { color: #0f172a; }
.cyber-title-light p { color: #64748b; }

/* 1. HERO USP GRID (Light) */
.usp-section { background: #ffffff; }
.usp-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    backdrop-filter: none;
}
.usp-box h3 { color: #0f172a; }
.usp-box p { color: #475569; }

/* 2. VALUE METRICS (Light) */
.metrics-section {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.metric-label { color: #475569; font-weight: 700; }

/* New A/B Testing Section (Light) */
.ab-test-sec { padding: 100px 0; background: #ffffff; }

/* 5. LIVE PROOFS (Light) */
.proofs-section { background: #ffffff; border-top: 1px solid #e2e8f0; }
.proof-logo { color: #0f172a; }

/* New Process Section (Light) */
.cyber-process-sec { padding: 100px 0; background: #f8fafc; }


/* ==========================================
   LANDING PAGE PROCESS FIX
   ========================================== */
.lp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
@media (max-width: 991px) {
    .lp-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}
@media (max-width: 767px) {
    .lp-process-grid {
        grid-template-columns: 1fr;
    }
}
.lp-process-step {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.3s;
    position: relative;
    z-index: 2;
}
.lp-process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26,106,190,0.1);
    border-color: var(--primary-light);
}
.lp-process-icon {
    width: 80px;
    height: 80px;
    background: rgba(26,106,190,0.1);
    color: var(--primary);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: 0.3s;
}
.lp-process-step:hover .lp-process-icon {
    background: var(--primary);
    color: #fff;
    transform: rotateY(180deg);
}
.lp-process-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}
.lp-process-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}
/* Connecting line for desktop */
@media (min-width: 992px) {
    .lp-process-grid::before {
        content: '';
        position: absolute;
        top: 80px; /* middle of the 80px icon assuming 40px padding */
        left: 10%;
        right: 10%;
        height: 2px;
        background: #e2e8f0;
        z-index: 1;
    }
}

/* ==========================================
   MOBILE APP DEV SECTIONS
   ========================================== */
   
/* Liquid-Smooth Scroll Animation Transition */
.app-reveal {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    transition: opacity 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), 
                transform 0.8s cubic-bezier(0.215, 0.610, 0.355, 1), 
                filter 0.8s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.app-reveal.active {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* Section Global Headers */
.app-sec-header {
    text-align: center;
    margin-bottom: 70px;
}
.app-sec-header .tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-light);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
}
.app-sec-header h2 {
    font-size: 42px;
    color: #fff;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
}

/* 1. ARCHITECTURE TABS (iOS vs Android Native Stack) */
.arch-section {
    padding: 120px 0;
    background: #090d16;
}
.arch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.arch-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.arch-tab-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.arch-tab-btn.active[data-target="ios"] {
    background: rgba(0, 122, 255, 0.1);
    border-color: #007aff;
    color: #fff;
}
.arch-tab-btn.active[data-target="android"] {
    background: rgba(61, 220, 132, 0.1);
    border-color: #3ddc84;
    color: #fff;
}
.arch-tab-panel {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.arch-tab-panel.active {
    display: grid;
}
.arch-card {
    background: rgba(20, 27, 41, 0.65);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}
.arch-card:hover {
    transform: translateY(-5px);
}
.arch-card h3 { color: #fff; font-size: 22px; margin: 0 0 15px; }
.arch-card p { color: #94a3b8; font-size: 15px; line-height: 1.7; margin: 0; }
.arch-card .tech-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 20px;
}

/* 2. APP DEVELOPMENT LIFECYCLE PROGRESSION */
.lifecycle-section {
    padding: 120px 0;
    background: #0d111c;
}
.lifecycle-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.lifecycle-wrapper::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 50px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-light) 0%, rgba(0,242,254,0) 100%);
}
.lifecycle-row {
    display: flex;
    gap: 40px;
    position: relative;
    margin-bottom: 60px;
}
.lifecycle-node {
    width: 24px; height: 24px;
    background: #0d111c;
    border: 4px solid var(--primary-light);
    border-radius: 50%;
    z-index: 2;
    margin-left: 39px;
    box-shadow: 0 0 15px var(--primary-light);
    margin-top: 5px;
}
.lifecycle-content {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 16px;
    flex-grow: 1;
}
.lifecycle-content h4 { color: #fff; font-size: 20px; margin: 0 0 10px; }
.lifecycle-content p { color: #94a3b8; margin: 0; font-size: 15px; line-height: 1.6; }

/* 3. BUSINESS MODELS & PLATFORM SCALE */
.model-section {
    padding: 120px 0;
    background: #090d16;
}
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.model-card {
    background: linear-gradient(210deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 45px;
    border-radius: 24px;
    transition: border-color 0.3s ease;
}
.model-card:hover {
    border-color: rgba(26, 106, 190, 0.3);
}
.model-card i { font-size: 36px; color: var(--primary-light); margin-bottom: 25px; display: block; }
.model-card h3 { color: #fff; font-size: 24px; margin-bottom: 15px; }
.model-card p { color: #94a3b8; font-size: 16px; line-height: 1.7; margin: 0; }

/* 4. UX FOCUS & MOBILE PARADIGMS */
.ux-section {
    padding: 120px 0;
    background: #0d111c;
}
.ux-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 20px;
}
.ux-media {
    flex: 1 1 450px;
    position: relative;
}
.ux-media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.ux-text { flex: 1 1 450px; }
.ux-text h3 { color: #fff; font-size: 36px; font-weight: 800; margin-bottom: 20px; }
.ux-text p { color: #94a3b8; font-size: 16px; line-height: 1.8; margin-bottom: 30px; }
.ux-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.ux-item-icon {
    width: 45px; height: 45px;
    background: rgba(26, 106, 190, 0.08);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light); font-size: 18px; flex-shrink: 0;
}
.ux-item-info h4 { color: #fff; margin: 0 0 5px; font-size: 18px; }
.ux-item-info p { color: #94a3b8; margin: 0; font-size: 14px; }

/* 5. APP ACCREDITATIONS & SECURITY MATRICES */
.compliance-section {
    padding: 80px 0;
    background: #090d16;
    border-top: 1px solid rgba(255,255,255,0.03);
}
.comp-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}
.badge-node {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.badge-node i { color: var(--primary-light); font-size: 20px; }

/* 6. TECHNICAL CONVERSION LOCK (Quote Builder Intent) */
.app-form-section {
    padding: 120px 0;
    background: #0d111c;
}
.app-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #090d16;
    padding: 50px;
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.app-input-group {
    margin-bottom: 25px;
}
.app-input-group label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.app-select-custom {
    width: 100%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.app-select-custom:focus {
    border-color: var(--primary-light);
    background: rgba(255,255,255,0.04);
    outline: none;
}
.app-select-option {
    background: #090d16;
    color: #fff;
}
.btn-app-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-app-submit:hover {
    box-shadow: 0 0 35px rgba(26, 106, 190, 0.45);
    transform: translateY(-2px);
}

/* 7. APP MAINTENANCE ACCORDION */
.maint-section {
    padding: 120px 0;
    background: #090d16;
}
.maint-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;
}
.maint-row {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 14px;
    margin-bottom: 15px;
    overflow: hidden;
}
.maint-trigger {
    padding: 24px 35px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease;
}
.maint-trigger:hover { color: var(--primary-light); }
.maint-body {
    padding: 0 35px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
}
.maint-row.open .maint-body {
    padding: 0 35px 24px 35px;
    max-height: 300px;
}
.maint-row.open .maint-trigger i {
    transform: rotate(180deg);
    color: var(--primary-light);
}

/* 8. ULTRA RE-ENGAGEMENT BLOCK */
.terminal-section {
    padding: 140px 20px;
    background: linear-gradient(180deg, #0d111c 0%, #05070a 100%);
    text-align: center;
}
.terminal-box { max-width: 800px; margin: 0 auto; }
.terminal-box h2 { font-size: 52px; font-weight: 900; color: #fff; margin-bottom: 25px; letter-spacing: -1px; }
.terminal-box p { font-size: 19px; color: #94a3b8; margin-bottom: 45px; line-height: 1.7; }
.btn-glow-app {
    display: inline-block;
    padding: 20px 50px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 800;
    border-radius: 35px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.btn-glow-app:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 0 40px rgba(26,106,190, 0.5);
    transform: translateY(-4px);
}

@media(max-width: 768px) {
    .app-sec-header h2, .terminal-box h2 { font-size: 32px; }
    .lifecycle-wrapper::before { left: 20px; }
    .lifecycle-node { margin-left: 9px; }
    .app-form-wrapper { padding: 30px 20px; }
}


/* ==========================================
   EV INFRASTRUCTURE SECTIONS
   ========================================== */

/* EV Global Theme Variables mapping to standard brand */
.ev-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ev-reveal.ev-active {
    opacity: 1;
    transform: translateY(0);
}

.ev-reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ev-reveal-left.ev-active {
    opacity: 1;
    transform: translateX(0);
}

.ev-reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.ev-reveal-right.ev-active {
    opacity: 1;
    transform: translateX(0);
}

.ev-header-center {
    text-align: center;
    margin-bottom: 70px;
}
.ev-header-center .ev-tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 15px;
}
.ev-header-center h2 {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

/* 1. DYNAMIC HERO SECTION */
.ev-hero-premium {
    position: relative;
    padding: 160px 0 120px;
    background: radial-gradient(circle at 80% 20%, rgba(26, 106, 190, 0.15), transparent 50%), #040711;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ev-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    padding: 0 25px;
    gap: 50px;
}
@media (max-width: 991px) {
    .ev-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .ev-hero-tags { justify-content: center; }
}
.ev-hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 25px;
}
.ev-hero-content h1 span {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ev-hero-content p {
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}
.ev-hero-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.ev-hero-tags span {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 8px 18px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ev-hero-tags span i {
    color: var(--primary-light);
}
.ev-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}
.ev-hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}
.ev-hero-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; height: 110%;
    border: 2px dashed rgba(26, 106, 190, 0.3);
    border-radius: 50%;
    animation: ev-spin 40s linear infinite;
    pointer-events: none;
}
@keyframes ev-spin { 100% { transform: translate(-50%, -50%) rotate(360deg); } }

/* 2. LIVE TELEMETRY COUNTER PANEL */
.ev-telemetry-sec {
    padding: 80px 0;
    background: #0a0f20;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ev-telemetry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    max-width: 1300px;
    margin: 0 auto;
    gap: 40px;
    padding: 0 25px;
}
.ev-stat-box {
    background: rgba(4, 7, 17, 0.5);
    border: 1px solid rgba(255,255,255,0.03);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    position: relative;
}
.ev-stat-box h3 {
    font-size: 50px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 10px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ev-stat-box p {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* 3. HARDWARE FLEET MATRIX */
.ev-hardware-sec {
    padding: 120px 0;
    background: #040711;
}
.ev-hardware-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
}
.ev-hw-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.ev-hw-btn {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}
.ev-hw-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(26, 106, 190, 0.3);
}
.ev-hw-display {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.ev-hw-display.active {
    display: grid;
}
@media (max-width: 991px) {
    .ev-hw-display.active { grid-template-columns: 1fr; text-align: center; }
    .ev-hw-specs { justify-content: center; }
}
.ev-hw-details h3 {
    font-size: 36px;
    color: #fff;
    font-weight: 800;
    margin: 0 0 20px;
}
.ev-hw-details p {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 30px;
}
.ev-hw-specs {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.ev-spec-node {
    background: #0a0f20;
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.03);
    min-width: 120px;
}
.ev-spec-node div:first-child {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 5px;
    font-weight: 600;
}
.ev-spec-node div:last-child {
    font-size: 22px;
    color: var(--primary-light);
    font-weight: 800;
}
.ev-hw-img-wrap img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

/* 4. SOFTWARE CMS SUITE */
.ev-software-sec {
    padding: 120px 0;
    background: #0a0f20;
}
.ev-soft-layout {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}
.ev-soft-panel {
    display: flex;
    align-items: center;
    gap: 60px;
}
.ev-soft-panel:nth-child(even) {
    flex-direction: row-reverse;
}
@media (max-width: 991px) {
    .ev-soft-panel, .ev-soft-panel:nth-child(even) { flex-direction: column; text-align: center; }
}
.ev-soft-text { flex: 1; }
.ev-soft-media { flex: 1; }
.ev-soft-media img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.03);
}
.ev-soft-text h3 {
    font-size: 34px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
}
.ev-soft-text p {
    font-size: 17px;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
}
.ev-soft-bullets {
    list-style: none; padding: 0; margin: 0;
}
.ev-soft-bullets li {
    font-size: 16px;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 991px) { .ev-soft-bullets li { justify-content: center; } }
.ev-soft-bullets li i {
    color: var(--primary-light);
    font-size: 18px;
}

/* 5. CLOUD INFRASTRUCTURE */
.ev-cloud-sec {
    padding: 100px 0;
    background: #040711;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ev-cloud-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1300px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 25px;
}
.ev-cloud-card {
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.04);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.ev-cloud-card:hover {
    border-color: var(--primary-light);
    background: rgba(26, 106, 190, 0.05);
}
.ev-cloud-card i {
    font-size: 36px;
    color: var(--primary-light);
    margin-bottom: 25px;
    display: block;
}
.ev-cloud-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}
.ev-cloud-card p {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* 6. MOBILE APP EXPERIENCE */
.ev-driver-sec {
    padding: 120px 0;
    background: #0a0f20;
}
.ev-driver-split {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 70px;
    padding: 0 25px;
}
@media (max-width: 991px) {
    .ev-driver-split { flex-direction: column-reverse; text-align: center; }
    .ev-driver-node { justify-content: center; }
}
.ev-driver-ui { flex: 1; text-align: center; }
.ev-driver-ui img { max-width: 320px; width: 100%; filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5)); }
.ev-driver-info { flex: 1.2; }
.ev-driver-info h3 { font-size: 38px; color: #fff; font-weight: 800; margin-bottom: 20px; }
.ev-driver-info p { font-size: 17px; color: #94a3b8; line-height: 1.7; margin-bottom: 40px; }
.ev-driver-node { display: flex; gap: 20px; margin-bottom: 30px; text-align: left; }
.ev-dn-icon {
    width: 50px; height: 50px; background: rgba(26, 106, 190, 0.1); border-radius: 12px;
    display: flex; align-items: center; justify-content: center; color: var(--primary-light);
    font-size: 20px; flex-shrink: 0;
}
.ev-dn-text h4 { color: #fff; font-size: 18px; margin: 0 0 5px; font-weight: 700; }
.ev-dn-text p { color: #94a3b8; font-size: 14px; margin: 0; line-height: 1.5; }

/* 7. DEPLOYMENT WORKFLOW */
.ev-flow-sec {
    padding: 120px 0;
    background: #040711;
}
.ev-flow-track {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 25px;
}
.ev-flow-track::before {
    content: ''; position: absolute; top: 0; bottom: 0; left: 55px; width: 2px;
    background: linear-gradient(180deg, var(--primary-light) 0%, rgba(26,106,190,0) 100%);
}
.ev-flow-step {
    display: flex; gap: 40px; position: relative; margin-bottom: 50px;
}
.ev-flow-step:last-child { margin-bottom: 0; }
.ev-flow-badge {
    width: 60px; height: 60px; background: #0a0f20; border: 2px solid var(--primary-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--primary-light); font-weight: 800; font-size: 18px; flex-shrink: 0; z-index: 2;
    box-shadow: 0 0 15px rgba(26, 106, 190, 0.2);
}
.ev-flow-body {
    background: #0a0f20; padding: 30px 35px; border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.02); flex-grow: 1;
}
.ev-flow-body h4 { color: #fff; font-size: 19px; margin: 0 0 8px; font-weight: 700; }
.ev-flow-body p { color: #94a3b8; font-size: 15px; margin: 0; line-height: 1.6; }

/* 8. LOAD MANAGEMENT VISUALIZER */
.ev-grid-sec {
    padding: 120px 0;
    background: #0a0f20;
}
.ev-grid-split {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 25px;
}
@media (max-width: 991px) { .ev-grid-split { flex-direction: column; text-align: center; } }
.ev-grid-info { flex: 1; }
.ev-grid-visual {
    flex: 1.2; width: 100%; background: #040711; border-radius: 24px;
    padding: 40px; border: 1px solid rgba(255,255,255,0.04); box-sizing: border-box;
}
.ev-grid-info h3 { font-size: 36px; color: #fff; font-weight: 800; margin-bottom: 20px; }
.ev-grid-info p { font-size: 17px; color: #94a3b8; line-height: 1.7; margin-bottom: 25px; }
.ev-load-bar-wrap { margin-bottom: 20px; }
.ev-load-bar-wrap:last-child { margin-bottom: 0; }
.ev-load-label { display: flex; justify-content: space-between; color: #fff; font-size: 14px; margin-bottom: 8px; font-weight: 600; }
.ev-load-track { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; overflow: hidden; }
.ev-load-fill { height: 100%; border-radius: 4px; transition: width 1.5s ease; background: var(--primary-light); }

/* 9. DEPLOYMENT PORTFOLIO */
.ev-portfolio-sec {
    padding: 120px 0;
    background: #040711;
}
.ev-port-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    max-width: 1300px;
    margin: 0 auto;
    gap: 30px;
    padding: 0 25px;
}
.ev-port-card {
    position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.05);
}
.ev-port-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.ev-port-card:hover img { transform: scale(1.08); }
.ev-port-desc {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,7,17,0.95) 0%, rgba(4,7,17,0.3) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 35px;
}
.ev-port-desc h4 { color: #fff; font-size: 22px; margin: 0 0 8px; font-weight: 800; }
.ev-port-desc p { color: var(--primary-light); font-size: 14px; margin: 0; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

/* 10. REAL INVESTMENT ROI ESTIMATOR */
.ev-calc-sec {
    padding: 120px 0;
    background: #0a0f20;
}
.ev-calc-panel {
    max-width: 950px; margin: 0 auto; background: #040711; border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.04); display: grid; grid-template-columns: 1.2fr 1fr;
    overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
@media (max-width: 767px) { .ev-calc-panel { grid-template-columns: 1fr; } }
.ev-calc-inputs { padding: 50px; box-sizing: border-box; }
.ev-calc-outputs { background: rgba(26, 106, 190, 0.05); padding: 50px; border-left: 1px solid rgba(255,255,255,0.04); display: flex; flex-direction: column; justify-content: center; box-sizing: border-box;}
@media (max-width: 767px) { .ev-calc-outputs { border-left: none; border-top: 1px solid rgba(255,255,255,0.04); } }
.ev-slider-group { margin-bottom: 35px; }
.ev-slider-group:last-child { margin-bottom: 0; }
.ev-slider-label { display: flex; justify-content: space-between; color: #fff; font-size: 15px; margin-bottom: 12px; font-weight: 600; }
.ev-slider-label span:last-child { color: var(--primary-light); font-weight: 800; }
.ev-slider-input {
    width: 100%; -webkit-appearance: none; background: rgba(255,255,255,0.08); height: 6px; border-radius: 3px; outline: none;
}
.ev-slider-input::-webkit-slider-thumb {
    -webkit-appearance: none; width: 20px; height: 20px; background: var(--primary-light); border-radius: 50%; cursor: pointer; box-shadow: 0 0 10px var(--primary-light);
}
.ev-roi-metric { margin-bottom: 30px; }
.ev-roi-metric:last-child { margin-bottom: 0; }
.ev-roi-label { color: #94a3b8; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.ev-roi-display { font-size: 42px; font-weight: 900; color: #fff; }

/* 11. DEEP KNOWLEDGE FAQ */
.ev-faq-sec {
    padding: 120px 0;
    background: #040711;
}
.ev-faq-wrap { max-width: 850px; margin: 0 auto; padding: 0 25px; }
.ev-faq-card {
    background: #0a0f20; border: 1px solid rgba(255,255,255,0.02);
    border-radius: 14px; margin-bottom: 15px; overflow: hidden;
}
.ev-faq-trigger {
    padding: 24px 30px; cursor: pointer; display: flex; justify-content: space-between;
    align-items: center; font-weight: 700; color: #fff; font-size: 18px; transition: color 0.3s ease;
}
.ev-faq-trigger:hover { color: var(--primary-light); }
.ev-faq-body {
    padding: 0 30px; max-height: 0; overflow: hidden; color: #94a3b8;
    font-size: 15px; line-height: 1.7; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}
.ev-faq-card.open .ev-faq-body { padding: 0 30px 24px 30px; max-height: 250px; }
.ev-faq-card.open .ev-faq-trigger i { transform: rotate(180deg); color: var(--primary-light); }

/* 12. HIGH CONVERSION LEAD */
.ev-lead-sec {
    padding: 120px 0;
    background: radial-gradient(circle at 50% 100%, rgba(26, 106, 190, 0.1), transparent 60%), #0a0f20;
}
.ev-lead-block {
    max-width: 700px; margin: 0 auto; background: #040711; padding: 55px;
    border-radius: 32px; border: 1px solid rgba(255,255,255,0.04); box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    box-sizing: border-box;
}
@media (max-width: 767px) { .ev-lead-block { padding: 35px 20px; } }
.ev-form-node { margin-bottom: 25px; }
.ev-form-node label { display: block; color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.ev-field {
    width: 100%; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.08);
    padding: 16px 20px; border-radius: 10px; color: #fff; font-size: 16px; transition: all 0.3s ease; box-sizing: border-box;
}
.ev-field:focus { border-color: var(--primary-light); background: rgba(255,255,255,0.04); outline: none; }
.btn-ev-submit {
    width: 100%; background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); color: #fff; border: none;
    padding: 18px; border-radius: 10px; font-size: 16px; font-weight: 800; cursor: pointer;
    text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease;
}
.btn-ev-submit:hover { box-shadow: 0 0 35px rgba(26, 106, 190, 0.4); transform: translateY(-2px); }

