/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #0a0a0a;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header/Navbar Styles - Premium Black/White */
.main-header {
    background: #ffffff;
    position: fixed;
    width: 100%;
    max-width: 100vw;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #000000;
    overflow-x: hidden;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 0 #000000, 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header-top-line {
    height: 2px;
    background: #000000;
    width: 100%;
}

.header-bottom-line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #000000 10%, #000000 90%, transparent 100%);
    opacity: 0.3;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-icon-wrapper {
    position: relative;
    width: 240px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid #000000;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-link:hover .logo-icon-wrapper::before {
    opacity: 1;
    inset: -8px;
}

.logo-img {
    height: 180px;
    width: auto;
    filter: brightness(0) saturate(100%);
    transition: all 0.4s ease;
}

.brand-text {
    display: flex;
    flex-direction: column;
    border-left: 3px solid #000000;
    padding-left: 20px;
    gap: 4px;
}

.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #000000;
    line-height: 1;
}

.brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    color: #000000;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.6;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 24px;
    color: #000000;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-line {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: #000000;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover .nav-link-line {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover .nav-link-text {
    transform: translateY(-2px);
}

.nav-link-contact {
    background: #000000;
    color: #ffffff;
    margin-left: 20px;
    padding: 12px 32px;
    position: relative;
    overflow: hidden;
}

.nav-link-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link-contact:hover::before {
    opacity: 1;
}

.nav-link-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.nav-link-contact:hover .nav-link-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.nav-link-contact:hover .nav-link-text {
    transform: translateX(-8px) translateY(-2px);
}

.nav-link:hover {
    color: #0066cc;
}

.nav-link:hover::before {
    width: 70%;
    background: #0066cc;
}

.contact-btn {
    border: 2px solid #1a1a1a;
    margin-left: 15px;
    background: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    transition: left 0.3s ease;
    z-index: -1;
}

.contact-btn:hover {
    color: #fff !important;
}

.contact-btn:hover::after {
    left: 0;
}

/* Main Content */
main {
    padding-top: 86px;
}

/* Header Section with Video - Premium Black/White */
.header-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
}

.header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.08) 0px,
            transparent 1px,
            transparent 50px,
            rgba(0, 0, 0, 0.08) 51px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.08) 0px,
            transparent 1px,
            transparent 50px,
            rgba(0, 0, 0, 0.08) 51px
        );
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

.header-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background-image: url('/egl logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
    filter: grayscale(100%);
}

.header-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 5;
    filter: grayscale(70%) contrast(6.2);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    z-index: 2;
}

.header-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, #000000 1px, transparent 1px),
        linear-gradient(to bottom, #000000 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.03;
    z-index: 2;
}

.header-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,249,250,0.9) 100%);
    z-index: 2;
}

.header-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 3;
}

.header-content-wrapper {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1200px;
}

.header-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 30px;
    line-height: 1;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.header-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #000000;
    transform: scaleX(0);
    transform-origin: left;
    animation: lineGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

@keyframes lineGrow {
    to {
        transform: scaleX(1);
    }
}

.header-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: #1a1a1a;
    max-width: 900px;
    margin: 40px auto 30px;
    line-height: 1.6;
    font-weight: 400;
}

.typewriter-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    padding: 20px 0;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
    letter-spacing: -0.01em;
}

/* Section Base Styles */
section {
    padding: 120px 0;
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 204, 0.2) 50%, transparent 100%);
}

section:nth-child(even) {
    background: #f8f9fa;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    color: #000000;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.section-title::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    border: 3px solid #000000;
    border-radius: 0;
    opacity: 0.1;
    animation: pulseSquare 4s ease-in-out infinite;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: #000000;
    animation: titleUnderline 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes pulseSquare {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1) rotate(45deg);
        opacity: 0.2;
    }
}

@keyframes titleUnderline {
    to {
        width: 100%;
    }
}

.title-underline {
    width: 120px;
    height: 4px;
    background: #000000;
    margin-bottom: 60px;
    position: relative;
    animation: lineExpand 1s ease-out;
}

.title-underline::before {
    content: '';
    position: absolute;
    left: -8px;
    top: -2px;
    width: 8px;
    height: 8px;
    background: #000000;
    transform: rotate(45deg);
}

.title-underline::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -2px;
    width: 8px;
    height: 8px;
    background: #000000;
    transform: rotate(45deg);
}

