﻿/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #33476A;
    --primary-hover: #4338ca;
    --dark: #111827;
    --gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --brand-50: #eef3fb;
    --brand-100: #d4e2f5;
    --brand-200: #aac5eb;
    --body-text: #5B5B5B;
    --heading: #1a1a2e;
    --muted: #8a8a9a;
    --border: #e2e8f2;
    --bg: #ffffff;
    --bg-soft: #f6f8fc;
    --bg-dark: #0e1f40;
    /* Gradients & Utilities */
    --grad-brand: linear-gradient(135deg, #20519A, #1A89C8);
    /* Shadows */
    --shadow-sm: 0 4px 6px rgba(14, 31, 64, 0.05);
    --shadow-md: 0 10px 30px rgba(14, 31, 64, 0.08);
    --shadow-lg: 0 20px 40px rgba(14, 31, 64, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --eq-primary: #374E6F;
    --eq-primary-light: #4A658A;
    --eq-accent: #2563EB; /* Distinct primary blue for active states/CTAs */
    --eq-accent-hover: #1D4ED8;
    --eq-bg-light: #F8FAFC;
    --eq-text-main: #1E293B;
    --eq-text-muted: #64748B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    width: 33%;
}

.navbar-logo {
    max-height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.navbar-nav a {
    font-weight: 500;
    color: var(--gray);
    transition: 0.3s;
}

.navbar-nav a:hover, .navbar-nav a.active {
    color: var(--primary);
}

.nav-buttons .btn-login {
    margin-right: 15px;
    font-weight: 600;
    color: var(--dark);
}


.btn-primary {
    background: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: var(--primary-hover);
    }

/* Common Sections */
.section {
    padding: 80px 5%;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.text-light-muted {
    color: #ffffffb3;
}

.footer {
    background-color: var(--bg-dark);
    color: var(--bg);
    padding: 80px 0 30px;
}

.footer-logo-box {
    background: var(--bg);
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
}

.footer-logo {
    height: 45px;
}

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background-color: rgba(255,255,255,0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

        .social-links a:hover {
            background-color: var(--primary);
            text-decoration: none;
        }

.footer-title {
    color: var(--bg);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--muted);
    font-weight: 500;
    font-size: 0.95rem;
}

    .footer-links a:hover {
        color: var(--primary-hover);
        padding-left: 0px;
        text-decoration: none;
    }

.footer-contact li {
    margin-bottom: 15px;
    color: var(--muted);
    font-size: 0.95rem;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--brand-light);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 60px;
    padding-top: 30px;
    color: var(--muted);
    font-size: 0.9rem;
}

ol, ul {
    padding-left: 0px !important;
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

    .fade-up.visible {
        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 (max-width: 991px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-md);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: 0.4s ease-in-out;
    }

        .nav-menu.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }

        .nav-menu a {
            padding: 15px 20px;
            border-bottom: 1px solid var(--border);
            display: block;
        }

    .mobile-toggle {
        display: block;
    }

    .hero {
        text-align: center;
        padding-top: 120px;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        margin-bottom: 4rem;
    }

    .hero-visual-col {
        display: none;
    }

    .border-end-lg {
        border-right: none;
    }

    .stat-box::after {
        display: none;
    }

    .stat-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .cta-buttons {
        flex-direction: column;
    }

    .section-pad {
        padding: 60px 0;
    }

    .dashboard-mockup {
        transform: none;
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    /* In a real app, add a hamburger menu */
    .section-title {
        font-size: 2rem;
    }
}

/* Home Page Specific Advanced Styles */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5% 120px;
    background: radial-gradient(circle at top left, #f3f4f6 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    /* Decorative Background Elements */
    .hero::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(67, 56, 202, 0.05));
        border-radius: 50%;
        top: -200px;
        right: -100px;
        filter: blur(40px);
        z-index: 0;
    }

.hero-text {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 1;
    padding-right: 40px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: #eef2ff;
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -1px;
}

    .hero-text h1 span {
        color: var(--primary);
    }

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-outline-play {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 600;
    transition: 0.3s;
}

    .btn-outline-play i {
        background: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--primary);
    }

    .btn-outline-play:hover {
        color: var(--primary);
    }

/* Floating Dashboard Mockup */
.hero-visual {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    perspective: 1000px;
}

.dashboard-mockup {
    width: 130%;
    max-width: 700px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--border);
    overflow: hidden;
    transform: rotateY(-15deg) rotateX(5deg) scale(0.95);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0px) scale(0.95);
    }

    50% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(-20px) scale(0.95);
    }

    100% {
        transform: rotateY(-15deg) rotateX(5deg) translateY(0px) scale(0.95);
    }
}

.mockup-header {
    background: #f9fafb;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    gap: 8px;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-r {
    background: #ef4444;
}

