/* 
   Aktif Tüketim - Consolidated Styles 
   Restored from inline styles and extended with new features.
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --card-1: #1e40af;
    --card-2: #0d9488;
    --card-3: #ea580c;
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --accent: #0ea5e9;
    --white: #ffffff;
    --black: #0f172a;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --gray-dark: #334155;
    --border: #e2e8f0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--black);
    line-height: 1.7;
}


/* Global h1/h2 boyut ayarı — %20 küçültme */
h1 {
    font-size: 2.5em !important;
}

h2 {
    font-size: 2.5em !important;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modern Floating Island Header */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1360px;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.scrolled {
    top: 10px;
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    margin-left: -15px;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.6rem;
    /* %30 artırıldı (2rem -> 2.6rem) */
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Animated Underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white) !important;
    padding: 0.9rem 2.2rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    border: none;
    cursor: pointer;
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.4);
    filter: brightness(1.1);
}

.nav-cta:active {
    transform: translateY(-1px);
}

.nav-links a.nav-cta::after {
    display: none !important;
}

/* Hero */
.hero {
    position: relative;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a1628;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(30, 64, 175, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-header {
    text-align: center;
    padding: 3rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-header h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: var(--white);
}

.hero-header h1 span {
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 1000px;
    margin: 0 auto;
}

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-bottom: 4rem;
}

.card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.2, 0, 0.2, 1);
}

.card:hover .card-bg img {
    transform: scale(1.15);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* Specific Card Gradients */
.card:nth-child(1) .card-overlay {
    background: linear-gradient(180deg, rgba(30, 64, 175, 0.1) 0%, rgba(30, 64, 175, 0.95) 100%);
}

.card:nth-child(2) .card-overlay {
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0.95) 100%);
}

.card:nth-child(3) .card-overlay {
    background: linear-gradient(180deg, rgba(234, 88, 12, 0.1) 0%, rgba(234, 88, 12, 0.95) 100%);
}

.card-content {
    position: relative;
    z-index: 3;
    padding: 2.5rem;
    color: var(--white);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.card-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.card-link:hover {
    background: var(--white);
    color: var(--black);
}

/* Marquee */
.marquee {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--bg);
}

.marquee-track {
    display: flex;
    animation: marquee 40s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
    white-space: nowrap;
}

.marquee-item span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--border);
}

.marquee-item svg {
    color: var(--border);
}

/* Stats */
.stats {
    background: #0a0a0a;
    color: var(--white);
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.stats::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.2) 0%, transparent 70%);
    z-index: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.stat-item:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-light);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ffffff, #a3a3a3);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features */
.features {
    padding: 8rem 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.section-header p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.feature-list li::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

/* Process Section */
.process {
    padding: 10rem 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 50%, var(--bg) 100%);
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 5rem;
    position: relative;
}

.process-line {
    position: absolute;
    top: 120px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

.process-step:hover .step-icon-wrapper {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.1);
    background: var(--primary);
    color: var(--white);
}

.process-step:hover .step-icon-wrapper svg {
    stroke: var(--white);
    transform: scale(1.1);
}

.step-icon-wrapper svg {
    transition: all 0.4s ease;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.3);
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--black);
}

.process-step p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--white);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--black);
    line-height: 1.2;
}

.about-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.15);
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.about-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--gray);
}

.about-visual {
    position: relative;
    height: 600px;
}

.about-visual img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    object-fit: cover;
}

.about-visual img:nth-child(1) {
    width: 65%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 2;
}

.about-visual img:nth-child(2) {
    width: 55%;
    height: 55%;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 5px solid var(--white);
}

.about-visual img:nth-child(3) {
    width: 30%;
    height: 30%;
    top: 40%;
    left: 20%;
    z-index: 1;
    filter: blur(2px);
    opacity: 0.6;
}

.about-visual:hover img:nth-child(1) {
    transform: translateY(-10px);
}

.about-visual:hover img:nth-child(2) {
    transform: translateY(10px) translateX(5px);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        height: 500px;
        order: -1;
    }
}

.brands {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
}

.brands-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brands-header h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gray);
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.brand-item {
    opacity: 0.5;
    transition: all 0.3s;
    filter: grayscale(100%);
}