@keyframes lineExpand {
    from {
        width: 0;
    }
    to {
        width: 120px;
    }
}

/* Our Products Section */
.products-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 170, 255, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 0;
    padding: 50px 45px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 12px 12px 0 0 #000000;
    animation: cardFloat 6s ease-in-out infinite;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover::before {
    opacity: 1;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.product-card:hover {
    transform: translate(-6px, -6px);
    box-shadow: 18px 18px 0 0 #000000;
}

.product-icon img {
    width: 127px;
    height: auto;
    margin-bottom: -76px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transition: all 0.5s ease;
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

.product-card:hover .product-icon img {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 102, 204, 0.3));
}

.product-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: #000000;
    font-weight: 800;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.product-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.product-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #000000;
    color: #ffffff;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    border: 2px solid #000000;
}

.feature-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transition: left 0.5s ease;
}

.feature-badge:hover::before {
    left: 100%;
}

.feature-badge:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.3);
}

.feature-badge svg {
    width: 20px;
    height: 20px;
}

.product-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.detail-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 0;
    border: 2px solid #000000;
    border-left: 6px solid #000000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 4px 4px 0 0 rgba(0, 0, 0, 0.1);
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: #000000;
    transition: height 0.4s ease;
}

.detail-item:hover::before {
    height: 100%;
}

.detail-item:hover {
    background: #fafafa;
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.15);
    border-left-width: 8px;
}

.detail-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: #000000;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.detail-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Phone Mockup */
.phone-mockup {
    max-width: 300px;
    margin: 0 auto;
}

.phone-screen {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 10px solid #e5e5e5;
    border-radius: 30px;
    padding: 30px 20px;
    position: relative;
    min-height: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.chart-animation {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 200px;
    margin-bottom: 40px;
}

.bar {
    width: 40px;
    background: linear-gradient(180deg, #0066cc 0%, #00aaff 100%);
    height: var(--height);
    animation: barGrow 1.5s ease-out infinite alternate;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.bar:nth-child(1) { animation-delay: 0s; }
.bar:nth-child(2) { animation-delay: 0.2s; }
.bar:nth-child(3) { animation-delay: 0.4s; }
.bar:nth-child(4) { animation-delay: 0.6s; }
.bar:nth-child(5) { animation-delay: 0.8s; }

@keyframes barGrow {
    from {
        transform: scaleY(0.5);
        opacity: 0.6;
    }
    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

.report-lines {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.line {
    height: 8px;
    background: linear-gradient(90deg, #e5e5e5 0%, transparent 100%);
    border-radius: 4px;
    animation: linePulse 2s ease-in-out infinite;
}

.line:nth-child(1) { width: 80%; animation-delay: 0s; }
.line:nth-child(2) { width: 60%; animation-delay: 0.3s; }
.line:nth-child(3) { width: 70%; animation-delay: 0.6s; }

@keyframes linePulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* About Us Section */
.about-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066cc' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.info-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 0;
    border: 2px solid #000000;
    box-shadow: 8px 8px 0 0 #000000;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #000000 transparent transparent;
    opacity: 0.05;
    transition: all 0.6s ease;
}

.info-card:hover::after {
    border-width: 0 100px 100px 0;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: #000000;
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card.card-visible::before {
    height: 100%;
}

.slide-from-left {
    transform: translateX(-100px);
}

.slide-from-right {
    transform: translateX(100px);
}

.info-card.card-visible {
    opacity: 1;
    transform: translateX(0);
}

.info-card:hover {
    transform: translate(-4px, -4px) !important;
    box-shadow: 12px 12px 0 0 #000000;
}

.card-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #000000;
    opacity: 0.08;
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
}

.card-number::after {
    content: attr(data-number);
    position: absolute;
    top: 2px;
    left: 2px;
    opacity: 0.03;
    z-index: -1;
}

.info-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 8px;
}

.info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #000000;
}

.info-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.subsection-title-main {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 80px 0 40px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subsection-title-main .title-icon {
    color: #0066cc;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-feature {
    background: #ffffff;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #0066cc;
}

.feature-svg {
    color: #0066cc;
    margin-bottom: 20px;
}

.about-feature h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-feature p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* In Action Section */
.in-action-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.in-action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230066cc' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.dots-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.in-action-section .container {
    position: relative;
    z-index: 1;
}

.section-description {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: galleryFloat 8s ease-in-out infinite;
}

.gallery-item:nth-child(1) {
    animation-delay: 0s;
}

.gallery-item:nth-child(2) {
    animation-delay: 2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 4s;
}

@keyframes galleryFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.gallery-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.4s ease;
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover .gallery-border {
    border-color: #0066cc;
    border-width: 3px;
}

.gallery-content {
    position: relative;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
}

.gallery-content img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-content img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid #0066cc;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.gallery-overlay p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Our Goals Section */
.goals-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.goals-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, transparent 100%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.goals-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.04) 0%, transparent 100%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite reverse;
}

.goals-section .container {
    position: relative;
    z-index: 1;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.goals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.goals-left {
    text-align: center;
    background: transparent;
}

.world-gif {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
}

.goals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.goals-left {
    text-align: center;
}

.world-gif {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.goals-timeline {
    position: relative;
    padding-left: 50px;
}

.goals-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0066cc 0%, #00aaff 100%);
}

.goal-item {
    display: flex;
    gap: 25px;
    margin-bottom: 50px;
    position: relative;
}

.goal-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 10px;
    width: 15px;
    height: 15px;
    background: #ffffff;
    border: 3px solid #0066cc;
    border-radius: 50%;
}

.goal-icon {
    flex-shrink: 0;
}

.goal-icon svg {
    color: #0066cc;
}

.goal-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.goal-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230066cc' fill-opacity='0.02'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #ffffff;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    border: 2px solid #000000;
    position: relative;
    overflow: hidden;
    box-shadow: 6px 6px 0 0 #000000;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #000000;
    opacity: 0.03;
    transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    background: #ffffff;
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 0 #000000;
}

