@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Hind:wght@400;500;600;700&display=swap');

:root {
    /* Color Palette - Industrial Premium */
    --primary: #10B981; /* Emerald */
    --primary-dark: #059669;
    --primary-light: #34D399;
    --accent: #4F46E5; /* Indigo */
    --accent-dark: #4338CA;
    --surface: #F8FAFC; /* Slate 50 */
    --surface-white: #FFFFFF;
    --text-main: #0F172A; /* Slate 900 */
    --text-muted: #64748B; /* Slate 500 */
    --border: #E2E8F0;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Premium Palette */
    --fleet-bg: rgba(16, 185, 129, 0.03);
    --transporter-bg: rgba(79, 70, 229, 0.03);
    --glass-white: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(15, 23, 42, 0.6);
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--surface);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-outfit {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

[lang="hi"] {
    display: none;
}

body.lang-hindi [lang="en"] {
    display: none !important;
}

body.lang-hindi {
    font-family: 'Hind', sans-serif;
    line-height: 1.8;
}

body.lang-hindi [lang="hi"] {
    display: inline-block;
}

body.lang-hindi h1[lang="hi"], 
body.lang-hindi h2[lang="hi"], 
body.lang-hindi h3[lang="hi"], 
body.lang-hindi p[lang="hi"] {
    display: block;
}

body.lang-hindi h1, 
body.lang-hindi h2, 
body.lang-hindi h3 {
    line-height: 1.5;
    letter-spacing: 0 !important;
}

body.lang-hindi .text-gradient {
    padding-bottom: 8px; /* Extra space for Hindi descenders */
    line-height: 1.4;
}

/* Hindi UI/UX Optimization */
body.lang-hindi .nav-links a {
    font-size: 18px;
    font-weight: 600;
    word-spacing: 2px;
}

body.lang-hindi .nav-links {
    gap: 40px;
}

body.lang-hindi .nav-center {
    gap: 32px;
}

body.lang-hindi .btn {
    font-size: 16px;
    font-weight: 600;
    word-spacing: 2px;
}


/* Clients Marquee */
.clients-section {
    padding: 60px 0;
    background: var(--surface-white);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 60px;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee-scroll 40s linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.client-item {
    white-space: nowrap;
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.4s ease, opacity 0.4s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    will-change: transform, opacity;
}

.client-item.active-center {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.3);
}

.client-truck {
    width: 20px;
    height: 20px;
    color: var(--border);
    opacity: 0.5;
    transition: all 0.4s ease;
}

.client-item.active-center .client-truck {
    color: var(--primary);
    opacity: 1;
    transform: scale(1.2);
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    font-size: 16px;
    min-width: 150px;
}

.btn:active {
    transform: scale(0.95);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255,255,255,0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.6s;
}

.btn-primary:active::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.nav-center {
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--surface-white);
    padding: 6px 6px 6px 32px;
    border-radius: 100px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.nav-center:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-nav-btn {
    display: none;
}

.nav-links i,
.nav-links svg {
    display: none !important; /* Force hide chevrons on desktop */
}

.mobile-footer {
    display: none; /* Hide mobile footer on desktop */
}

.logo {
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 96px;
    width: auto;
    border-radius: 12px;
}

.nav-btns .btn {
    padding: 10px 24px;
    font-size: 14px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.lang-switch {
    display: flex;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 2px;
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.lang-option {
    padding: 6px 14px;
    border-radius: 50px;
    color: var(--text-muted);
}

.lang-option.active {
    background: var(--text-main);
    color: white;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-muted);
}

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

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 160px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 10% 80%, rgba(79, 70, 229, 0.08) 0%, transparent 40%);
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 10;
}

.glowing-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    animation: orbFloat 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

@keyframes orbFloat {
    from { transform: translate(-10%, -10%) scale(1); }
    to { transform: translate(10%, 10%) scale(1.2); }
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

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

/* Suites Layout */
.suites-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.suite-card {
    background: var(--surface-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    display: flex;
    align-items: stretch; /* Changed from center to stretch */
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: var(--shadow-lg);
}

/* Bento Grid System */
.bento-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 32px;
    margin-top: 60px;
}

.bento-item {
    background: var(--surface-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bento-item:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
}

.bento-item.wide { grid-column: span 2; }
.bento-item.tall { grid-row: span 2; }

.bento-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.bento-item p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
    transition: color 0.3s ease;
}

/* Premium Animations */
.bento-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0) 0%, rgba(79, 70, 229, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
    z-index: 0;
}

