/* =========================================
   1. VARIABLES & RESET (Stag Prime Identity)
   ========================================= */
:root {
    --primary: #48BDED; /* Picton Blue */
    --dark: #0E2346;    /* Oxford Blue */
    --darker: #050f1f;  /* Deep Navy */
    --light: #ffffff;
    --gray: #cfd8e3;
    --glass: rgba(14, 35, 70, 0.95);
    --font-main: 'Open Sans', sans-serif;
    --font-head: 'Orbitron', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--dark);
    color: var(--light);
    font-family: var(--font-main);
    overflow-x: hidden;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); text-transform: uppercase; }

.blue-text { color: var(--primary); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }

/* =========================================
   2. NAVIGATION BAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(72, 189, 237, 0.1);
    transition: 0.3s;
}

.nav-box { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    gap: 20px; /* Added gap to prevent overlap */
}

/* --- LOGO STYLES (UPDATED: WIDER & SLEEK) --- */
.logo a {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.logo img, .full-logo {
    height: 70px;           /* Height reduced slightly for sleek look */
    width: auto;            /* Auto width */
    max-width: 350px;       /* Increased width limit to allow logo to spread right */
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo a:hover img {
    transform: scale(1.05);
}

/* Menu Container */
.menu { 
    display: flex; 
    gap: 30px; 
    align-items: center; 
    height: 100%;
}

.menu a { 
    color: var(--gray); 
    font-weight: 600; 
    font-size: 0.9rem; 
}

.menu a:hover, .menu a.active { 
    color: var(--primary); 
}

.btn-nav {
    border: 1px solid var(--primary);
    padding: 10px 25px;
    border-radius: 5px;
    color: var(--primary) !important;
}

.btn-nav:hover { 
    background: var(--primary); 
    color: var(--dark) !important; 
}

.hamburger { 
    display: none; 
    color: var(--light); 
    font-size: 1.5rem; 
    cursor: pointer;
}

/* --- DROPDOWN MENU STYLES --- */
.dropdown-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    cursor: pointer;
}

.dropdown-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 20px; 
    background: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--darker);
    min-width: 200px;
    border: 1px solid rgba(72,189,237,0.2);
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 9999;
    margin-top: 15px; 
    padding: 10px 0;
}

.dropdown-item:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease;
}

.dropdown-menu li {
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--gray);
    font-size: 0.85rem;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(72, 189, 237, 0.1);
    color: var(--primary);
    padding-left: 25px; 
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
}
.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(14, 35, 70, 0.9), rgba(5, 15, 31, 0.8));
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }

.badge {
    background: rgba(72, 189, 237, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--primary);
}

.hero h1 { font-size: 4rem; line-height: 1.1; margin-bottom: 20px; text-shadow: 0 0 20px rgba(72,189,237,0.3); }
.hero p { font-size: 1.2rem; color: var(--gray); margin-bottom: 40px; max-width: 600px; }

.hero-btns { display: flex; gap: 20px; }

.btn-primary {
    background: var(--primary);
    color: var(--dark);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    border: 2px solid var(--primary);
    display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(72,189,237,0.3); }

.btn-outline {
    border: 2px solid var(--light);
    color: var(--light);
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    display: inline-block;
}
.btn-outline:hover { background: var(--light); color: var(--dark); }

/* =========================================
   4. SECTIONS (General)
   ========================================= */
.brand-ticker { background: var(--darker); padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.brand-ticker p { text-align: center; color: var(--gray); font-size: 0.8rem; margin-bottom: 20px; letter-spacing: 2px; }
.ticker-wrapper { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; opacity: 0.6; }
.ticker-item { font-weight: 900; font-family: var(--font-head); font-size: 1.2rem; color: var(--light); }

.split-layout { display: flex; align-items: center; gap: 50px; }
.text-side, .image-side { flex: 1; }
.sub-heading { color: var(--primary); letter-spacing: 2px; font-size: 0.9rem; margin-bottom: 10px; }
.text-side h2 { font-size: 2.5rem; margin-bottom: 20px; }
.text-side p { margin-bottom: 20px; color: var(--gray); }

.stats-grid { display: flex; gap: 30px; margin-top: 30px; }
.stat-box h3 { font-size: 2rem; color: var(--primary); }
.stat-box p { font-size: 0.8rem; }

.img-box {
    width: 100%; height: 400px; background: #1c2e4a; 
    border-radius: 10px; display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--primary);
}

.dark-bg { background: var(--darker); }
.section-head { margin-bottom: 60px; }
.section-head h2 { font-size: 2.5rem; }
.text-center { text-align: center; }

.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card {
    background: var(--dark);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.4s;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--primary); }
.icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }
.service-card h3 { margin-bottom: 15px; }
.service-card p { color: var(--gray); margin-bottom: 20px; font-size: 0.9rem; }
.link-arrow { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.center-btn { text-align: center; margin-top: 50px; }

.ecosystem-box {
    display: flex; background: linear-gradient(45deg, #0E2346, #061226);
    border-radius: 15px; overflow: hidden; border: 1px solid rgba(72,189,237,0.2);
}
.ecosystem-box .content { padding: 60px; flex: 1; }
.ecosystem-box .image { flex: 1; background: #102a54; display: flex; align-items: center; justify-content: center; }
.eco-list li { margin-bottom: 15px; color: var(--gray); }
.eco-list i { color: var(--primary); margin-right: 10px; }
.img-box-sm { color: rgba(255,255,255,0.2); font-weight: bold; }

/* =========================================
   5. SERVICES & PAGE HEADER
   ========================================= */
.page-header {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('services-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    /* Adjusted margin because navbar is taller now */
    margin-top: 120px; 
}
.page-header h1 { font-size: 3rem; margin-bottom: 10px; position: relative; z-index: 2; }
.page-header p { font-size: 1.2rem; color: var(--gray); position: relative; z-index: 2; }

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.full-service-card {
    background: linear-gradient(145deg, #102a54, #08162e);
    border: 1px solid rgba(72,189,237,0.1);
    padding: 40px;
    border-radius: 10px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.full-service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.icon-box { font-size: 3rem; color: var(--primary); margin-bottom: 25px; }
.content-box h3 { margin-bottom: 15px; font-size: 1.5rem; }
.content-box p { color: var(--gray); margin-bottom: 20px; font-size: 0.95rem; }

.feature-list li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--light);
    display: flex;
    align-items: center;
}
.feature-list i { color: var(--primary); margin-right: 10px; font-size: 0.8rem; }

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    text-align: center;
}
.process-step {
    background: var(--dark);
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}
.step-num {
    font-family: var(--font-head);
    font-size: 3rem;
    color: rgba(255,255,255,0.05);
    position: absolute;
    top: 10px; right: 20px; font-weight: 900;
}
.process-step h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.2rem; }
.process-step p { font-size: 0.9rem; color: var(--gray); }

/* CTA */
.cta-section {
    background: linear-gradient(rgba(14,35,70,0.9), rgba(14,35,70,0.9)), url('cta-bg.jpg') center/cover;
    padding: 80px 0;
}

/* =========================================
   6. VENTURES PAGE SPECIFIC
   ========================================= */
.venture-hero {
    background: url('ventures-bg.jpg') center/cover no-repeat;
    height: 60vh;
}

.venture-section { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }

.venture-tag {
    display: inline-block;
    background: rgba(72, 189, 237, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    border: 1px solid var(--primary);
}

.venture-features { margin: 20px 0 30px 0; }
.venture-features li { margin-bottom: 10px; font-size: 1rem; color: var(--light); }

.mockup-container {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(72, 189, 237, 0.3);
    border-radius: 10px;
    background: rgba(255,255,255,0.02);
    box-shadow: 0 0 30px rgba(72, 189, 237, 0.1);
}
.venture-img { width: 100%; height: auto; border-radius: 5px; display: block; }
.reverse-layout { flex-direction: row-reverse; }

.stats-bar { background: var(--primary); padding: 40px 0; }
.stats-bar .ticker-wrapper { justify-content: space-between; opacity: 1; }
.stat-item { text-align: center; }
.stat-item .number {
    display: block; font-size: 2.5rem; font-weight: 900;
    color: var(--dark); font-family: var(--font-head);
}
.stat-item .label {
    font-size: 0.9rem; color: var(--dark); font-weight: 600; text-transform: uppercase;
}

/* =========================================
   7. TEAM PAGE STYLES
   ========================================= */
.leader-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.leader-card {
    max-width: 400px;
    border: 2px solid var(--primary);
    box-shadow: 0 0 30px rgba(72,189,237,0.2);
}
.leader-card .team-img img { height: 400px; }

.social-links { margin-top: 15px; }
.social-links a { color: var(--primary); font-size: 1.2rem; margin: 0 10px; }

.dept-block { margin-bottom: 60px; }
.dept-title {
    font-size: 1.5rem; color: var(--light);
    border-left: 5px solid var(--primary); padding-left: 15px;
    margin-bottom: 30px; display: flex; align-items: center; gap: 10px;
}

.divider {
    border: 0; height: 1px;
    background: rgba(255,255,255,0.1); margin: 50px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--darker);
    border: 1px solid rgba(72,189,237,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}
.team-card:hover { border-color: var(--primary); transform: translateY(-5px); }

.team-img img {
    width: 100%; height: 300px; object-fit: cover;
    filter: grayscale(100%); transition: 0.3s;
}
.team-card:hover .team-img img { filter: grayscale(0%); }

.team-info { padding: 20px; text-align: center; }
.team-info h3 { font-size: 1.2rem; margin-bottom: 5px; color: var(--light); }
.team-info .role { display: block; color: var(--primary); font-size: 0.9rem; font-weight: 700; }

.sub-category {
    text-align: center; color: var(--gray);
    margin: 40px 0 20px; font-size: 1.1rem;
    letter-spacing: 2px; text-transform: uppercase;
}

.team-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    justify-content: center;
}
.profile-card {
    background: var(--dark); padding: 25px; border-radius: 10px;
    text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.profile-card:hover { border-color: var(--primary); background: var(--darker); }
.profile-card img {
    width: 100px; height: 100px; border-radius: 50%;
    object-fit: cover; margin-bottom: 15px; border: 2px solid var(--primary);
}
.student-focus { font-size: 0.8rem; color: var(--gray); margin-bottom: 10px; font-style: italic; }
.badge-role {
    display: inline-block; background: rgba(255,255,255,0.1);
    font-size: 0.7rem; padding: 4px 12px; border-radius: 20px; color: var(--light);
}
.badge-role.success { background: rgba(46, 204, 113, 0.2); color: #2ecc71; }

/* =========================================
   8. PORTFOLIO PAGE STYLES
   ========================================= */
.portfolio-filter {
    margin-bottom: 50px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap;
}
.filter-btn {
    background: transparent; border: 1px solid var(--gray); color: var(--gray);
    padding: 10px 25px; border-radius: 30px; cursor: pointer;
    font-family: var(--font-head); font-weight: 600; transition: 0.3s;
    text-transform: uppercase; font-size: 0.8rem;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary); border-color: var(--primary); color: var(--dark);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.project-card {
    background: var(--darker); border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
    animation: fadeIn 0.5s ease;
}
.project-card:hover {
    transform: translateY(-5px); border-color: var(--primary); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.project-img { position: relative; overflow: hidden; height: 250px; }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.project-card:hover .project-img img { transform: scale(1.1); }
.project-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(14, 35, 70, 0.85); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.view-btn {
    background: var(--primary); color: var(--dark); padding: 10px 20px;
    border-radius: 5px; font-weight: bold; transform: translateY(20px); transition: 0.3s;
}
.project-card:hover .view-btn { transform: translateY(0); }
.project-info { padding: 25px; }
.category-tag {
    font-size: 0.75rem; color: var(--primary); text-transform: uppercase;
    letter-spacing: 1px; font-weight: 700; display: block; margin-bottom: 10px;
}
.project-info h3 { font-size: 1.2rem; color: var(--light); margin-bottom: 10px; }
.project-info p { font-size: 0.9rem; color: var(--gray); }

/* =========================================
   9. PARTNERS PAGE STYLES
   ========================================= */
.partner-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; justify-content: center;
}
.partner-card {
    background: var(--darker); padding: 40px 20px; border-radius: 10px;
    text-align: center; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.partner-card:hover {
    border-color: var(--primary); transform: translateY(-5px); background: rgba(14, 35, 70, 0.6);
}
.partner-card img {
    max-width: 180px; height: auto; margin-bottom: 20px;
    filter: grayscale(100%) brightness(200%); opacity: 0.7; transition: 0.3s;
}
.partner-card:hover img { filter: grayscale(0%) brightness(100%); opacity: 1; }
.partner-card h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--light); }
.partner-card p { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* =========================================
   10. CONTACT PAGE STYLES
   ========================================= */
.contact-wrapper {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 50px; align-items: start;
}
.contact-form-box {
    background: var(--darker); padding: 40px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}
.contact-form-box h2 { font-size: 2rem; margin-bottom: 10px; }
.contact-form-box p { color: var(--gray); margin-bottom: 30px; }
.input-group { margin-bottom: 20px; }
.input-group input, .input-group select, .input-group textarea {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); padding: 15px; border-radius: 5px;
    color: var(--light); font-family: var(--font-main); font-size: 1rem; transition: 0.3s;
}
.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    outline: none; border-color: var(--primary); background: rgba(14, 35, 70, 0.5);
}
.w-100 { width: 100%; cursor: pointer; }
.office-card {
    display: flex; gap: 20px; background: var(--dark); padding: 25px;
    border-radius: 10px; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.highlight-card {
    border: 1px solid var(--primary); background: linear-gradient(145deg, #102a54, #08162e);
    position: relative; overflow: hidden;
}
.highlight-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: var(--primary);
}
.icon-wrap { font-size: 2rem; color: var(--primary); margin-top: 5px; }
.info-content h3 { font-size: 1.1rem; margin-bottom: 5px; color: var(--light); }
.info-content .address { color: var(--gray); font-size: 0.9rem; margin-bottom: 10px; line-height: 1.5; }
.contact-link { color: var(--light); font-weight: 600; font-size: 0.9rem; }
.contact-link i { color: var(--primary); margin-right: 8px; }
.badge-status {
    display: inline-block; font-size: 0.7rem; background: rgba(255,255,255,0.1);
    padding: 3px 8px; border-radius: 4px; margin-top: 10px; color: var(--gray); text-transform: uppercase;
}
.social-connect { margin-top: 40px; }
.social-connect h4 { font-size: 1.2rem; margin-bottom: 20px; }
.social-icons-lg a {
    display: inline-block; width: 50px; height: 50px; background: var(--darker);
    line-height: 50px; text-align: center; border-radius: 50%; margin-right: 15px;
    color: var(--light); font-size: 1.2rem; border: 1px solid rgba(255,255,255,0.1); transition: 0.3s;
}
.social-icons-lg a:hover {
    background: var(--primary); color: var(--dark); border-color: var(--primary); transform: translateY(-5px);
}
.map-container { filter: grayscale(100%) invert(90%); border-top: 1px solid var(--primary); }

/* =========================================
   11. BLOG & STORE PAGE STYLES
   ========================================= */
.featured-post {
    display: flex; background: var(--darker); border-radius: 15px;
    overflow: hidden; margin-bottom: 60px; border: 1px solid rgba(72,189,237,0.2); align-items: center;
}
.fp-image { flex: 1.5; height: 400px; }
.fp-image img { width: 100%; height: 100%; object-fit: cover; }
.fp-content { flex: 1; padding: 40px; }
.blog-tag {
    color: var(--primary); font-weight: bold; text-transform: uppercase;
    font-size: 0.8rem; letter-spacing: 1px; margin-bottom: 10px; display: block;
}
.fp-content h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.3; }
.fp-content p { color: var(--gray); margin-bottom: 30px; }
.read-more { color: var(--light); font-weight: bold; border-bottom: 2px solid var(--primary); }
.blog-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.blog-card {
    background: var(--darker); border-radius: 10px; overflow: hidden;
    transition: 0.3s; border: 1px solid rgba(255,255,255,0.05);
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--primary); }
.blog-img { position: relative; height: 200px; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.date-badge {
    position: absolute; top: 10px; right: 10px; background: var(--primary);
    color: var(--dark); padding: 5px 10px; font-size: 0.75rem; font-weight: bold; border-radius: 3px;
}
.blog-info { padding: 25px; }
.category { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; }
.blog-info h3 { font-size: 1.2rem; margin: 10px 0; }
.btn-text { color: var(--primary); font-weight: 600; font-size: 0.9rem; }

.store-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-bottom: 80px;
}
.product-card {
    background: var(--darker); border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05); transition: 0.3s;
}
.product-card:hover { border-color: var(--primary); box-shadow: 0 0 20px rgba(72,189,237,0.1); }
.prod-img { position: relative; height: 250px; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; }
.price-tag {
    position: absolute; top: 15px; right: 15px; background: var(--primary);
    color: var(--dark); padding: 5px 12px; font-weight: 900; border-radius: 20px;
}
.prod-info { padding: 25px; text-align: center; }
.prod-info h3 { font-size: 1.1rem; margin-bottom: 10px; }
.prod-info p { font-size: 0.9rem; color: var(--gray); margin-bottom: 20px; }
.external-stores h3 { margin-bottom: 30px; color: var(--gray); }
.store-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.store-btn {
    border: 1px solid var(--gray); color: var(--gray); padding: 15px 30px;
    border-radius: 5px; font-weight: bold; transition: 0.3s;
}
.store-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(72,189,237,0.1); }

