/* =========================================
   1. MAIN BANNER: ADVANCED HERO REDESIGN
   ========================================= */
.home-hero-redesign {
    position: relative;
    min-height: 100vh;
    background-color: var(--primary-bg);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 0;
    /* Removed bottom padding */
    isolation: isolate;
    perspective: 1200px;
    /* Smooth fade into next section */
    mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* --- Animated Background Elements --- */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: moveShape 25s infinite alternate ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: #00f2fe;
    bottom: -150px;
    right: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #7000ff;
    top: 50%;
    left: 50%;
    animation-delay: -15s;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black, transparent 85%);
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

.noise-overlay {
    position: absolute;
    inset: 0;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.05;
    z-index: 10;
    pointer-events: none;
    mix-blend-mode: overlay;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.1);
    }
}

.container-hero {
    max-width: 1750px;
    position: relative;
}

/* --- Content Styling --- */
.hero-tagline {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.tag-line {
    width: 45px;
    height: 2px;
    background: var(--accent-color);
}

.tag-text {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent-color);
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 6.5rem);
    font-weight: 950;
    line-height: 0.88;
    margin-bottom: 30px;
    letter-spacing: -5px;
    color: var(--text-primary);
    text-align: left;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.highlight-neon {
    color: var(--accent-color);
    text-shadow: 0 0 40px var(--accent-glow);
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    position: relative;
}

.highlight-neon::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    opacity: 0.2;
    filter: blur(5px);
    z-index: -1;
}

/* --- Role Scroller --- */
.role-scroller-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 25px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.role-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.role-wrapper {
    height: 24px;
    overflow: hidden;
    position: relative;
}

.role-list {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

.role-item {
    height: 24px;
    font-size: 0.85rem;
    font-weight: 950;
    color: var(--accent-color);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    text-transform: uppercase;
}

.hero-designation {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.designation-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: var(--transition-smooth);
}

.designation-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.d-icon {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.d-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: 50px;
    line-height: 1.7;
    text-align: left;
}

/* --- Buttons --- */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 80px;
    justify-content: flex-start;
}

/* --- Stats --- */
.hero-stats {
    display: flex;
    gap: 70px;
    justify-content: flex-start;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-num-wrapper {
    display: flex;
    align-items: flex-start;
}

.stat-num {
    font-size: 3.8rem;
    font-weight: 950;
    color: var(--text-primary);
    line-height: 0.9;
}

.stat-plus {
    font-size: 1.8rem;
    color: var(--accent-color);
    font-weight: 900;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 10px;
    letter-spacing: 1px;
}

/* --- Editorial Image Pod --- */
.hero-image-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 20px;
}

.image-wrapper-outer {
    position: relative;
    z-index: 2;
    transform: scale(1.1);
    transition: var(--transition-smooth);
}

.hero-image-pod {
    position: relative;
    width: 440px;
    height: 540px;
    background: linear-gradient(145deg, #ff5757 0%, #050505 100%);
    /* Premium dark gradient */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 180px 40px 180px 40px;
    /* Alternating organic corners */
    overflow: hidden;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.6),
        inset 0 0 60px rgba(255, 87, 87, 0.05);
    /* Subtle accent inner glow */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: brightness(1.1) contrast(1.05);
    /* Animation removed as requested */
    transition: var(--transition-smooth);
}

/* Big editorial letter in background */
.bg-text-element {
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    font-size: 25rem;
    font-weight: 950;
    color: rgba(255, 255, 255, 0.355);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
    font-family: 'serif';
    letter-spacing: -20px;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0) rotate(0) scale(1);
    }

    50% {
        transform: translateY(-30px) rotate(1.5deg) scale(1.02);
    }
}

.img-back-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    z-index: -1;
    filter: blur(80px);
    opacity: 0.6;
}

.floating-ui {
    position: absolute;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    z-index: 5;
    box-shadow:
        inset 0 0 20px rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.5);
    animation: floatUI 6s infinite ease-in-out;
    transition: var(--transition-smooth);
}

.floating-ui:hover {
    background: var(--accent-color);
    transform: scale(1.1) rotate(10deg);
    color: #000;
    box-shadow: 0 0 30px var(--accent-glow);
}