.feature-icon-large svg {
    color: #0066cc;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-large svg {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
    color: #ffffff;
}

.contact-section .section-title {
    color: #ffffff;
}

.contact-section .title-underline {
    background: linear-gradient(90deg, #ffffff 0%, transparent 100%);
}

.contact-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content p {
    font-size: 24px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-button {
    display: inline-block;
    padding: 20px 50px;
    background: #ffffff;
    color: #0066cc;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-button::after {
    content: '→';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 24px;
}

.contact-button:hover::after {
    right: 30px;
    opacity: 1;
}

.contact-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 30px rgba(255, 255, 255, 0.3);
    padding-right: 70px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .header-title {
        font-size: 90px;
        letter-spacing: 10px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .goals-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .brand-text {
        border-left: none;
        border-top: 2px solid #1a1a1a;
        padding-left: 0;
        padding-top: 10px;
        text-align: center;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-title {
        font-size: 48px;
        letter-spacing: 5px;
    }
    
    .header-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 36px;
        margin-top: 20px;
    }
    
    .product-card {
        padding: 40px 25px;
    }
    
    .product-icon img {
        width: 100px;
        margin-bottom: 20px;
    }
    
    .product-card h3 {
        font-size: 24px;
        margin-top: 10px;
    }
    
    .product-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .feature-badge {
        font-size: 10px;
        padding: 10px 16px;
        gap: 6px;
    }
    
    .feature-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .goals-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .goals-timeline {
        padding-left: 40px;
    }
    
    section {
        padding: 80px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.5);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }
    to {
        width: 100px;
        height: 100px;
        opacity: 0;
    }
}

/* Decorative Shapes */
.decorative-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Products Section Shapes */
.shape-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(0, 102, 204, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s ease-in-out infinite, float 10s ease-in-out infinite;
}

.shape-2 {
    top: 60%;
    right: 8%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.08) 0%, rgba(0, 170, 255, 0.05) 100%);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

.shape-3 {
    bottom: 15%;
    left: 10%;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(0, 170, 255, 0.2);
    transform: rotate(45deg);
    animation: rotate360 20s linear infinite;
}

/* About Section Shapes */
.shape-4 {
    top: 20%;
    right: 5%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.06) 0%, transparent 100%);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    animation: morph 18s ease-in-out infinite reverse;
}

.shape-5 {
    bottom: 25%;
    left: 3%;
    width: 90px;
    height: 90px;
    border: 3px solid rgba(0, 170, 255, 0.12);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* Goals Section Shapes */
.shape-6 {
    top: 15%;
    right: 10%;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, rgba(0, 170, 255, 0.07) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: float 14s ease-in-out infinite;
}

.shape-7 {
    bottom: 20%;
    left: 8%;
    width: 110px;
    height: 110px;
    border: 3px solid rgba(0, 102, 204, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 16s ease-in-out infinite, rotate360 25s linear infinite;
}

/* Features Section Shapes */
.shape-8 {
    top: 25%;
    left: 7%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05) 0%, rgba(0, 170, 255, 0.08) 100%);
    border-radius: 50%;
    animation: float 11s ease-in-out infinite reverse;
}

