/* ============================================
   MantraSphere - About Page Premium Styles
   ============================================ */

/* ---- About Hero Banner ---- */
.about-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #0f172a 0%, #1a1040 40%, #0f172a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 120px;
}

.about-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(99,102,241,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.shape-1 {
    width: 400px; height: 400px;
    background: rgba(99, 102, 241, 0.15);
    top: -100px; right: -100px;
    animation: float-shape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px; height: 300px;
    background: rgba(236, 72, 153, 0.12);
    bottom: -50px; left: -50px;
    animation: float-shape 10s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px; height: 200px;
    background: rgba(14, 165, 233, 0.12);
    top: 30%; left: 40%;
    animation: float-shape 12s ease-in-out infinite;
}

.shape-4 {
    width: 150px; height: 150px;
    background: rgba(20, 184, 166, 0.12);
    top: 20%; right: 20%;
    animation: float-shape 9s ease-in-out infinite reverse;
}

.shape-5 {
    width: 100px; height: 100px;
    background: rgba(245, 158, 11, 0.1);
    bottom: 30%; right: 10%;
    animation: float-shape 7s ease-in-out infinite;
}

@keyframes float-shape {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    25% { transform: translateY(-30px) translateX(20px) scale(1.05); }
    50% { transform: translateY(-10px) translateX(-20px) scale(0.95); }
    75% { transform: translateY(-40px) translateX(10px) scale(1.02); }
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 8px 24px;
    border-radius: 50px;
    color: #818cf8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #818cf8;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.about-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-content > p {
    font-size: 1.2rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-hero-tags {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 500;
}

.hero-tag i {
    color: #10b981;
    font-size: 0.8rem;
}

.about-hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.about-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---- Who We Are Section ---- */
.about-who-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-who-left .section-tag {
    margin-bottom: 16px;
}

.about-who-left h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    line-height: 1.25;
}

.lead-text {
    font-size: 1.15rem;
    color: #334155;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-who-left > p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0;
}

.highlight-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.35), 0 8px 10px -6px rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
}

.highlight-item h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #0f172a;
}

.highlight-item p {
    font-size: 0.82rem;
    color: #64748b;
    margin: 0;
}

.about-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Visual Block - Right side Graphic */
/* ---- About Image Block (replaces orbit graphic) ---- */
.about-image-block {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.image-frame {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.18),
                0 8px 20px rgba(0, 0, 0, 0.08);
    border: 3px solid rgba(99, 102, 241, 0.15);
    transition: all 0.4s ease;
}

.image-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(99, 102, 241, 0.25),
                0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.35);
}

.image-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover img {
    transform: scale(1.05);
}

/* Floating Badges on Image */
.image-badge {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 12px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0f172a;
    animation: float-badge 4s ease-in-out infinite;
}

.image-badge i {
    font-size: 1.1rem;
    color: #6366f1;
}

.center-hex .logo-image {
    max-width: 40%;
}

.badge-top {
    top: -16px;
    right: -20px;
    animation-delay: 0s;
}