.floating-ui i {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.ui-1 {
    top: 15%;
    left: 0;
    animation-delay: 0s;
}

.ui-2 {
    top: 60%;
    right: 0;
    animation-delay: -1.5s;
}

.ui-3 {
    bottom: 5%;
    left: 25%;
    animation-delay: -3s;
}

@keyframes floatUI {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

/* --- Services --- */
.hero-services-right {
    display: flex;
    flex-direction: column;
    gap: 55px;
}

.service-item {
    padding-left: 25px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.service-item:hover {
    border-left: 4px solid var(--accent-color);
    padding-left: 35px;
    background: linear-gradient(90deg, var(--accent-glow), transparent);
}

.service-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-text h5 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-align: left;
}

.service-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* --- Responsive --- */
/* --- Responsive Optimizations --- */
@media (max-width: 1200px) {
    .container-hero {
        max-width: 95%;
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
}

@media (max-width: 992px) {
    .home-hero-redesign {
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-tagline,
    .hero-designation,
    .hero-actions,
    .hero-stats {
        justify-content: center;
    }

    .hero-title,
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-image-center {
        margin: 60px 0;
        order: -1;
    }

    /* Pop image to top on tablets */
    .hero-services-right {
        margin-top: 60px;
        gap: 30px;
    }

    .service-item {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding: 30px 15px;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 20px;
    }

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

    .service-text h5,
    .service-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .home-hero-redesign {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 3.2rem;
        letter-spacing: -2px;
    }

    .hero-stats {
        gap: 40px;
    }

    .stat-num {
        font-size: 3rem;
    }

    .floating-ui {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .ui-1 {
        left: 10%;
        top: 10%;
    }

    .ui-2 {
        right: 10%;
        bottom: 20%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.6rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .hero-desc {
        font-size: 1rem;
        padding: 0 10px;
        margin-bottom: 40px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        width: 100%;
        padding: 0 20px;
    }

    .stat-num {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .hero-designation {
        gap: 8px;
    }

    .designation-box {
        padding: 8px 14px;
    }

    .d-text {
        font-size: 0.7rem;
    }

    .image-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
}

/* Specific Fix for iPhone SE & Small Screens (320px - 375px) */
@media (max-width: 380px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-num {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 15px 20px !important;
    }

    .floating-ui {
        display: none;
    }

    /* Hide clutter on tiny screens */
}

/* =========================================
   HOME ABOUT SECTION - V2 (INSPIRED DESIGN)
   ========================================= */

.about-content-left {
    padding-right: 40px;
}

/* 1. Decorative Tags/Workplace */
.about-status-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.about-tags-wrapper {
    display: flex;
    gap: 12px;
}

.about-tag {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 28px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.workplace-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 87, 87, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 87, 87, 0.2);
    border-radius: 50px;
    position: relative;
    box-shadow:
        inset 0 0 15px rgba(255, 87, 87, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.2);
}

.work-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 15px var(--accent-glow);
}

.work-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    animation: workPulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes workPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}

.work-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.work-text strong {
    color: #fff;
    text-shadow: 0 0 10px var(--accent-glow);
}

/* 2. Giant Typography */
.about-title-giant {
    font-size: clamp(3.2rem, 8vw, 6.2rem);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 40px;
    color: #fff;
    text-align: left;
}

.about-title-giant .line {
    display: block;
    overflow: hidden;
}

.about-title-giant .word {
    display: inline-block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.visible .about-title-giant .word {
    transform: translateY(0);
}

.about-title-giant .line:nth-child(1) .word {
    transition-delay: 0.15s;
}

.about-title-giant .line:nth-child(2) .word {
    transition-delay: 0.35s;
}

.about-title-giant .line:nth-child(3) .word {
    transition-delay: 0.55s;
}


.text-accent-vivid {
    background: linear-gradient(to right, #fff, var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.about-narrative-box {
    max-width: 580px;
    margin-bottom: 50px;
}

.about-narrative-box p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: left;
}

/* 3. Action Buttons V2 */
.about-actions-v2 {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.btn-link-premium {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 8px;
    transition: var(--transition-smooth);
}

.btn-link-premium:hover {
    color: var(--accent-color);
    text-underline-offset: 12px;
}

/* 4. Trust Row & Performance Panel */
.about-trust-row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-top: 50px;
}

.trust-pod {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.trust-pod:hover {
    background: rgba(25, 25, 25, 0.6);
    border-color: rgba(255, 87, 87, 0.3);
    transform: translateY(-5px);
}

.stat-main {
    flex: 1;
    min-width: 160px;
}

.trust-val {
    font-size: 3.5rem;
    font-weight: 950;
    color: #fff;
    line-height: 0.9;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.trust-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    font-weight: 800;
}

.review-pod {
    flex: 1.5;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-val {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
}

.stars-row {
    color: #ffb800;
    font-size: 0.8rem;
    display: flex;
    gap: 4px;
}

.review-bottom {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-stack {
    display: flex;
    padding-left: 10px;
}

.stack-item {
    width: 32px;
    height: 32px;
    background: #111;
    border: 2px solid #000;
    border-radius: 50%;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.stack-plus {
    width: 32px;
    height: 32px;
    background: var(--accent-color);
    border: 2px solid #000;
    border-radius: 50%;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.8rem;
    font-weight: 900;
}

.review-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

/* 5. Organic Visual Pod V2 */
.about-visual-v2 {
    position: relative;
    padding-top: 40px;
}

.organic-shape-container {
    position: relative;
    width: 100%;
}

.shape-inner {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 120px 30px 180px 30px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 80px 120px rgba(0, 0, 0, 0.9);
    transition: var(--transition-smooth);
    isolation: isolate;
}

.shape-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(255, 87, 87, 0.1));
    z-index: 2;
    pointer-events: none;
}

.about-img-fluid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) grayscale(0.1) contrast(1.1);
    transition: var(--transition-slow);
}

.shape-inner:hover .about-img-fluid {
    transform: scale(1.08) rotate(2deg);
    filter: brightness(1.1) grayscale(0);
}

.shape-overlay-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 5;
    color: #fff;
}

.shape-overlay-text span {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.8;
}

.shape-overlay-text strong {
    display: block;
    font-size: 2.8rem;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
    color: #fff;
    margin-top: 5px;
}

/* Floating Question Marks */
.visual-decor-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.q-mark {
    position: absolute;
    font-size: 8.5rem;
    font-weight: 950;
    color: #8a2be2;
    font-family: 'serif';
    filter: drop-shadow(0 0 50px rgba(138, 43, 226, 0.4));
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    animation: floatQ 6s infinite alternate ease-in-out;
    opacity: 0.8;
}

.q-1 {
    top: 0%;
    left: 8%;
    transform: rotate(-20deg);
}

.q-2 {
    top: 15%;
    right: 12%;
    font-size: 4.5rem;
    animation-delay: -3s;
    transform: rotate(25deg);
    color: #9d50bb;
}

@keyframes floatQ {
    0% {
        transform: translateY(0) rotate(-15deg) scale(1);
    }

    100% {
        transform: translateY(-30px) rotate(-10deg) scale(1.05);
    }
}

/* Floating Medal */
.experience-medal {
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: floatMedal 4s infinite ease-in-out;
}

.medal-num {
    font-size: 1.5rem;
    font-weight: 950;
    color: var(--accent-color);
    line-height: 1;
}

.medal-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 5px;
}

@keyframes floatMedal {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.shape-floating-btn {
    position: absolute;
    bottom: -30px;
    right: 40px;
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #000;
    box-shadow: 0 10px 30px var(--accent-glow);
    z-index: 10;
    transition: all 0.4s ease;
}

.shape-floating-btn:hover {
    transform: scale(1.1) rotate(45deg);
    background: #fff;
}

.live-status-pill-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.pulse-ring-green {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.pulse-ring-green::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    animation: pulseG 2s infinite;
}

@keyframes pulseG {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.about-status-footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* HIGH-FIDELITY RESPONSIVE FOR V2 */
@media (max-width: 1200px) {
    .about-content-left {
        padding-right: 0;
    }

    .about-title-giant {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }

    .about-trust-row {
        gap: 20px;
    }

    .trust-pod {
        padding: 25px;
    }
}

@media (max-width: 991px) {
    .about-title-giant {
        text-align: center;
        margin-bottom: 30px;
    }

    .about-status-row {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-bottom: 25px;
    }

    .about-tags-wrapper,
    .about-actions-v2,
    .about-trust-row {
        justify-content: center;
    }

    .about-narrative-box {
        margin: 0 auto 40px;
        text-align: center;
    }

    .about-narrative-box p {
        text-align: center;
        font-size: 1.1rem;
    }

    .about-visual-v2 {
        margin-top: 60px;
    }

    .shape-inner {
        max-width: 550px;
        margin: 0 auto;
    }

    .about-status-footer {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .about-trust-row {
        flex-direction: column;
        align-items: center;
    }

    .trust-pod {
        width: 100%;
        max-width: 450px;
        text-align: center;
    }

    .review-top {
        justify-content: center;
    }

    .review-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .avatar-stack {
        justify-content: center;
    }

    .about-title-giant {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
}

@media (max-width: 576px) {
    .home-about-section {
        padding: 100px 0;
    }

    .about-title-giant {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 25px;
    }

    .about-actions-v2 {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .about-actions-v2 .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .btn-link-premium {
        justify-content: center;
        width: 100%;
    }

    .shape-overlay-text {
        bottom: 25px;
        left: 25px;
    }

    .shape-overlay-text strong {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .shape-floating-btn {
        width: 65px;
        height: 65px;
        font-size: 1.4rem;
        bottom: 10px;
        right: -10px;
    }

    .q-mark {
        font-size: 5rem;
    }

    .live-status-pill-v2 {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/*
 * HOME ABOUT SECTION STYLES - GLASS & NEON AESTHETICS
 * Contains: Layout, Background Decorations, Typography, Stats Grid, and Action Boxes
 */

/* =========================================
   HOME ABOUT SECTION - EDITORIAL CYBERDECK
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

.home-about-section {
    position: relative;
    padding: 180px 0;
    background-color: var(--primary-bg);
    overflow: hidden;
    isolation: isolate;
}

/* --- Atmospheric Layer Enrichment --- */
.about-bg-elements {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
}

.about-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at 80% 40%, black, transparent 85%);
    opacity: 0.4;
}

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    opacity: 0.18;
    mix-blend-mode: screen;
    animation: aboutGlowMove 25s infinite alternate ease-in-out;
}

.about-glow-1 {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    top: -300px;
    left: -200px;
}

.about-glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #7000ff 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -8s;
}

@keyframes aboutGlowMove {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 30px) scale(1.1);
    }
}

.topographic-overlay {
    position: absolute;
    inset: 0;
    background-image: url("https://www.transparenttextures.com/patterns/topography.png");
    opacity: 0.04;
    mix-blend-mode: overlay;
    animation: topoDrift 60s linear infinite;
}

@keyframes topoDrift {
    from {}

    to {
        background-position: 200px 200px;
    }
}

/* --- Editorial Narrative Architecture --- */
.about-narrative-container {
    position: relative;
    padding-right: 50px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.eyebrow-line {
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

.eyebrow-text {
    font-size: 0.95rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-color);
    font-family: 'Outfit', sans-serif;
}

.section-title-premium {
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    font-weight: 200;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 40px;
    color: #fff;
    text-align: left;
}

.section-title-premium .highlight-underline,
.section-title-premium .text-gradient-fire {
    font-weight: 900;
    display: inline-block;
}

.highlight-underline {
    position: relative;
    padding-right: 10px;
    color: #fff;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.25;
    z-index: -1;
}

.text-gradient-fire {
    background: linear-gradient(135deg, #fff 0%, var(--accent-color) 50%, #7000ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(255, 87, 87, 0.4));
}

.about-narrative-lead p {
    font-size: 1.45rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 55px;
    max-width: 620px;
    font-weight: 300;
    text-align: left;
}

/* --- Grid-Core Pillars (Kinetic) --- */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 25px;
    margin-bottom: 65px;
}

.pillar-card {
    position: relative;
    padding: 35px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: var(--liquid-glass);
    -webkit-backdrop-filter: var(--liquid-glass);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 87, 87, 0.1);
}

.pillar-card:hover::before {
    left: 100%;
}

.pillar-icon {
    font-size: 2rem;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 87, 87, 0.08);
    border: 1px solid rgba(255, 87, 87, 0.2);
    border-radius: 18px;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-icon {
    transform: rotate(10deg);
    background: var(--accent-color);
    color: #000;
    box-shadow: 0 0 20px var(--accent-glow);
}

.pillar-info h5 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    text-align: left;
    letter-spacing: -0.5px;
}

.pillar-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* --- Identity Cyberdeck Module --- */
.about-identity-hub {
    position: relative;
    padding: 30px;
}

.identity-visual-pod {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
}

.pod-inner {
    position: relative;
    max-width: 480px;
    margin-left: 0;
    perspective: 2000px;
}

.pod-mask {
    border-radius: 50px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.08);
    aspect-ratio: 1 / 1.15;
    box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.9);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.pod-inner:hover .pod-mask {
    transform: scale(1.02) rotateX(2deg) rotateY(-2deg);
}

.pod-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) grayscale(0.1);
    transition: transform 10s linear;
}

.pod-inner:hover .pod-img {
    transform: scale(1.1);
}

/* Blueprint Overlay Visible on Hover */
.pod-mask::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(255, 87, 87, 0.1) 1px, transparent 0);
    background-size: 20px 20px;
    opacity: 0;
    transition: 0.5s ease;
}