.shape-9 {
    bottom: 30%;
    right: 6%;
    width: 130px;
    height: 130px;
    border: 2px solid rgba(0, 170, 255, 0.15);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    animation: rotate360 30s linear infinite reverse;
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Footer - Corporate Professional Design */
.footer-corporate {
    background: #000000;
    color: #ffffff;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #ffffff 20%,
        #ffffff 80%,
        transparent 100%
    );
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.02) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.02) 41px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0px,
            transparent 1px,
            transparent 40px,
            rgba(255, 255, 255, 0.02) 41px
        );
    background-size: 40px 40px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

/* Footer Brand Column */
.footer-brand-column {
    padding-right: 40px;
}

.footer-brand-wrapper {
    margin-bottom: 30px;
}

.brand-logo-footer {
    width: 343px;
    height:140px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 4px 4px 0 0 rgba(255, 255, 255, 0.1);
}

.footer-logo-img {
    width: 349px;
    height: auto;
}

.brand-title-footer {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: #ffffff;
}

.brand-subtitle-footer {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #666666;
    margin-bottom: 25px;
}

.footer-mission {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #999999;
    margin-bottom: 30px;
}

.footer-year {
    display: flex;
    align-items: center;
    gap: 15px;
}

.year-box {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #000000;
    background: #ffffff;
    padding: 6px 12px;
}

.year-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #ffffff;
}

/* Footer Columns */
.footer-column-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.title-line {
    width: 30px;
    height: 2px;
    background: #ffffff;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 16px;
}

.footer-nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #999999;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-nav-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-nav-link:hover::before {
    width: 100%;
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    background: #ffffff;
    border-color: #ffffff;
}

.contact-info-item:hover .contact-icon svg {
    stroke: #000000;
}

.contact-icon svg {
    stroke: #ffffff;
    transition: stroke 0.3s ease;
}

.contact-link {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #999999;
    text-decoration: none;
    padding-top: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ffffff;
}

.contact-address {
    padding-top: 8px;
}

.address-line {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #999999;
    line-height: 1.8;
}

.address-line strong {
    color: #ffffff;
    font-weight: 600;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 2px solid #1a1a1a;
    position: relative;
    z-index: 1;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-text,
.rights-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    letter-spacing: 0.5px;
}

.separator-dot {
    color: #333333;
    font-size: 16px;
}

.tagline-footer {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    letter-spacing: 0.5px;
}

