/* Global Root & Fonts */
:root {
    --primary-color: #1a2a6c;
    --secondary-color: #d4af37;
    --accent-color: #f39c12;
    --text-color: #2c3e50;
    --text-muted: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --container-width: 1200px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Serif 4', serif;
    color: var(--primary-color);
    font-weight: 700;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    height: 90px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-login {
    background: var(--primary-color);
    color: #fff;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 42, 108, 0.2);
}

/* Hero Section Redesign */
.hero {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 120px 0 80px;
    z-index: 5;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.15;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 650px;
}

.subtitle-corporate {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 3px;
    margin-bottom: 25px;
    display: block;
}

.hero-title {
    font-family: 'Source Serif 4', serif;
    font-size: 4.2rem;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-title span {
    color: var(--secondary-color);
    font-style: italic;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 45px;
    max-width: 540px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
}

.glass-dashboard {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(26, 42, 108, 0.1);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 40px 100px rgba(26, 42, 108, 0.08);
    position: relative;
    z-index: 2;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

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

.dash-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.dash-lab {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.chart-visual {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 120px;
    margin-bottom: 25px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
    transition: height 1s ease;
}

.dashboard-footer {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.visual-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    z-index: 3;
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.accent-1 {
    top: -20px;
    right: 20px;
}

.accent-2 {
    bottom: -20px;
    left: -20px;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .hero {
        padding: 160px 0 100px;
    }

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

    .hero-text {
        text-align: center;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 60px;
        max-width: 500px;
        margin-inline: auto;
    }
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    animation: float 5s ease-in-out infinite;
    z-index: 3;
}

.icon-1 {
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20px;
    left: -40px;
    animation-delay: 1.5s;
}

.icon-3 {
    top: 30%;
    left: -60px;
    animation-delay: 3s;
}

@keyframes float {

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

    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--primary-color);
}

.hero-scroll span {
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 600;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 5px;
    height: 5px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-bg {
        width: 100%;
        clip-path: none;
        opacity: 0.2;
    }

    .overlay {
        background: radial-gradient(circle, rgba(248, 250, 255, 0.8) 0%, #f8faff 100%);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 100px;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .hero-text p {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
        transform: scale(0.9);
    }

    .nav-links {
        display: none;
    }
}

/* Services Section - Consolidated Bento Grid */
.services {
    padding: 140px 0;
    background-color: var(--bg-light);
    position: relative;
}

.services-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 100px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(220px, auto);
    /* Balanced height for better proportions */
    gap: 30px;
    perspective: 2000px;
}

.bento-item {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Space content and CTA */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    z-index: 1;
}

.bento-1x1 {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-2x1 {
    grid-column: span 2;
    grid-row: span 1;
}

.bento-1x2 {
    grid-column: span 1;
    grid-row: span 2;
}

.bento-2x2 {
    grid-column: span 2;
    grid-row: span 2;
    padding: 45px;
}

.bento-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bento-item .service-icon {
    font-size: 2.2rem;
    width: 65px;
    height: 65px;
    background: #f8faff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 25px;
    transition: all 0.6s ease;
    color: var(--primary-color);
    flex-shrink: 0;
}

.bento-2x1 .bento-content {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    justify-content: flex-start;
}

.bento-2x1 .service-icon {
    margin-bottom: 0;
}

.bento-2x2 .service-icon {
    width: 85px;
    height: 85px;
    font-size: 3rem;
}

.bento-text h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.bento-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-cta {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    margin-top: auto;
}

.service-cta:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

.bento-item:hover {
    transform: translateY(-8px) translateZ(30px) rotateX(2deg);
    box-shadow: 0 30px 70px rgba(26, 42, 108, 0.1);
    border-color: rgba(26, 42, 108, 0.1);
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: minmax(240px, auto);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-item,
    .bento-1x1,
    .bento-2x1,
    .bento-1x2,
    .bento-2x2 {
        grid-column: span 1;
        grid-row: span 1;
        padding: 30px;
    }

    .bento-2x1 .bento-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-2x1 .service-icon {
        margin-bottom: 25px;
    }
}

/* Interactive Design */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(26, 42, 108, 0.03),
            transparent);
    transition: 0.8s;
}

.bento-item:hover::before {
    left: 100%;
}

.service-cta::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
}

.service-cta:hover::after {
    width: 100%;
}

/* Depth Helper */
/* Special High-End Overlays */
.item-large::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 42, 108, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-1x1,
    .bento-2x1,
    .bento-1x2,
    .bento-2x2 {
        grid-column: span 1;
        grid-row: span 1;
        padding: 35px;
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-2x1 .service-icon {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

/* Enterprise Hero */
.hero {
    height: 90vh;
    padding-top: 90px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(26, 42, 108, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Professional Network Ribbon */
.network-ribbon {
    padding: 30px 0;
    background: #f1f3f5;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.network-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 25px;
}

.network-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.network-item {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
}

.network-item i {
    color: var(--secondary-color);
    font-size: 1.4rem;
}


/* Virtual Core Operations */
.virtual-accounting {
    padding: 140px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.virtual-grid-corporate {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.corporate-visual-frame {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.corporate-visual-frame img {
    width: 100%;
    display: block;
    transition: transform 1s ease;
}

.virtual-visual-corporate:hover img {
    transform: scale(1.05);
}

.corporate-feature-list {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.c-feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.c-feature-item i {
    width: 45px;
    height: 45px;
    background: #f1f3f9;
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.c-feature-item h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.c-feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 280px;
    }

    .virtual-grid-corporate {
        gap: 60px;
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .bento-2x2,
    .bento-1x2,
    .bento-2x1 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .virtual-grid-corporate {
        grid-template-columns: 1fr;
    }
}


/* Why Choose Us (Trust Pillars) */
.why-choose-us {
    padding: 140px 0;
    background: #fdfdfe;
    position: relative;
    overflow: hidden;
}

.wcu-header {
    margin-bottom: 80px;
    text-align: left;
}

.wcu-header .header-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 100px;
}

.section-intro {
    max-width: 500px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
}

.wcu-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    /* Flexible height to prevent overlap */
    gap: 30px;
}

.wcu-card {
    grid-column: span 3;
    background: #fff;
    border: 1px solid #f0f2f5;
    border-radius: 20px;
    padding: 35px;
    /* Reduced slightly for more content room */
    position: relative;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Changed from space-between to avoid stretching issues */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.wcu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(26, 42, 108, 0.08);
    border-color: rgba(26, 42, 108, 0.1);
}

.wcu-badge {
    width: 60px;
    height: 60px;
    background: #f8faff;
    color: var(--primary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    transition: 0.3s;
}

.wcu-card:hover .wcu-badge {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.wcu-content h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.wcu-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.wcu-number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 3rem;
    font-weight: 900;
    color: #f0f2f5;
    opacity: 0.5;
    line-height: 1;
    z-index: 0;
    transition: 0.3s;
}

.wcu-card:hover .wcu-number {
    color: var(--secondary-color);
    opacity: 0.1;
    transform: scale(1.2);
}

/* Specific Layout Adjustments for 7 cards */
.wcu-card:nth-child(1) {
    grid-column: span 3;
}

.wcu-card:nth-child(2) {
    grid-column: span 3;
}

.wcu-card:nth-child(3) {
    grid-column: span 3;
}

.wcu-card:nth-child(4) {
    grid-column: span 3;
}

.wcu-card:nth-child(5) {
    grid-column: span 4;
}

.wcu-card:nth-child(6) {
    grid-column: span 4;
}

.wcu-card:nth-child(7) {
    grid-column: span 4;
}

/* Special Variations */
.spotlight {
    border: 1px solid rgba(197, 168, 122, 0.2);
    background: linear-gradient(135deg, #fff 0%, #fffaf0 100%);
}

.highlight-card {
    background: var(--primary-color);
}

.highlight-card h3,
.highlight-card p {
    color: #fff;
}

.highlight-card .wcu-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.highlight-card .wcu-number {
    color: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1200px) {
    .wcu-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .wcu-card {
        grid-column: span 1 !important;
    }
}

@media (max-width: 768px) {
    .wcu-grid {
        grid-template-columns: 1fr;
    }

    .wcu-header .header-main {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Corporate Profile (Executive Summary) */
.about-us {
    padding: 140px 0;
    background: #fff;
}

.about-grid-corporate {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    align-items: center;
}

.subtitle-corporate {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    display: block;
}

.about-narrative-corporate {
    margin-top: 40px;
}

.about-narrative-corporate p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.value-item {
    display: flex;
    gap: 20px;
}

.value-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.value-item:hover .value-icon {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.value-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Corporate Visual */
.about-visual-corporate {
    position: relative;
}

.corporate-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.corporate-image-wrapper img {
    width: 100%;
    display: block;
}

.experience-badge-corporate {
    position: absolute;
    bottom: -40px;
    left: -40px;
    background: var(--primary-color);
    color: #fff;
    padding: 35px 45px;
    border-radius: 4px;
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.1);
}

.exp-years {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.exp-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .about-grid-corporate {
        gap: 60px;
    }
}

@media (max-width: 1024px) {
    .about-grid-corporate {
        grid-template-columns: 1fr;
    }

    .about-visual-corporate {
        order: -1;
        margin-bottom: 80px;
    }

    .experience-badge-corporate {
        left: 20px;
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-btns {
        flex-direction: column;
    }
}

/* Who We Are Section (Editorial Overhaul) */
.about-us {
    padding: 180px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Artistic Background Index */
.section-bg-index {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40vw;
    font-weight: 900;
    color: rgba(26, 42, 108, 0.02);
    z-index: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Decorative Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.1;
    pointer-events: none;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -100px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -100px;
    right: -100px;
}

.about-editorial-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Editorial Typography */
.subtitle-small {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    display: block;
}

.editorial-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.editorial-title span {
    color: var(--secondary-color);
    font-style: italic;
    font-family: serif;
}

/* Masonry Narrative */
.masonry-narrative {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.narrative-card {
    padding: 30px;
    border-radius: 25px;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-main {
    grid-column: span 2;
    background: #f8fbff;
    padding: 40px;
    border: 1px solid rgba(26, 42, 108, 0.05);
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.6;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    text-transform: uppercase;
}

.card-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.card-dark {
    background: var(--primary-color);
    color: #fff;
}

.card-dark p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.card-outline {
    border: 1px dashed rgba(26, 42, 108, 0.2);
    background: transparent;
}

.narrative-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.narrative-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(26, 42, 108, 0.1);
}

/* 3D Visual Scene */
.about-3d-visual {
    perspective: 2000px;
    height: 700px;
    display: flex;
    align-items: center;
}

.visual-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-base {
    width: 80%;
    height: 80%;
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
    border: 12px solid #fff;
}

.base-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(26, 42, 108, 0.3) 0%, transparent 100%);
}

/* Floating Glass Tiles */
.glass-tile {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 15px 25px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: translateZ(100px);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tile-1 {
    top: 5%;
    left: 0;
    transform: translateZ(80px);
}

.tile-2 {
    bottom: 10%;
    right: -5%;
    transform: translateZ(120px);
}

.tile-3 {
    top: 40%;
    right: -15%;
    transform: translateZ(150px);
}

.tile-icon {
    font-size: 1.8rem;
}

.tile-text {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.badge-accent {
    font-size: 0.7rem;
    font-weight: 900;
    background: var(--secondary-color);
    color: #fff;
    padding: 4px 10px;
    border-radius: 50px;
    margin-right: 5px;
}

.experience-card-new {
    position: absolute;
    bottom: -40px;
    left: 10%;
    background: #fff;
    padding: 25px 40px;
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    z-index: 20;
    transform: translateZ(50px);
}

.exp-val {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.exp-txt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Orb Elements in Visual */
.orb-element {
    position: absolute;
    border-radius: 50%;
    z-index: 5;
    filter: blur(40px);
}

.orb-float-1 {
    width: 100px;
    height: 100px;
    background: var(--secondary-color);
    top: 10%;
    right: 10%;
    opacity: 0.4;
}

.orb-float-2 {
    width: 150px;
    height: 150px;
    background: var(--primary-color);
    bottom: 10%;
    left: 0%;
    opacity: 0.2;
}

@media (max-width: 1300px) {
    .editorial-title {
        font-size: 3rem;
    }

    .about-editorial-grid {
        gap: 40px;
    }
}

@media (max-width: 1200px) {
    .about-editorial-grid {
        grid-template-columns: 1fr;
    }

    .about-3d-visual {
        order: -1;
        height: 500px;
        margin-bottom: 50px;
    }

    .floating-base {
        width: 100%;
        border-radius: 30px;
    }

    .tile-3 {
        right: 0;
    }
}

@media (max-width: 768px) {
    .editorial-title {
        font-size: 2.4rem;
    }

    .masonry-narrative {
        grid-template-columns: 1fr;
    }

    .card-main {
        grid-column: span 1;
    }

    .section-bg-index {
        font-size: 60vw;
    }
}

/* Virtual Accounting Section */
.virtual-accounting {
    padding: 160px 0;
    background: radial-gradient(circle at top right, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.bg-shape {
    position: absolute;
    filter: blur(120px);
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
}

.bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(26, 42, 108, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    pointer-events: none;
}

.virtual-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.virtual-info h2 {
    margin-bottom: 25px;
    font-size: 3.2rem;
}

.virtual-info .description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 95%;
}

.virtual-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-mini-card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.feature-mini-card:last-child {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.feature-mini-card:hover {
    transform: translateY(-5px);
    background: #fff;
    border-color: rgba(26, 42, 108, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.f-icon {
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(26, 42, 108, 0.15);
}

.feature-mini-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-mini-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.virtual-image {
    height: 100%;
    display: flex;
}

.virtual-image .image-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    border: 8px solid #fff;
    height: 100%;
    width: 100%;
}

.virtual-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.8s;
}

.virtual-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.badge-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

/* Stats Ribbon */
.stats-ribbon {
    margin-top: 100px;
    background: var(--primary-color);
    padding: 50px;
    border-radius: 36px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    color: #fff;
    text-align: center;
    box-shadow: 0 30px 60px rgba(26, 42, 108, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-number::after {
    content: '+';
    font-size: 1.8rem;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .virtual-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .virtual-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-ribbon {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}