.brand-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Corporate Footer Redesign */
.footer {
    background: #050b16;
    color: var(--white);
    padding: 8rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-brand .logo {
    margin-bottom: 1.5rem;
    margin-left: 0;
}

.footer-brand .logo img {
    height: 45px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 320px;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '→';
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-info h5 {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--white);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}

.footer-bottom {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .stats-grid,
    .features-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 1rem 0;
    }

    .card-grid,
    .stats-grid,
    .features-grid,
    .process-grid,
    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-header h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .process-line {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .hero-header h1 {
        font-size: 2.5rem;
    }

    .card-grid,
    .stats-grid,
    .features-grid,
    .process-grid,
    .card-grid-2 {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .process-line {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Base Additions Kept */
.dropdown {
    position: relative;
}

/* Structured Corporate Dropdown */
.dropdown-content {
    display: block;
    /* Required for animation */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    /* Align directly below */
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    border-radius: 8px;
    /* Standard rounded corners */
    padding: 0;
    /* padding handled by links */
    border-top: 3px solid var(--primary);
    /* Accent border */
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Remove arrow, use top border instead */
.dropdown-content::before {
    display: none;
}

.dropdown-content a {
    color: var(--gray-dark);
    padding: 0.9rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    /* Separator */
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8fafc;
    color: var(--primary);
    padding-left: 1.8rem;
    /* Slight shift for feedback */
}

/* Optional hover indicator */
.dropdown-content a:hover::before {
    content: '›';
    position: absolute;
    left: 0.8rem;
    color: var(--primary);
    font-weight: bold;
}

.card-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    padding-bottom: 4rem;
}

.card-grid-2 .card {
    min-height: 280px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 3px;
    background-color: var(--black);
    border-radius: 3px;
    transition: all 0.3s;
}


/* ===== INNER PAGE REDESIGN STYLES ===== */

/* Inner Hero V2 (Mapped to Legacy Style) */
.hero-v2-inner {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #0a1628 0%, #1e40af 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;

    /* Ensure content stacks properly with flex, or switch to block */
    display: flex;
    /* Keeping flex for vertical align if needed, but legacy was block-like usually. */
    align-items: center;
    /* Vertical center typically nice, but legacy might be top. Let's stick to CSS provided: padding top 160px implies top alignment flow. */
    /* Legacy CSS didn't have flex. It relied on padding. */
    display: block;
}

.hero-v2-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.hero-v2-inner-bg {
    display: none;
}

.hero-v2-inner-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    /* Container width */
    margin: 0 auto;
    padding: 0 2rem;
    text-align: left;
    /* Legacy default */
}

.hero-v2-breadcrumb {
    display: flex;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    background: transparent;
    /* Reset from my previous style */
    padding: 0;
    backdrop-filter: none;
}

.hero-v2-breadcrumb a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.hero-v2-breadcrumb a:hover {
    color: #fff;
}

.hero-v2-breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.hero-v2-inner h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: normal;
}

.hero-v2-inner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    line-height: 1.5;
}

/* Page Specific Gradients */
.hero-gradient-blue {
    background: linear-gradient(135deg, #0a1628 0%, #1e40af 100%);
}

.hero-gradient-orange {
    background: linear-gradient(135deg, #0a1628 0%, #ea580c 100%);
}

.hero-gradient-green {
    background: linear-gradient(135deg, #0a1628 0%, #0d9488 100%);
}

.hero-gradient-purple {
    background: linear-gradient(135deg, #0a1628 0%, #7e22ce 100%);
}

.hero-gradient-cyan {
    background: linear-gradient(135deg, #0a1628 0%, #0891b2 100%);
}

.hero-gradient-red {
    background: linear-gradient(135deg, #0a1628 0%, #dc2626 100%);
}


/* Tech Section Styles */
.tech-section {
    background-color: #0f172a;
    color: #fff;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    border-color: var(--primary-light);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.tech-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.tech-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tech-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.15), transparent 40%);
    z-index: 1;
}

/* Responsive Tech Grid */
@media (max-width: 992px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Values Grid (Missing Styles) */
.values-grid {
    display: grid;
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: #1e40af;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(30, 64, 175, 0.1);
    color: #1e40af;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* Tech Stats Section */
.tech-stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    padding: 6rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tech-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(14, 165, 233, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.tech-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* LOGICO THEME STYLES (For index3.html) */

/* Header Logico */
.header-logico {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.header-logico .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1800px;
    /* Wider layout */
    padding: 0 40px;
}

.header-logico .logo img {
    height: 40px;
    /* Adjust based on logo aspect ratio */
}

.header-logico .nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-logico .nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    /* uppercase usually smaller size */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.header-logico .nav-links a:hover {
    color: #facb0f;
    /* Theme Yellow */
}

.header-logico .header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-logico .icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    transition: color 0.3s;
}

.header-logico .icon-btn:hover {
    color: #facb0f;
}

.header-logico .btn-quote {
    background: #facb0f;
    color: #1a1a1a;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
    padding: 18px 35px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.header-logico .btn-quote:hover {
    background: #e5b80b;
    /* Darker yellow */
}

/* Hero Logico */
.hero-logico {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-logico .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.hero-logico .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 20, 26, 0.65);
    /* Darker overlay */
    z-index: -1;
}

.hero-logico-content {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-logico h1 {
    font-size: 5.5rem;
    /* Massive font */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-logico p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}

/* Composite Button (Grey + Yellow Arrow) */
.btn-logico-composite {
    display: inline-flex;
    align-items: stretch;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-logico-composite:hover {
    transform: translateY(-5px);
}

.btn-logico-text {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #ffffff;
    padding: 20px 40px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    transition: background 0.3s;
}

.btn-logico-composite:hover .btn-logico-text {
    background: rgba(255, 255, 255, 0.3);
}

.btn-logico-icon {
    background: #facb0f;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
}


.tech-stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.tech-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.tech-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #38bdf8;
    font-size: 1.5rem;
}

.tech-stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Fallback */
    line-height: 1;
}

.tech-stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 992px) {
    .tech-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}


/* Sales Stats Section (Blue Variant - Synced with Index) */
.sales-stats-section {
    background: linear-gradient(135deg, #0a1628 0%, #1e40af 100%);
    padding: 6rem 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sales-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(30, 64, 175, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.sales-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #60a5fa;
    /* Blue-400 */
    font-size: 1.5rem;
}

.sales-stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, #fff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

/* Sales Channel Grid */
.channel-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.channel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.1);
    border-color: #1e40af;
}

.channel-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.channel-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.channel-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

/* Partner Spotlight Section */
.partner-spotlight {
    padding: 8rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.partner-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(30, 64, 175, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.partner-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.partner-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    margin-top: 0.5rem;
}

.partner-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 32px;
    padding: 4rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(30, 64, 175, 0.1);
    border-color: var(--primary);
}

.partner-logo {
    flex: 0 0 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    object-fit: contain;
    filter: none !important;
    /* Force visibility */
    opacity: 1 !important;
}

.partner-info {
    flex: 1;
}

.partner-info p {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.8;
    margin: 0;
}

.partner-info strong {
    color: var(--primary);
    font-weight: 800;
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .partner-logo {
        flex: 0 0 auto;
    }

    .partner-info p {
        font-size: 1.1rem;
    }
}

@media (max-width: 992px) {
    .channel-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


.value-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}


/* Responsive adjustment for the legacy large fonts */
@media (max-width: 768px) {
    .hero-v2-inner h1 {
        font-size: 2.5rem;
    }

    .hero-v2-inner {
        padding: 120px 0 60px;
    }
}

/* Split Layout Section */
.split-section {
    padding: 8rem 0;
    overflow: hidden;
}

.split-section.bg-light {
    background: var(--bg-light);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.split-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.split-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.split-image-wrapper:hover .split-image {
    transform: scale(1.03);
}

.split-content .section-tag {
    margin-bottom: 1rem;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.split-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.split-feature {
    display: flex;
    gap: 1rem;
}

.split-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.split-feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.split-feature p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Stats V2 Inner */
.stats-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-v2-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.stat-v2-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.08);
}

.stat-v2-header {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-v2-desc {
    color: var(--gray);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-v2-inner h1 {
        font-size: 2.5rem;
    }
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

.mobile-nav-close {
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray);
    line-height: 1;
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: var(--primary);
    padding-left: 10px;
}