/* Footer Responsive */
@media (max-width: 1200px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .footer-brand-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-corporate {
        padding: 60px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .footer-brand-column {
        grid-column: span 1;
        padding-right: 0;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* Reveal on scroll animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Text split animation */
.char-anim {
    display: inline-block;
    opacity: 0;
    animation: charFadeIn 0.5s forwards;
}

@keyframes charFadeIn {
    to {
        opacity: 1;
    }
}

/* Premium card styles with Tailwind-inspired effects */
.card-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.card-shadow-brutal {
    box-shadow: 8px 8px 0 0 #000000;
    border: 2px solid #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-shadow-brutal:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 0 #000000;
}

/* Modern gradient text */
.gradient-text {
    background: linear-gradient(135deg, #000000 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility classes for spacing */
.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

/* Grid layouts */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* In Action - Modern Grid Layout */
.in-action-modern {
    background: #fafafa;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.in-action-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 1px,
            transparent 30px,
            rgba(0, 0, 0, 0.02) 31px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.02) 0px,
            transparent 1px,
            transparent 30px,
            rgba(0, 0, 0, 0.02) 31px
        );
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

/* Section Header */
.section-header-modern {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.header-decorator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.decorator-line {
    width: 60px;
    height: 2px;
    background: #000000;
}

.decorator-square {
    width: 8px;
    height: 8px;
    background: #000000;
    transform: rotate(45deg);
}

.section-title-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -3px;
    margin-bottom: 20px;
}

.section-subtitle-modern {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    max-width: 650px;
    margin: 0 auto;
}

.section-subtitle-modern strong {
    color: #000000;
    font-weight: 700;
}

/* Action Grid Layout */
.action-grid-layout {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 24px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Action Cards */
.action-card {
    position: relative;
    background: #ffffff;
    border: 3px solid #000000;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 12px 12px 0 0 #000000;
}

/* Border Frame */
.card-border-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

/* Corner Accents */
.corner-accent {
    position: absolute;
    width: 25px;
    height: 25px;
}

.corner-accent::before,
.corner-accent::after {
    content: '';
    position: absolute;
    background: #000000;
}

.corner-accent.top-left {
    top: -3px;
    left: -3px;
}

.corner-accent.top-left::before {
    width: 25px;
    height: 3px;
    top: 0;
    left: 0;
}

.corner-accent.top-left::after {
    width: 3px;
    height: 25px;
    top: 0;
    left: 0;
}

.corner-accent.top-right {
    top: -3px;
    right: -3px;
}

.corner-accent.top-right::before {
    width: 25px;
    height: 3px;
    top: 0;
    right: 0;
}

.corner-accent.top-right::after {
    width: 3px;
    height: 25px;
    top: 0;
    right: 0;
}

.corner-accent.bottom-left {
    bottom: -3px;
    left: -3px;
}

.corner-accent.bottom-left::before {
    width: 25px;
    height: 3px;
    bottom: 0;
    left: 0;
}

.corner-accent.bottom-left::after {
    width: 3px;
    height: 25px;
    bottom: 0;
    left: 0;
}

.corner-accent.bottom-right {
    bottom: -3px;
    right: -3px;
}

.corner-accent.bottom-right::before {
    width: 25px;
    height: 3px;
    bottom: 0;
    right: 0;
}

.corner-accent.bottom-right::after {
    width: 3px;
    height: 25px;
    bottom: 0;
    right: 0;
}

/* Hero Card */
.action-hero {
    grid-column: span 2;
    grid-row: span 2;
}

.card-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.action-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.action-card:hover .action-image {
    transform: scale(1.1);
}

.card-label-tag {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #000000;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1;
}

.tag-icon {
    font-size: 8px;
}

/* Stats Card */
.action-stats {
    grid-column: span 2;
    grid-row: span 1;
}

.stats-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.stat-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    margin-bottom: 35px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stat-item-modern {
    position: relative;
}

.stat-number-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -3px;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-plus {
    font-size: 48px;
    opacity: 0.6;
}

.stat-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.stat-bar {
    width: 100%;
    height: 3px;
    background: #000000;
}

/* Secondary Cards */
.action-secondary {
    grid-column: span 2;
    grid-row: span 1;
}

.action-logo {
    grid-column: span 2;
    grid-row: span 1;
}

.logo-showcase-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 60px;
}

.showcase-logo {
    max-width: 70%;
    height: auto;
    transition: transform 0.4s ease;
}

.action-card:hover .showcase-logo {
    transform: scale(1.1);
}

.card-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #ffffff 0%, rgba(255, 255, 255, 0.98) 13%, transparent 100%);
    padding: 30px;
    z-index: 1;
}

.overlay-icon-box {
    width: 56px;
    height: 56px;
    background: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.15);
}

.overlay-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
}

.overlay-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Testimonial Modern */
.testimonial-modern {
    position: relative;
    background: #ffffff;
    border: 3px solid #000000;
    padding: 60px 80px;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 1;
}

.testimonial-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.border-corner {
    position: absolute;
    width: 30px;
    height: 30px;
}

.border-corner::before,
.border-corner::after {
    content: '';
    position: absolute;
    background: #000000;
}

.border-corner.tl {
    top: -3px;
    left: -3px;
}

.border-corner.tl::before {
    width: 30px;
    height: 3px;
    top: 0;
    left: 0;
}

.border-corner.tl::after {
    width: 3px;
    height: 30px;
    top: 0;
    left: 0;
}

.border-corner.tr {
    top: -3px;
    right: -3px;
}

.border-corner.tr::before {
    width: 30px;
    height: 3px;
    top: 0;
    right: 0;
}

.border-corner.tr::after {
    width: 3px;
    height: 30px;
    top: 0;
    right: 0;
}

.border-corner.bl {
    bottom: -3px;
    left: -3px;
}

.border-corner.bl::before {
    width: 30px;
    height: 3px;
    bottom: 0;
    left: 0;
}

.border-corner.bl::after {
    width: 3px;
    height: 30px;
    bottom: 0;
    left: 0;
}

.border-corner.br {
    bottom: -3px;
    right: -3px;
}

.border-corner.br::before {
    width: 30px;
    height: 3px;
    bottom: 0;
    right: 0;
}

.border-corner.br::after {
    width: 3px;
    height: 30px;
    bottom: 0;
    right: 0;
}

.testimonial-inner {
    position: relative;
}

.quote-icon-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 140px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    position: absolute;
    top: -50px;
    left: -30px;
    line-height: 1;
    pointer-events: none;
}