.badge-bottom {
    bottom: -16px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Decorative Dots Pattern */
.image-dots {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    z-index: 1;
    background-image: radial-gradient(circle, rgba(99, 102, 241, 0.25) 2px, transparent 2px);
    background-size: 16px 16px;
    border-radius: 12px;
    opacity: 0.6;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .about-image-block {
        max-width: 400px;
    }

    .image-frame img {
        height: 320px;
    }

    .badge-top {
        right: 0;
        top: -14px;
    }

    .badge-bottom {
        left: 0;
        bottom: -14px;
    }

    .image-dots {
        width: 80px;
        height: 80px;
        bottom: -20px;
        right: -15px;
    }

    .image-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .image-frame img {
        height: 260px;
    }

    .image-badge span {
        display: none;
    }

    .image-badge {
        padding: 10px;
        border-radius: 50%;
    }

    .image-badge i {
        font-size: 1.2rem;
    }
}

/* ---- Stats Bar Section ---- */
.stats-bar-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.stats-particle {
    position: absolute;
    width: 6px; height: 6px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

.stats-particle:nth-child(odd) { animation-duration: 4s; }
.stats-particle:nth-child(even) { animation-delay: 1.5s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stats-bar-item {
    text-align: center;
}

.sbi-circle {
    width: 140px;
    height: 140px;
    position: relative;
    margin: 0 auto 20px;
}

.sbi-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.sbi-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4;
}

.sbi-progress {
    fill: none;
    stroke: url(#statsGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 2s ease-out;
}

.sbi-progress.animated {
    stroke-dashoffset: var(--offset);
}

.sbi-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.sbi-value::after {
    content: '+';
    color: #818cf8;
    font-size: 1.5rem;
}

.stats-bar-item h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.stats-bar-item p {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ---- MVV Premium Section ---- */
.mvv-premium-section {
    background: #ffffff;
    padding: 100px 0;
}

.mvv-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-premium-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 44px 34px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.mvv-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0  20px 25px -5px rgba(99, 102, 241, 0.35), 0 8px 10px -6px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.3);
}

.mvv-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mission-card .mvv-glow { background: rgba(99, 102, 241, 0.2); }
.vision-card .mvv-glow { background: rgba(14, 165, 233, 0.2); }
.values-card .mvv-glow { background: rgba(236, 72, 153, 0.2); }

.mvv-premium-card:hover .mvv-glow {
    opacity: 1;
}

.mvv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.mvv-icon-wrap {
    position: relative;
    width: 72px;
    height: 72px;
}

.mvv-icon-inner {
    width: 72px; height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.mission-card .mvv-icon-inner { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.vision-card .mvv-icon-inner { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.values-card .mvv-icon-inner { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.mvv-icon-ring {
    position: absolute;
    top: -6px; left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 24px;
    border: 2px dashed rgba(99, 102, 241, 0.2);
    animation: spin-slow 15s linear infinite;
}

.mvv-label {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
}

.mvv-premium-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #0f172a;
}

.mvv-premium-card > p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.mvv-list {
    list-style: none;
}

.mvv-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

.mvv-list li i {
    color: #6366f1;
    font-size: 0.75rem;
}

/* ---- Core Values Section ---- */
.core-values-section {
    background: #f8fafc;
    padding: 100px 0;
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.core-value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.core-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0  20px 25px -5px rgba(99, 102, 241, 0.35), 0 8px 10px -6px rgba(99, 102, 241, 0.25);
}

.cv-icon-box {
    width: 70px; height: 70px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.core-value-card:hover .cv-icon-box {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.1);
}

.core-value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.core-value-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
}

.cv-decoration {
    margin-top: 20px;
}

.cv-decoration span {
    display: block;
    width: 40px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 0 auto;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.core-value-card:hover .cv-decoration span {
    width: 60px;
    opacity: 1;
}

/* ---- Journey Premium Section ---- */
.journey-premium-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.journey-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.journey-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.blob-1 {
    width: 400px; height: 400px;
    background: rgba(99, 102, 241, 0.05);
    top: 10%; right: -100px;
}

.blob-2 {
    width: 350px; height: 350px;
    background: rgba(14, 165, 233, 0.05);
    bottom: 10%; left: -100px;
}

.journey-premium-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.jpt-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #6366f1, #0ea5e9, #06b6d4, #14b8a6);
    transform: translateX(-50%);
    border-radius: 3px;
}

.jpt-item {
    display: flex;
    justify-content: flex-start;
    padding: 0 0 50px;
    position: relative;
    width: 50%;
    padding-right: 50px;
}

.jpt-item.right {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
}

.jpt-dot {
    position: absolute;
    top: 20px;
    right: -12px;
    width: 24px;
    height: 24px;
    z-index: 5;
}

.jpt-item.right .jpt-dot {
    right: auto;
    left: -12px;
}

.jpt-dot-inner {
    width: 16px; height: 16px;
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.jpt-dot-ring {
    width: 24px; height: 24px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    50% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.jpt-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.jpt-card:hover {
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-4px);
}

.jpt-card.featured-timeline {
    background: linear-gradient(135deg, rgba(99,102,241,0.03), rgba(14,165,233,0.03));
    border-color: rgba(99, 102, 241, 0.3);
}

.jpt-year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    color: #ffffff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.jpt-icon {
    width: 44px; height: 44px;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.jpt-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.jpt-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.jpt-stats {
    display: flex;
    gap: 24px;
}

.jpt-stats div {
    display: flex;
    flex-direction: column;
}

.jpt-stats strong {
    font-size: 1.3rem;
    font-weight: 800;
    color: #6366f1;
    font-family: 'Poppins', sans-serif;
}

.jpt-stats span {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 500;
}

/* ---- Why Choose Us Premium ---- */
.why-choose-premium-section {
    background: #f8fafc;
    padding: 100px 0;
}

.wcp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wcp-left .section-tag {
    margin-bottom: 16px;
}

.wcp-left h2 {
    font-size: 2.3rem;
    margin-bottom: 16px;
}

.wcp-left > p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 36px;
}

/* Accordion */
.wcp-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wcp-acc-item {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wcp-acc-item.active {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.wcp-acc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wcp-acc-header:hover {
    background: #f8fafc;
}

.wcp-acc-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(14,165,233,0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6366f1;
    font-size: 0.95rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.wcp-acc-item.active .wcp-acc-icon {
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    color: #ffffff;
}

.wcp-acc-header h4 {
    flex: 1;
    font-size: 1rem;
    color: #0f172a;
}

.wcp-acc-arrow {
    color: #94a3b8;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.wcp-acc-item.active .wcp-acc-arrow {
    transform: rotate(180deg);
    color: #6366f1;
}

.wcp-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.wcp-acc-item.active .wcp-acc-body {
    max-height: 200px;
}

.wcp-acc-body p {
    padding: 0 24px 20px 78px;
    color: #64748b;
    line-height: 1.7;
    font-size: 0.92rem;
}

/* Hex Grid Visual */
.wcp-visual {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wcp-bg-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.08), transparent 70%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.wcp-hex-grid {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 15px;
    position: relative;
    z-index: 2;
}

.wcp-hex {
    width: 100px; height: 100px;
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    animation: float-hex 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.wcp-hex:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.wcp-hex i {
    font-size: 1.5rem;
    color: #6366f1;
}

.wcp-hex span {
    font-size: 0.7rem;
    font-weight: 600;
    color: #64748b;
    text-align: center;
    line-height: 1.2;
}

.wcp-hex.center-hex {
    background: linear-gradient(135deg, #6366f1, #0ea5e9);
    border-color: transparent;
    transform: scale(1.1);
}

.wcp-hex.center-hex i {
    color: #ffffff;
}

.wcp-hex.center-hex span {
    color: rgba(255, 255, 255, 0.9);
}

.wcp-hex.center-hex:hover {
    transform: scale(1.15) translateY(-5px);
}

@keyframes float-hex {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.wcp-hex.center-hex {
    animation: float-hex-center 4s ease-in-out infinite;
}

@keyframes float-hex-center {
    0%, 100% { transform: scale(1.1) translateY(0); }
    50% { transform: scale(1.1) translateY(-8px); }
}

/* ---- Industries Section ---- */
.industries-section {
    background: #ffffff;
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    text-align: center;
    padding: 36px 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: default;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(99, 102, 241, 0.35), 0 8px 10px -6px rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.2);
}

.industry-icon {
    width: 64px; height: 64px;
    background: color-mix(in srgb, var(--accent) 10%, transparent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.1);
}

.industry-card h4 {
    font-size: 0.95rem;
    color: #0f172a;
}

/* ---- About CTA Section ---- */
.about-cta-section {
    background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 50%, #06b6d4 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.about-cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.shape-a {
    width: 400px; height: 400px;
    top: -200px; right: -100px;
}

.shape-b {
    width: 300px; height: 300px;
    bottom: -150px; left: -80px;
}

.shape-c {
    width: 200px; height: 200px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.about-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-cta-icon {
    width: 80px; height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2rem;
    color: #ffffff;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.8;
}

.cta-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge i {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .about-who-grid {
        gap: 50px;
    }

    .mvv-premium-grid {
        grid-template-columns: 1fr;
    }

    .core-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .wcp-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 130px 0 100px;
        min-height: auto;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .about-hero-content > p {
        font-size: 1rem;
    }

    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-who-left h2 {
        font-size: 2rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-visual-block {
        height: 400px;
    }

    .stats-bar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .core-values-grid {
        grid-template-columns: 1fr;
    }

    /* Timeline mobile */
    .jpt-line {
        left: 20px;
    }

    .jpt-item,
    .jpt-item.right {
        width: 100%;
        margin-left: 0;
        padding-left: 55px;
        padding-right: 0;
    }

    .jpt-dot,
    .jpt-item.right .jpt-dot {
        left: 8px;
        right: auto;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wcp-hex-grid {
        grid-template-columns: repeat(3, 80px);
        grid-template-rows: repeat(3, 80px);
        gap: 10px;
    }

    .wcp-hex {
        width: 80px;
        height: 80px;
    }

    .wcp-hex i {
        font-size: 1.2rem;
    }

    .wcp-hex span {
        font-size: 0.6rem;
    }

    .about-cta-content h2 {
        font-size: 2rem;
    }

    .cta-trust-badges {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .about-hero-tags {
        flex-direction: column;
        align-items: center;
    }

    .floating-stat-card {
        padding: 12px 14px;
    }

    .fsc-info strong {
        font-size: 1.2rem;
    }

    .floating-stat-card.card-2,
    .floating-stat-card.card-4 {
        right: 0;
    }

    .stats-bar-grid {
        grid-template-columns: 1fr;
    }

    .sbi-circle {
        width: 110px;
        height: 110px;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wcp-hex-grid {
        grid-template-columns: repeat(3, 70px);
        grid-template-rows: repeat(3, 70px);
    }

    .wcp-hex {
        width: 70px;
        height: 70px;
    }
}