.dot-y {
    background: #f59e0b;
}

.dot-g {
    background: #10b981;
}

.mockup-body {
    padding: 20px;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 20px;
    height: 350px;
}

.mockup-sidebar {
    background: #f3f4f6;
    border-radius: 8px;
    padding: 15px;
}

.mockup-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    margin-bottom: 15px;
}

.mockup-content {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 15px;
}

.mockup-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
}

.mockup-card {
    background: #eef2ff;
    height: 80px;
    border-radius: 8px;
}

.mockup-chart {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 500;
}

/* Trust Section */
.trust-section {
    background: var(--white);
    padding: 40px 5%;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

    .trust-section p {
        font-size: 0.95rem;
        color: var(--gray);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

.logo-cloud {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.6;
    font-size: 1.5rem;
    font-weight: 700;
    color: #9ca3af;
}

    .logo-cloud span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

/* Highlights Bento Box */
.highlights {
    padding: 100px 5%;
    background: #f9fafb !important;
}

.highlights-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

    .highlights-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--dark);
    }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: 0.3s;
}

    .bento-box:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        transform: translateY(-5px);
    }

.bento-wide {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--primary), #312e81);
    color: white;
}

    .bento-wide p {
        color: #cbd5e1;
    }

.bento-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.bento-wide .bento-icon {
    color: #818cf8;
}

.bento-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.bento-box p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background: white;
    text-align: center;
}

.cta-container {
    background: linear-gradient(135deg, #f3f4f6, #eef2ff);
    border-radius: 24px;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid #e0e7ff;
}

    .cta-container h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 60px;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .hero-actions {
        justify-content: center;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-wide {
        grid-column: span 1;
    }

    .dashboard-mockup {
        transform: none;
        width: 100%;
        animation: none;
        margin-top: 20px;
    }

    .btn-large {
        padding:16px 20px;
    }

    .section-pad {
        padding:40px 0;
    }

    .navbar-logo {
        max-height: 45px;
        width: auto;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }
}

.section-pad {
    padding: 100px 0;
}

.section-header h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.0rem;
    color: var(--dark);
}

.section-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* Why EduQuip Cards */
.feature-card {
    background-color: var(--bg);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--brand-100);
    }

    .feature-card .icon-box {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        background-color: var(--primary);
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        transition: var(--transition);
    }

    .feature-card h3 {
        font-size: 1.4rem;
    }

    .feature-card:hover .icon-box {
        background-color: var(--primary-hover);
        color: var(--bg);
    }

    .feature-card p {
        font-size: 0.95rem;
        color: var(--muted);
        margin-bottom: 0;
    }

.module-card {
    background-color: var(--bg);
    padding: 30px 25px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

    .module-card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: translateY(-10px);
        box-shadow: var(--shadow-lg);
        border-color: var(--brand-100);
    }

.module-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.25rem;
    transition: 0.3s;
}

.module-card:hover .module-icon {
    color: var(--primary);
    transform: scale(1.1);
}

.module-card h4 {
    font-size: 1.1rem;
}

.module-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0;
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary);
    background: #e9ecef;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.mobile-section {
    background-color: var(--bg-dark);
}

    .mobile-section h2 {
        color: #ffffffb3
    }

    .mobile-section li {
        color: #ffffffb3;
        padding: 10px;
    }

        .mobile-section li i {
            margin-right: 10px;
        }

/* Roles Section */
.role-card {
    background-color: var(--bg);
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.3s;
}

    .role-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--bg-dark);
        z-index: -1;
        transition: 0.4s;
    }

    .role-card:hover::before {
        height: 100%;
    }

    .role-card:hover h4, .role-card:hover p {
        color: var(--bg);
    }

.role-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand);
    transition: 0.4s;
}

.role-card:hover .role-icon {
    background-color: rgba(255,255,255,0.1);
}

.integrations-section {
    border-top: 1px solid var(--border);
}

    .integrations-section .integration-card {
        background-color: var(--bg-soft);
        padding: 40px 25px;
        border-radius: 16px;
        border: 1px solid var(--border);
        height: 100%;
        text-align: center;
        transition: var(--transition);
        display: block;
    }

.integration-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    background-color: var(--bg);
    border-color: var(--brand-200);
}

.int-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.5rem;
    background-color: var(--bg);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--heading);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.integration-card:hover .int-icon {
    color: var(--brand);
    transform: scale(1.05);
    border-color: var(--brand-100);
}

    .integration-card:hover .int-icon.whatsapp {
        color: #25D366;
        border-color: #25D366;
    }

.integration-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.integration-card p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Floating Action Buttons */
.fab-container {
    position: fixed;
    right: 25px;
    bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}

.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.20);
    transition: all 0.3s ease;
}

    .fab:hover {
        color: #fff;
        text-decoration: none;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    }