.pod-inner:hover .pod-mask::after {
    opacity: 1;
}

.experience-counter {
    position: absolute;
    top: -40px;
    right: -40px;
    z-index: 10;
    background: #000;
    color: #fff;
    padding: 30px 35px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.05);
    text-align: center;
    animation: kyberFloat 10s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
    backdrop-filter: blur(10px);
}

.experience-counter::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent, var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

@keyframes kyberFloat {
    0% {
        transform: translateY(0) rotate(-3deg);
    }

    100% {
        transform: translateY(-25px) rotate(3deg);
    }
}

.counter-num {
    display: block;
    font-size: 4rem;
    font-weight: 950;
    line-height: 0.7;
    font-family: 'Outfit', sans-serif;
}

.counter-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
}

.achievement-tag {
    position: absolute;
    padding: 12px 24px;
    background: rgba(15, 15, 15, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    z-index: 5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievement-tag i {
    color: var(--accent-color);
}

.tag-top {
    top: 20%;
    left: -60px;
    animation: tagPulse 8s infinite alternate;
}

.tag-bottom {
    bottom: 15%;
    right: -50px;
    animation: tagPulse 8s infinite alternate-reverse;
}

@keyframes tagPulse {
    from {
        transform: translateX(0);
        opacity: 0.8;
    }

    to {
        transform: translateX(-15px);
        opacity: 1;
    }
}

/* --- Stats Dashboard Hub --- */
.identity-stats-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 45px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.id-stat {
    flex: 1;
    text-align: center;
    position: relative;
}

.id-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
}

.id-stat-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 950;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 6px;
}