.bento-item:hover::before {
    opacity: 1;
}

.bento-item > * {
    position: relative;
    z-index: 1;
}

.bento-item:hover .card-icon {
    transform: scale(1.1) rotate(12deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.bento-item .card-icon i {
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bento-item:hover .card-icon i {
    transform: scale(1.2);
}

@keyframes float-icon {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.card-icon {
    animation: float-icon 5s ease-in-out infinite;
}

.bento-item:nth-child(even) .card-icon {
    animation-delay: -2.5s;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (min-width: 1024px) {
    .reveal-left {
        opacity: 0;
        transform: translateX(-120px) !important;
        transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .reveal-right {
        opacity: 0;
        transform: translateX(120px) !important;
        transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .reveal-left.active, .reveal-right.active {
        opacity: 1;
        transform: translateX(0) !important;
    }

    .bento-item.reveal-left { transition-delay: 0.1s; }
    .bento-item.reveal-right { transition-delay: 0.2s; }
}

@media (max-width: 1023px) {
    .reveal-left, .reveal-right {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Bento specific hover states */
.bento-item.wide:hover {
    background: linear-gradient(to right, #ffffff, #f8faff);
    box-shadow: 0 40px 80px rgba(79, 70, 229, 0.1);
}

.bento-item.tall:hover {
    background: linear-gradient(to bottom, #ffffff, #f0fdf4);
    box-shadow: 0 40px 80px rgba(16, 185, 129, 0.1);
}

/* Footer Section - Elite Standard */
.site-footer {
    background-color: var(--surface-white);
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 24px;
}

.footer-logo img {
    height: 57px;
    width: auto;
    border-radius: 12px;
}

.p-icon {
    width: 38px;
    height: 38px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
}

.brand-tagline {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 28px;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 14px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 40px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

.card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.suite-card.fleet-owner:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
}

.suite-card.transporter:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.suite-visual {
    flex: 1.2;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #F1F5F9;
    min-height: 480px;
}

.intel-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 60px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.intel-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intel-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.intel-card:hover::before {
    opacity: 1;
}

.transporter .suite-visual {
    background: linear-gradient(135deg, var(--transporter-bg) 0%, rgba(79, 70, 229, 0.08) 100%);
}

.suite-mockup {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    filter: saturate(1.1);
}

.suite-card:hover .suite-mockup {
    transform: scale(1.1);
}

.floating-badge {
    position: absolute;
    padding: 12px 24px;
    border-radius: 50px;
    background: var(--surface-white);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 14px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
}

.floating-badge.profit {
    top: 24px;
    right: 24px;
    color: var(--primary);
}

.floating-badge.whatsapp {
    bottom: 24px;
    right: 24px;
    color: #25D366;
    animation-delay: -2s;
}

.suite-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.suite-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tag-accent {
    background: rgba(79, 70, 229, 0.1);
    color: var(--accent);
}

.suite-content h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.suite-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 32px;
}

.suite-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

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

.feature-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-icon i {
    width: 24px;
    height: 24px;
}

.feature-icon.icon-accent {
    color: var(--accent);
}

.feature-item:hover .feature-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(8deg);
    border-color: var(--primary);
}

.feature-item:hover .icon-accent {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 15px;
    margin-bottom: 0;
}

.suite-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.suite-platforms {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
}

.suite-platforms i {
    width: 20px;
    height: 20px;
}

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.btn-accent {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(79, 70, 229, 0.3);
}
.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}


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

/* Image Popup (Modal) */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active {
    display: flex;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5); }
    100% { transform: scale(1); box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.3); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 4s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* Intelligence Section */
.intel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.intel-card {
    background: var(--glass-dark);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 48px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.intel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    opacity: 0.5;
}

.intel-card.danger::before { background: #EF4444; }

.intel-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.intel-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.intel-card.danger .card-icon { color: #EF4444; }

.intel-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .hero h1 { font-size: 48px; }
    .suite-card { flex-direction: column; }
    .suite-visual { padding: 40px 20px; }
    .suite-content { padding: 40px 24px; }
    .intel-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero { text-align: center; height: auto; padding: 160px 0 100px; }
    .hero-content { margin: 0 auto; }
    .hero-btns { justify-content: center; }
    .suite-content h3 { font-size: 28px; }
    .suite-content p { font-size: 16px; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Screen Rotation Animation */
.screen-stack {
    position: relative;
    width: 280px;
    height: 580px;
    margin: 0 auto;
}

.mobile-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 40px;
    border: 8px solid #1E293B;
    background: #0F172A;
    padding: 10px;
    box-shadow: var(--shadow-xl);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    opacity: 0;
}

.mobile-screen img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: cover;
}

.mobile-screen.front {
    z-index: 10;
    opacity: 1;
    transform: scale(1) translateX(0);
}

.mobile-screen.back {
    z-index: 5;
    opacity: 0.7;
    transform: scale(0.85) translateX(40px);
}

@keyframes slideLeftBack {
    0% { transform: scale(1) translateX(0); z-index: 10; opacity: 1; }
    50% { transform: scale(0.9) translateX(-180px); opacity: 0.5; }
    100% { transform: scale(0.85) translateX(40px); z-index: 5; opacity: 0.7; }
}

@keyframes slideRightFront {
    0% { transform: scale(0.85) translateX(40px); z-index: 5; opacity: 0.7; }
    50% { transform: scale(0.9) translateX(180px); opacity: 0.8; }
    100% { transform: scale(1) translateX(0); z-index: 10; opacity: 1; }
}

.rot-to-back {
    animation: slideLeftBack 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

.rot-to-front {
    animation: slideRightFront 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }

    .nav-center {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background-color: #000 !important;
        z-index: 5000;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 140px 40px 60px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    header.menu-open .nav-center {
        display: flex;
        opacity: 1;
        pointer-events: auto;
    }

    header.menu-open {
        z-index: 6000;
    }

    header.menu-open .nav-links {
        display: flex;
        flex-direction: column;
        gap: 24px;
        width: 100%;
        margin-bottom: 60px;
    }

    header.menu-open .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.15);
        padding-bottom: 20px;
    }

    header.menu-open .nav-links a {
        font-size: 32px;
        font-weight: 600;
        color: #fff !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    header.menu-open .nav-links i,
    header.menu-open .nav-links svg {
        display: block !important;
        color: rgba(255,255,255,0.5);
        width: 24px;
        height: 24px;
    }

    header.menu-open .nav-btns {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        width: 100%;
        margin-top: 0;
    }

    header.menu-open .lang-switch {
        margin: 0;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.2);
    }

    header.menu-open .lang-option {
        color: rgba(255,255,255,0.6);
    }

    header.menu-open .lang-option.active {
        color: #fff;
        background: var(--primary);
    }

    header.menu-open .btn-primary {
        width: 100%;
        padding: 20px;
        border-radius: 8px;
        background: #fff !important;
        color: #000 !important;
        font-weight: 800;
        box-shadow: none;
    }

    .mobile-footer {
        display: flex;
        gap: 32px;
        margin-top: auto;
        padding-top: 40px;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .mobile-footer i {
        width: 28px;
        height: 28px;
        color: rgba(255,255,255,0.7);
        transition: color 0.3s ease;
    }

    .mobile-footer a:hover i {
        color: #fff;
    }

    header.menu-open .menu-toggle {
        color: #fff !important;
        position: relative;
        z-index: 7000;
    }

    body.menu-active {
        overflow: hidden;
    }

    nav {
        height: 80px;
    }

    .nav-center {
        padding-top: 140px; 
    }

    .logo img {
        height: 60px;
    }

    .hero, .trans-hero {
        padding-top: 140px;
        text-align: center;
    }

    /* Global Responsiveness */
    h1 {
        font-size: 42px !important;
        line-height: 1.1 !important;
        letter-spacing: -1.2px !important;
    }

    h2 {
        font-size: 32px !important;
    }

    .container {
        padding: 0 20px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-content {
        min-width: 100% !important;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    /* Bento Grid Responsiveness */
    .bento-features {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .intel-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px;
    }

    /* Suite Card Responsiveness */
    .suite-card {
        flex-direction: column;
    }
    
    .suite-visual {
        min-height: 320px !important;
        width: 100% !important;
        flex: none !important;
    }
    
    .suite-content {
        padding: 40px 24px !important;
    }
    
    .nav-right .btn-primary {
        display: none !important;
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 36px !important;
        letter-spacing: -1px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .nav-center .lang-switch {
        margin-top: auto;
        width: 100%;
        justify-content: space-around;
        padding: 10px;
        background: rgba(255,255,255,0.05);
    }

    .mobile-nav-btn {
        display: block;
        width: 100%;
        margin-top: 20px;
    }

    .mobile-nav-btn .btn {
        width: 100%;
        text-align: center;
        padding: 16px;
    }
}
