@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
/* =========================================
   GENERAL STYLES & DESIGN TOKENS
========================================= */

:root {
    /* Design Tokens */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;

    --accent-primary: #191BC5;
    --accent-primary-hover: #0046d3;
    --accent-light: #eff6ff;

    --text-dark: #0f172a;
    --text-main: #334155;
    --text-muted: #64748b;

    --border-subtle: rgba(15, 23, 42, 0.06);
    --border-strong: rgba(15, 23, 42, 0.12);

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    --shadow-float: 0 20px 40px -10px rgba(2, 87, 250, 0.08), 0 10px 20px rgba(0, 0, 0, 0.03);
    --shadow-glow: 0 15px 30px rgba(2, 87, 250, 0.2);

    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 100px;

    /* Status Colors */
    --status-pos: #10B981;
    --status-neg: #EF4444;
}

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

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary) !important;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =========================================
   TYPOGRAPHY SYSTEM
========================================= */

/* Web (Desktop) Default Typography */
h1,
.h1 {
    font-size: 3.5rem;
    /* 56px */
    line-height: 150%;
    font-weight: 700;
}

h2,
.h2 {
    font-size: 2.5rem;
    /* 40px */
    line-height: 150%;
    font-weight: 700;
}

h3,
.h3 {
    font-size: 1.5rem;
    /* 24px */
    line-height: 150%;
    font-weight: 700;
}

h4,
.h4 {
    font-size: 1.125rem;
    /* 18px */
    line-height: 150%;
    font-weight: 700;
}

.body-1 {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.7;
}

.body-2,
p {
    font-size: 1rem;
    /* 16px */
    line-height: 1.7;
}

.cta-text {
    font-size: 1rem;
    /* 16px */
    line-height: normal;
}

/* Mobile Typography Scale */
@media (max-width: 767px) {

    h1,
    .h1 {
        font-size: 2.25rem;
        /* 36px */
    }

    h2,
    .h2 {
        font-size: 1.5rem;
        /* 24px */
    }

    h3,
    .h3 {
        font-size: 1.125rem;
        /* 18px */
    }

    h4,
    .h4 {
        font-size: 1rem;
        /* 16px */
    }

    .body-1 {
        font-size: 0.875rem;
        /* 14px */
    }

    .body-2,
    p {
        font-size: 1rem;
        /* 16px */
    }

    .cta-text,
    .cta-text1 {
        font-size: 0.875rem;
        /* 14px */
        line-height: normal;
    }

    .cta-text2 {
        font-size: 0.8125rem;
        /* 13px */
        line-height: normal;
    }
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    /* padding: 0 24px; */
}

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

section {
    padding: 60px 0;

    @media (max-width: 768px) {
        padding: 30px 0 !important;
    }
}

/* =========================================
   BUTTONS
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-blue {
    background: var(--Primary-Gradient, linear-gradient(93deg, #0257FA 2.87%, #191BC5 96.99%)) !important;
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 32px;
    font-size: 1.1rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 16px 28px;
        font-size: 14px;
    }
}

.btn-white {
    background: white;
    color: var(--accent-primary);
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--accent-primary-hover);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* =========================================
   BADGES & HERO DECORATIONS
========================================= */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #ffffff, var(--bg-secondary));
    color: var(--accent-primary);
    border: 1px solid rgba(2, 87, 250, 0.15);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 800;
    margin: 0 auto 0px;
    box-shadow: 0 4px 12px rgba(2, 87, 250, 0.08);
    text-transform: uppercase;
    letter-spacing: 1.5px;

    @media (max-width: 769px) {
        font-size: 0.65rem;
    }
}

.badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-primary);
    animation: pulse-dot 2s infinite;

    @media (max-width: 769px) {
        display: none;
    }
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(2, 87, 250, 0.4);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(2, 87, 250, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(2, 87, 250, 0);
    }
}

.subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin: 0 auto 0px;
    line-height: 1.5;

    @media (max-width: 769px) {
        font-size: 14px;
        margin-bottom: 0;
    }
}

.subtitle {
    margin: 0 auto 0px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;

    @media (max-width: 768px) {
        gap: 8px;
    }
}

.stat-item strong {
    font-size: 2.2rem;
    color: transparent;
    background: linear-gradient(135deg, var(--accent-primary), #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;

    @media (max-width: 768px) {
        font-size: 2rem;
    }
}

.stat-item span {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    width: 100%;
    margin: 0 auto;
    order: 3;
    /* Mobile: between Title and Subtitle */
}

@media (min-width: 769px) {
    .hero-image-wrapper {
        order: 6;
        /* Desktop: At the bottom */
    }
}

@media (max-width: 768px) {
    .hero-image-wrapper {
        margin-bottom: 8px;
    }
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glow);
}

/* =========================================
   COMMON COMPONENTS (Header, Accordion)
========================================= */
.section-header {
    text-align: center;
    max-width: 940px;
    margin: 0 auto 50px;
}

.section-header h2 {
    margin-bottom: 12px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
}

@media (max-width: 768px) {
    .section-header {
        text-align: start;
        margin: 0 auto 32px;
    }

    .section-header p {
        font-size: 13px;
    }
}

.content-container {
    max-width: 800px;
    margin: 0 auto;
}

.content-container h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.4;

    /* @media (max-width: 768px) {
        font-size: 24px;
    } */
}

.content-container p {
    color: var(--text-main);
    margin-bottom: 20px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Capability / Feature Content */
.capability-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.capability-content p {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.7;
}

/* Accordion */
.accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    background: transparent;
    border-bottom: 1px solid var(--border-strong);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 16px 8px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 800;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .accordion-header {
        font-size: 15px;
        line-height: 1.5;
        padding: 20px 8px;
    }
}

.accordion-header:hover {
    color: var(--accent-primary);
}

.accordion-header::after {
    content: '\f067';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--accent-primary);
    transition: transform 0.4s ease;

    @media (max-width: 768px) {
        font-size: 15px;
    }
}

.accordion-header.active::after {
    content: '\f068';
}

.accordion-content {
    padding: 0 8px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.accordion-header.active+.accordion-content {
    max-height: 2000px;
    opacity: 1;
}

.accordion-content p {
    color: #535353;

    @media (max-width: 768px) {
        font-size: 13px;
    }
}

/* =========================================
   CTA BANNER
========================================= */
.cta-banner-section {
    padding: 60px 0;
}

.cta-banner {
    background: linear-gradient(135deg, var(--accent-primary), #1e3a8a);
    border-radius: 40px;
    padding: 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .cta-banner {
        padding: 32px;
    }
}

.cta-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: white;
    color: var(--accent-primary);
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 32px;
    letter-spacing: -1px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    color: white;
}

.cta-banner p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column !important;
        width: 100%;
        gap: 16px;
    }

    .cta-buttons .btn {
        width: 100% !important;
        text-align: center;
        padding: 16px 28px;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .cta-banner p {
        font-size: 13px;
        font-weight: 400;
        line-height: 1.7;
    }
}