/* WhatsApp */
.fab-whatsapp {
    background: #25D366;
}

    .fab-whatsapp:hover {
        background: #1ebe5d;
    }

/* Call */
.fab-call {
    background: #2563eb;
}

    .fab-call:hover {
        background: #1d4ed8;
    }

/* Mobile */
@media (max-width: 576px) {
    .fab-container {
        right: 15px;
        bottom: 15px;
        gap: 10px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }
}

.contact-popup {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 310px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    z-index: 9998;
    border: 1px solid rgba(0, 0, 0, 0.06);
    /* Animation */
    opacity: 0.7;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

    .contact-popup.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

/* Header */
.contact-popup-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 18px;
    background: #f8f9fa;
    border-bottom: 1px solid #eeeeee;
}

    .contact-popup-header h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        color: #222;
    }

    .contact-popup-header p {
        margin: 4px 0 0;
        font-size: 12px;
        color: #777;
    }

/* Close */
.contact-popup-close {
    border: 0;
    background: transparent;
    color: #777;
    font-size: 25px;
    cursor: pointer;
}

/* Form */
.contact-popup-body {
    padding: 18px;
}

.contact-input {
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 13px;
    margin-bottom: 12px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

    .contact-input:focus {
        border-color: #f58220;
        box-shadow: 0 0 0 3px rgba(245, 130, 32, 0.10);
    }

/* Orange Submit */
.contact-submit {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: #f58220;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

    .contact-submit:hover {
        background: #e56f0d;
        transform: translateY(-1px);
    }

.contact-popup {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
}

    .contact-popup.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.fab-contact {
    background: #f58220;
}

    .fab-contact:hover {
        background: #e56f0d;
    }

/* Mobile */
@media (max-width: 576px) {
    .contact-popup {
        left: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
        max-width: 310px;
    }
}

/* --- Hero Section --- */
.page-hero {
    background: linear-gradient(135deg, var(--eq-primary) 0%, #1e2b3c 100%);
    color: #ffffff;
    padding: 5rem 0 6rem;
    position: relative;
}

.breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

    .breadcrumb-item a:hover {
        color: #ffffff;
    }

.breadcrumb-item.active {
    color: #ffffff;
}

.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 800px;
}

/* --- Typography & Utilities --- */
.section-title {
    font-weight: 700;
    font-size: 2.25rem;
    letter-spacing: -0.01em;
    color: var(--eq-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--eq-text-muted);
    line-height: 1.7;
}

/* --- Platform Overview Section --- */
.overview-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.overview-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.overview-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

    .overview-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 1rem;
        color: var(--eq-text-main);
        font-weight: 500;
    }

        .overview-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--eq-accent);
        }

/* --- Core Advantages Section --- */
.advantages-section {
    padding: 6rem 0;
    background-color: var(--eq-bg-light);
}

.advantage-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

    .advantage-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.06);
        border-color: rgba(37, 99, 235, 0.1);
    }

.advantage-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--eq-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.advantage-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--eq-primary);
}

.advantage-text {
    color: var(--eq-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --- CTA Section --- */
.cta-section {
    background-color: var(--eq-primary);
    padding: 5rem 0;
    text-align: center;
    color: #ffffff;
}

.btn-custom-primary {
    background-color: var(--eq-accent);
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s;
}

    .btn-custom-primary:hover {
        background-color: var(--eq-accent-hover);
        color: #ffffff;
    }

.btn-custom-outline {
    background-color: transparent;
    color: #000;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: 2px solid var(--primary);
    transition: all 0.2s;
}

    .btn-custom-outline:hover {
        background-color: var(--primary);
        border-color: #ffffff;
        color: #ffffff;
    }

.about-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.br-softwares-badge {
    display: inline-block;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--eq-accent);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    margin-bottom: 1.5rem;
}

.about-image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    position: relative;
}

/* --- Vision Section --- */
.vision-section {
    padding: 6rem 0;
    background-color: var(--eq-primary);
    color: #ffffff;
    text-align: center;
}

