/* Root Variables */
:root {
    --dark-navy: #0B1F3F;
    --teal: #1BA098;
    --teal-dark: #17A399;
    --light-teal: #20BCB1;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --gray: #E0E0E0;
    --text-light: #CCCCCC;
}

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

body {
    font-family: 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 5rem;
    letter-spacing: 0.05em;
}

h2 {
    font-size: 3rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    background: var(--dark-navy);
    background-image:
        radial-gradient(circle at 20% 50%, rgba(91, 168, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(27, 160, 152, 0.1) 0%, transparent 50%);
    position: relative;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.introfin-icon {
    width: 350px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(91, 168, 216, 0.5));
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 60px;
    text-shadow: 0 0 40px rgba(91, 168, 216, 0.6);
}

.hero-subtitle p {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 300;
}

.introstat-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.introstat-icon {
    background: var(--white);
    color: var(--dark-navy);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-style: italic;
}

.introstat-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-tagline {
    margin-top: 30px;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    font-weight: 400;
}

/* About Section */
.about-section {
    background: var(--dark-navy);
    color: var(--white);
    padding: 0 !important;
    min-height: 100vh;
}

.about-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.about-content {
    display: block;
    position: relative;
    min-height: 100vh;
}

.about-text {
    background: var(--dark-navy);
    color: var(--white);
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.about-text h2 {
    font-size: 4.5rem;
    margin-bottom: 0;
    font-weight: 900;
    padding: 80px 20px 50px 20px;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: var(--teal);
}

.teal-box {
    background: var(--teal);
    padding: 60px 80px 80px 80px;
    border-radius: 0;
    margin-top: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.teal-box p {
    margin-bottom: 30px;
    font-size: 1.15rem;
    line-height: 2;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
}

.teal-box p:first-of-type {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2.1;
    margin-bottom: 35px;
    border-left: 4px solid var(--dark-navy);
    padding-left: 25px;
}

.teal-box h3 {
    margin-top: 50px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--dark-navy);
    position: relative;
    padding-bottom: 15px;
}

.teal-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--dark-navy);
}

.teal-box ul {
    margin-left: 0;
    margin-bottom: 30px;
    list-style: none;
    padding-left: 0;
}

.teal-box li {
    margin-bottom: 16px;
    line-height: 1.9;
    font-size: 1.1rem;
    padding-left: 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
}

.teal-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dark-navy);
    font-weight: 900;
    font-size: 1.3rem;
}

.teal-box strong {
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 1.15rem;
}

.about-image {
    display: none;
}

.diagonal-accent {
    position: absolute;
    top: 0;
    left: -150px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 100vh 250px;
    border-color: transparent transparent var(--teal) transparent;
    z-index: 1;
}