.id-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 800;
}

/* --- High-Value Action Card --- */
.cv-premium-card {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 30px;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: var(--liquid-glass);
    -webkit-backdrop-filter: var(--liquid-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transition: var(--transition-smooth);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.cv-premium-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-color);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 87, 87, 0.1);
}

.cv-card-icon {
    font-size: 2.8rem;
    color: var(--accent-color);
    background: rgba(255, 87, 87, 0.1);
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.cv-card-text h6 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    text-align: left;
}

.cv-card-text p {
    margin: 4px 0 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: left;
}

.cv-card-btn {
    margin-left: auto;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.cv-premium-card:hover .cv-card-btn {
    background: var(--accent-color);
    color: #000;
    transform: rotate(360deg);
    border-color: var(--accent-color);
}

/* --- Cyberdeck Narrative Details --- */
/* --- Active Status & Footer Actions --- */
.about-actions-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.live-status-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
}

.pulse-ring {
    width: 10px;
    height: 10px;
    background: #00ff88;
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px #00ff88;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid #00ff88;
    border-radius: 50%;
    animation: pulseInner 2s infinite;
}

@keyframes pulseInner {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.pillar-id {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-color);
    background: rgba(255, 87, 87, 0.1);
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pod Decorative Blueprint Corners */
.pod-decor {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color);
    z-index: 10;
    opacity: 0.4;
    transition: 0.5s ease;
}