.vision-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.vision-text {
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Why Choose Us Section --- */
.why-choose-us {
    padding: 6rem 0;
    background-color: var(--eq-bg-light);
}

.feature-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.06);
        border-color: rgba(37, 99, 235, 0.1);
    }

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(37, 99, 235, 0.08);
    color: var(--eq-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.features-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.feature-box {
    padding: 2rem;
    border-radius: 16px;
    background: var(--eq-bg-light);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    transition: all 0.3s ease;
}

    .feature-box:hover {
        background: #ffffff;
        box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        transform: translateY(-5px);
    }

/*.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px !important;
    background-color: rgba(37, 99, 235, 0.1);
    color: var(--eq-accent);
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}*/
.feature-icon-wrapper i {
    padding-left: 20px;
}
/* --- Payment Highlight Section --- */
.payment-highlight {
    background-color: var(--eq-bg-light);
    padding: 6rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.payment-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ecfdf5;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* --- App Download CTA --- */
.app-cta-section {
    background-color: var(--eq-primary);
    padding: 6rem 0;
    color: #ffffff;
    text-align: center;
}

.btn-store {
    border-radius: 50rem;
    padding: 0.875rem 2.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-play-store {
    background-color: #ffffff;
    color: var(--eq-text-main);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .btn-play-store:hover {
        background-color: #f8f9fa;
        transform: translateY(-2px);
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    }

.btn-app-store {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

    .btn-app-store:hover {
        background-color: rgba(255,255,255,0.1);
        transform: translateY(-2px);
    }

.modules-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.module-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .module-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--eq-accent);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .module-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.06);
        border-color: transparent;
    }

        .module-card:hover::before {
            transform: scaleX(1);
        }

.module-icon-wrapper {
    width: 56px;
    height: 56px;
    background-color: var(--eq-bg-light);
    color: var(--eq-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.module-card:hover .module-icon-wrapper {
    background-color: var(--eq-accent);
    color: #ffffff;
}

.module-title {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--eq-text-main);
}

.module-desc {
    color: var(--eq-text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.module-link {
    color: var(--eq-accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

    .module-link:hover {
        color: var(--eq-accent-hover);
    }

    .module-link i {
        transition: transform 0.2s ease;
    }

    .module-link:hover i {
        transform: translateX(4px);
    }

.cta-section {
    background-color: var(--eq-bg-light);
    padding: 5rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.btn-custom-primary {
    background-color: var(--eq-accent);
    color: #ffffff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: none;
    transition: background-color 0.2s;
}

    .btn-custom-primary:hover {
        background-color: var(--eq-accent-hover);
        color: #ffffff;
    }

.integrations-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--eq-primary);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--eq-bg-light);
    display: inline-block;
}

.integration-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

    .integration-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.06);
        border-color: rgba(37, 99, 235, 0.2);
    }

.integration-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background-color: var(--eq-bg-light);
    color: var(--eq-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.integration-card:hover .integration-icon {
    background-color: var(--eq-accent);
    color: #ffffff;
    transition: all 0.3s ease;
}

.integration-content h3 {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--eq-text-main);
}

.integration-content p {
    color: var(--eq-text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* --- STREAMING_CHUNK:Styling API & CTA Sections... --- */
.api-section {
    background-color: var(--eq-bg-light);
    padding: 5rem 0;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.api-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-section {
    padding: 6rem 0;
    background-color: var(--eq-bg-light);
    position: relative;
    z-index: 10;
    margin-top: -3rem; /* Overlap hero */
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.contact-info-panel {
    background-color: var(--eq-primary);
    color: #ffffff;
    padding: 4rem 3rem;
    height: 100%;
}

.contact-info-title {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-info-text {
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    color: #ffffff;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details p {
    color: #e2e8f0;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-details a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s;
}

    .contact-details a:hover {
        color: #ffffff;
        text-decoration: underline;
    }

/* */
.contact-form-panel {
    padding: 4rem 3rem;
    background: #ffffff;
}

.form-title {
    font-weight: 700;
    font-size: 2rem;
    color: var(--eq-primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--eq-text-muted);
    margin-bottom: 2.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--eq-text-main);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--eq-text-main);
    transition: all 0.2s ease;
}

    .form-control:focus, .form-select:focus {
        border-color: var(--eq-accent);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        outline: none;
    }

    .form-control::placeholder {
        color: #94a3b8;
    }

.btn-submit {
    background-color: var(--eq-accent);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    transition: background-color 0.2s;
    font-size: 1.05rem;
    margin-top: 1rem;
}

    .btn-submit:hover {
        background-color: var(--eq-accent-hover);
        color: #ffffff;
    }

/* */
.map-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 450px;
    background-color: #f1f5f9;
    border: 1px solid rgba(0,0,0,0.05);
}

.policy-section-wrapper {
    margin-top: -5rem; /* Overlaps with the hero section */
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

.policy-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 4rem 5rem;
}

.policy-block {
    margin-bottom: 3rem;
}

    .policy-block:last-child {
        margin-bottom: 0;
    }

    .policy-block h3 {
        font-weight: 700;
        color: var(--eq-primary);
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .policy-block p {
        color: var(--eq-text-muted);
        line-height: 1.7;
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .policy-block ul {
        color: var(--eq-text-muted);
        line-height: 1.7;
        font-size: 1.05rem;
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .policy-block li {
        margin-bottom: 0.5rem;
    }

    .policy-block strong {
        color: var(--eq-text-main);
    }