.quote-text-modern {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    display: flex;
    align-items: center;
    gap: 25px;
}

.attribution-line {
    width: 50px;
    height: 3px;
    background: #000000;
}

.author-name-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.3px;
    margin-bottom: 5px;
}

.author-title-modern {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #666666;
}

/* Responsive */
@media (max-width: 1200px) {
    .action-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .action-hero {
        grid-column: span 2;
        grid-row: auto;
        min-height: 500px;
    }
    
    .action-stats {
        grid-column: span 2;
    }
    
    .action-secondary,
    .action-logo {
        grid-column: span 1;
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .in-action-modern {
        padding: 80px 0;
    }
    
    .section-title-modern {
        font-size: 42px;
    }
    
    .action-grid-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-hero,
    .action-stats,
    .action-secondary,
    .action-logo {
        grid-column: span 1;
        min-height: 350px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-modern {
        padding: 40px 30px;
    }
    
    .quote-text-modern {
        font-size: 18px;
    }
    
    .quote-attribution {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #000000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Header & Navigation */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .nav-link-contact {
        padding: 12px 24px;
        margin-left: 10px;
    }
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    .logo-icon-wrapper {
        width: 160px;
        height: 90px;
    }
    
    .logo-img {
        height: 140px;
    }
    
    .brand-text {
        padding-left: 12px;
        gap: 2px;
    }
    
    .brand-name {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .brand-tagline {
        font-size: 6px;
        letter-spacing: 2px;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 2px solid #000000;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 9999;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 40px 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        width: 100%;
        padding: 20px 30px;
        font-size: 16px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    
    .nav-link-line {
        left: 30px;
        transform: translateX(0) scaleX(0);
        transform-origin: left;
    }
    
    .nav-link:hover .nav-link-line {
        transform: translateX(0) scaleX(1);
    }
    
    .nav-link-contact {
        margin-left: 0;
        margin: 10px 30px;
        width: calc(100% - 60px);
        justify-content: center;
        align-items: center;
        border-radius: 0;
    }
    
    .nav-link-contact .nav-link-text {
        transform: none !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .main-header {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo-icon-wrapper {
        width: 140px;
        height: 80px;
    }
    
    .logo-img {
        height: 105px;
    }
    
    .brand-name {
        font-size: 16px;
    }
    
    .brand-tagline {
        font-size: 5px;
        letter-spacing: 1.5px;
    }
    
    .main-nav {
        width: 280px;
    }
    
    .nav-link {
        padding: 18px 25px;
        font-size: 15px;
    }
    
    .nav-link-contact {
        margin: 10px 25px;
        width: calc(100% - 50px);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .logo-icon-wrapper {
        width: 250px;
        height: 150px;
    }
    
    .logo-img {
        height: 240px;
    }
    
    .brand-text {
        display: none;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .nav-link {
        padding: 16px 20px;
    }
    
    .nav-link-contact {
        margin: 10px 20px;
        width: calc(100% - 40px);
    }
    
    .header-title {
        font-size: 36px;
        letter-spacing: 2px;
    }
    
    .header-subtitle {
        font-size: 16px;
    }
    
    .typewriter-text {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 28px;
        margin-top: 15px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .product-icon img {
        width: 80px;
        margin-bottom: 15px;
    }
    
    .product-card h3 {
        font-size: 20px;
    }
    
    .product-subtitle {
        font-size: 12px;
    }
    
    .feature-badge {
        font-size: 9px;
        padding: 8px 12px;
        gap: 4px;
    }
    
    .feature-badge svg {
        width: 16px;
        height: 16px;
    }
    
    .detail-item h4 {
        font-size: 16px;
    }
    
    .detail-item p {
        font-size: 13px;
    }
}

/* Header Text Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-100px);
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInBottom 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