/* =========================================
   12. FOOTER & MISC
   ========================================= */
footer { background: #02060e; padding: 80px 0 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 50px; }
.footer-brand p { color: var(--gray); margin-top: 15px; max-width: 300px; }
.socials { margin-top: 20px; display: flex; gap: 15px; }
.socials a { color: var(--light); font-size: 1.2rem; }
.socials a:hover { color: var(--primary); }
footer h4 { margin-bottom: 20px; font-size: 1.1rem; }
footer a { display: block; color: var(--gray); margin-bottom: 10px; font-size: 0.9rem; }
footer a:hover { color: var(--primary); }
.footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; color: var(--gray); font-size: 0.8rem; }

/* Mobile Responsive */
@media (max-width: 900px) {
    .reverse-layout { flex-direction: column; }
    .split-layout { gap: 30px; }
    .stat-item .number { font-size: 1.8rem; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .menu { display: none; }
    .hamburger { display: block; }
    .hero h1 { font-size: 2.5rem; }
    .split-layout, .ecosystem-box, .featured-post { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
    .fp-image { width: 100%; height: 250px; }
    
    /* Mobile Logo Fix */
    .logo a { font-size: 1.2rem; }
    .logo img, .full-logo { height: 45px; max-width: 200px; }
}

@media (max-width: 600px) {
    .process-grid { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2rem; }
}