.about-text .section-footer {
    padding: 40px 20px;
    background: var(--dark-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: auto;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.footer-logo {
    width: 80px;
    height: auto;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
}

.powered-by {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.9rem;
    margin-left: 20px;
}

.introstat-small {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Platform Section */
.platform-section {
    background: var(--dark-navy);
    padding: 100px 0;
}

.platform-section h2 {
    margin-bottom: 80px;
    text-align: center;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.platform-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

.flow-column {
    display: flex;
    flex-direction: column;
}

.flow-column h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
    letter-spacing: 0.1em;
}

.banks-box,
.platform-box,
.mno-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 40px 30px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.bank-logo,
.mno-logo {
    padding: 15px 25px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.platform-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.platform-name {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
}

.platform-features {
    text-align: center;
    line-height: 2;
}

.platform-features p {
    font-size: 0.95rem;
    padding: 8px 0;
}

.flow-arrows {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 30px;
    font-size: 0.9rem;
    color: var(--teal);
    justify-content: center;
    align-self: stretch;
}

.arrow {
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
}

.mtn {
    color: #FFCC00;
    font-weight: 800;
    font-size: 2rem;
}

.vodacom {
    color: #E60000;
    font-weight: 700;
    font-size: 1.5rem;
}

.telkom {
    color: #009BDB;
    font-weight: 700;
    font-size: 1.5rem;
}

.cellc {
    color: #0066CC;
    font-weight: 700;
    font-size: 1.5rem;
}

.rain {
    color: #00D4FF;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Credit Exclusion Section */
.credit-section {
    background: var(--dark-navy);
}

.credit-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: center;
}

.credit-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.credit-image::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.credit-info h2 {
    margin-bottom: 50px;
    font-size: 3.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-text {
    font-size: 1rem;
    line-height: 1.6;
}

.stat-text strong {
    color: var(--teal);
    font-weight: 700;
}

.credit-note {
    background: var(--teal);
    padding: 30px;
    border-radius: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    background: var(--dark-navy);
}

.services-section h2 {
    font-size: 4rem;
    margin-bottom: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 35px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 0 30px rgba(27, 160, 152, 0.3);
}

.service-card h3 {
    color: var(--teal);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* Products Section */
.products-section {
    background: var(--dark-navy);
}

.products-section h2 {
    font-size: 4rem;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.product-btn {
    padding: 35px 30px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.product-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(27, 160, 152, 0.4);
}

.product-btn.teal-filled {
    background: var(--teal);
    border: 2px solid var(--teal);
    color: var(--white);
}

.product-btn.outlined {
    background: transparent;
    border: 2px solid var(--teal);
    color: var(--teal);
}

.product-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

/* Proposition Section */
.proposition-section {
    background: var(--dark-navy);
    padding: 100px 0;
}

.proposition-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.introstat-logo-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.introstat-icon-large {
    background: var(--white);
    color: var(--dark-navy);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
}

.introstat-text-large {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.proposition-intro p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1rem;
    color: var(--text-light);
}

.future-product {
    background: var(--teal);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
}

.future-product p {
    color: var(--white);
    margin-bottom: 10px;
}

.proposition-section h2 {
    text-align: center;
    font-size: 4rem;
    margin-bottom: 60px;
}

.proposition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.prop-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--teal);
    border-radius: 20px;
    padding: 40px;
    position: relative;
}

.prop-number {
    position: absolute;
    top: -25px;
    left: 40px;
    background: var(--teal);
    color: var(--white);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 4px solid var(--dark-navy);
}

.prop-card h3 {
    color: var(--teal);
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.prop-card ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.prop-card li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: var(--text-light);
}

.prop-note,
.prop-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-top: 15px;
}

/* Footer Section */
.footer-section {
    background: var(--dark-navy);
    background-image:
        radial-gradient(circle at 30% 50%, rgba(91, 168, 216, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(27, 160, 152, 0.15) 0%, transparent 50%);
    text-align: center;
    padding: 120px 0;
}

.footer-logo-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.introstat-icon-footer {
    background: var(--white);
    color: var(--dark-navy);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
}

.introstat-text-footer {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 40px;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .platform-flow {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .credit-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .diagonal-accent {
        display: none;
    }

    .proposition-header {
        grid-template-columns: 1fr;
    }

    .proposition-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .introfin-icon {
        width: 200px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* ============================
   HEADER NAVIGATION STYLES
   ============================ */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(11, 31, 63, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 2px solid var(--teal);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo-icon {
    width: 60px;
    height: auto;
}

.header-brand {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--white);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--teal);
}

.nav-list li a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Adjust hero section to account for fixed header */
.hero-section {
    padding-top: 80px;
}

/* ============================
   CONTACT CTA SECTION
   ============================ */

.contact-cta-section {
    background: var(--dark-navy);
    background-image:
        linear-gradient(135deg, rgba(27, 160, 152, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(91, 168, 216, 0.1) 0%, transparent 70%);
    min-height: 60vh;
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: var(--text-light);
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--teal);
    font-family: inherit;
}

.cta-btn.primary {
    background: var(--teal);
    color: var(--white);
}

.cta-btn.primary:hover {
    background: var(--light-teal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 160, 152, 0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--teal);
}

.cta-btn.secondary:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(27, 160, 152, 0.4);
}

/* ============================
   FOOTER STYLES
   ============================ */

.main-footer {
    background: var(--dark-navy);
    border-top: 2px solid var(--teal);
    padding: 80px 0 0 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--teal);
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 60px;
    height: auto;
}

.footer-brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 30px;
}

.footer-powered {
    font-size: 0.9rem;
    color: var(--text-light);
}

.introstat-footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.introstat-icon-footer-sm {
    background: var(--white);
    color: var(--dark-navy);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-style: italic;
}

.introstat-text-footer-sm {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-tagline-sm {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-top: 10px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--teal);
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--teal);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--teal);
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--teal);
}

.footer-legal .separator {
    color: var(--text-light);
}

/* ============================
   ENHANCED MOBILE RESPONSIVE
   ============================ */

@media (max-width: 1400px) {
    .about-text h2 {
        padding: 70px 40px 40px 40px;
        font-size: 4rem;
    }

    .teal-box {
        padding: 50px 60px 70px 60px;
    }

    .teal-box p:first-of-type {
        font-size: 1.2rem;
        padding-left: 20px;
    }

    .teal-box h3 {
        font-size: 1.6rem;
    }

    .about-text .section-footer {
        padding: 40px 40px;
    }
}

@media (max-width: 1200px) {
    .platform-flow {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flow-arrows {
        padding: 20px 0;
        gap: 15px;
    }

    .flow-column:nth-child(1) {
        order: 1;
    }

    .left-arrows {
        order: 2;
    }

    .flow-column:nth-child(3) {
        order: 3;
    }

    .right-arrows {
        order: 4;
    }

    .flow-column:nth-child(5) {
        order: 5;
    }

    .about-content {
        min-height: auto;
    }

    .about-text {
        min-height: auto;
    }

    .about-text h2 {
        padding: 60px 30px 35px 30px;
        font-size: 3.5rem;
    }

    .teal-box {
        padding: 50px 40px 70px 40px;
    }

    .teal-box p {
        font-size: 1.1rem;
    }

    .teal-box p:first-of-type {
        font-size: 1.15rem;
        padding-left: 20px;
    }

    .teal-box h3 {
        font-size: 1.5rem;
        margin-top: 40px;
    }

    .teal-box li {
        font-size: 1.05rem;
        padding-left: 30px;
    }

    .about-text .section-footer {
        padding: 40px 30px;
    }
}

@media (max-width: 991px) {
    .header-container {
        padding: 0 30px;
    }

    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(11, 31, 63, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 30px;
        gap: 0;
        transition: left 0.3s ease;
    }

    .nav-list.active {
        left: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-list li a {
        display: block;
        padding: 20px 0;
        font-size: 1.2rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .company-info {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header-container {
        padding: 0 20px;
        height: 70px;
    }

    .header-brand {
        font-size: 1.4rem;
    }

    .header-logo-icon {
        width: 45px;
    }

    .nav-list {
        top: 70px;
        height: calc(100vh - 70px);
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero-section {
        padding-top: 70px;
        min-height: 100vh;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .introfin-icon {
        width: 200px;
    }

    .introstat-text {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
        min-height: auto;
    }

    .about-section {
        padding: 60px 0 !important;
        min-height: auto;
    }

    .about-content {
        min-height: auto;
    }

    .about-text {
        min-height: auto;
    }

    .about-text h2 {
        font-size: 2.5rem;
        padding: 50px 20px 30px 20px;
    }

    .about-text h2::after {
        width: 80px;
        height: 4px;
    }

    .teal-box {
        padding: 40px 25px 60px 25px;
    }

    .teal-box p {
        font-size: 1.05rem;
        line-height: 1.9;
    }

    .teal-box p:first-of-type {
        font-size: 1.1rem;
        padding-left: 15px;
        border-left-width: 3px;
    }

    .teal-box h3 {
        font-size: 1.4rem;
        margin-top: 35px;
    }

    .teal-box h3::after {
        width: 60px;
        height: 3px;
    }

    .teal-box li {
        font-size: 1rem;
        padding-left: 28px;
    }

    .teal-box li::before {
        font-size: 1.1rem;
    }

    .about-text .section-footer {
        padding: 30px 20px;
        flex-wrap: wrap;
    }

    .about-text .footer-brand {
        font-size: 1.4rem;
    }

    .about-text .powered-by {
        margin-left: 10px;
        font-size: 0.8rem;
    }

    .platform-section h2 {
        font-size: 2rem;
    }

    .credit-content {
        grid-template-columns: 1fr;
    }

    .credit-image {
        height: 400px;
    }

    .credit-info h2 {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .services-section h2,
    .products-section h2,
    .proposition-section h2 {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .proposition-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .proposition-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .main-footer {
        padding: 60px 0 0 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer-legal .separator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .introfin-icon {
        width: 150px;
    }

    .introstat-icon {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }

    .introstat-text {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .about-text h2 {
        padding: 40px 15px 25px 15px;
        font-size: 2rem;
    }

    .about-text h2::after {
        width: 60px;
        height: 3px;
    }

    .teal-box {
        padding: 35px 20px 50px 20px;
    }

    .teal-box p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .teal-box p:first-of-type {
        font-size: 1.05rem;
        padding-left: 12px;
    }

    .teal-box h3 {
        font-size: 1.3rem;
        margin-top: 30px;
    }

    .teal-box h3::after {
        width: 50px;
    }

    .teal-box li {
        font-size: 0.95rem;
        padding-left: 25px;
    }

    .about-text .section-footer {
        padding: 20px 15px;
    }

    .about-text .footer-logo {
        width: 60px;
    }

    .about-text .footer-brand {
        font-size: 1.2rem;
    }

    .about-text .powered-by {
        font-size: 0.75rem;
    }

    .about-text .introstat-small {
        font-size: 0.95rem;
    }

    .service-card,
    .product-btn,
    .prop-card {
        padding: 25px 20px;
    }

    .stat-card {
        padding: 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .footer-logo-section {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Tablet Landscape and Medium Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .about-section {
        padding: 0 !important;
    }

    .about-content {
        min-height: auto;
    }

    .about-text {
        min-height: auto;
    }

    .about-text h2 {
        padding: 60px 30px 35px 30px;
        font-size: 3.5rem;
    }

    .teal-box {
        padding: 50px 40px 70px 40px;
    }

    .teal-box p {
        font-size: 1.1rem;
    }

    .teal-box p:first-of-type {
        font-size: 1.15rem;
        padding-left: 20px;
    }

    .teal-box h3 {
        font-size: 1.5rem;
    }

    .teal-box li {
        font-size: 1.05rem;
    }

    .about-text .section-footer {
        padding: 30px 30px;
    }

    .credit-content {
        grid-template-columns: 1fr;
    }

    .proposition-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .company-info {
        grid-column: 1 / -1;
    }
}