.pod-decor-tl {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
}

.pod-decor-br {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
}

.identity-visual-pod:hover .pod-decor {
    width: 50px;
    height: 50px;
    opacity: 1;
}

/* Variable Font Weight Contrast for Titles */
.section-title-premium span {
    font-weight: 300;
}

.section-title-premium .highlight-underline,
.section-title-premium .text-gradient-fire {
    font-weight: 950;
}

/* --- High-Fidelity Responsive --- */
@media (max-width: 1400px) {
    .identity-visual-pod {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .section-title-premium {
        font-size: 4.5rem;
    }
}

@media (max-width: 991px) {
    .home-about-section {
        padding: 120px 0;
        text-align: center;
    }

    .about-narrative-container {
        padding-right: 0;
        margin-bottom: 100px;
    }

    .section-eyebrow {
        justify-content: center;
    }

    .section-title-premium {
        text-align: center;
    }

    .about-narrative-lead p {
        margin: 0 auto 60px;
        text-align: center;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 80px;
    }

    .pillar-card {
        text-align: left;
    }

    .identity-stats-bar {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

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

@media (max-width: 576px) {
    .section-title-premium {
        font-size: 3.2rem;
        letter-spacing: -3px;
    }

    .experience-counter {
        padding: 25px;
        top: -30px;
        right: -20px;
    }

    .counter-num {
        font-size: 3rem;
    }

    .tag-top {
        left: -10px;
    }

    .tag-bottom {
        right: -10px;
    }

    .cv-premium-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 25px;
    }

    .cv-card-text h6,
    .cv-card-text p {
        text-align: center;
    }

    .cv-card-btn {
        margin: 25px 0 0;
        width: 100%;
        border-radius: 20px;
    }
}