/* ==========================================================================
   Base Styles & Variables — Competitor-matched professional palette
   ========================================================================== */

:root {
    /* Core Palette — vibrant orange + dark slate */
    --navy: #1A1A2E;
    /* deep dark for headlines */
    --navy-mid: #2563EB;
    --blue: #3B82F6;
    /* primary CTA / accent - Simpliaxis-style blue */
    --blue-hover: #2563EB;
    --blue-light: #EFF6FF;

    /* Backgrounds */
    --bg-cream: #F5F7FA;
    /* hero background */
    --bg-white: #FFFFFF;
    --bg-gray: #F7F8FC;
    /* alternate section */
    --bg-dark: #1A1A2E;
    /* footer */

    /* Text */
    --text-dark: #1A1A2E;
    --text-body: #4A4C68;
    --text-light: #858799;

    /* Accents */
    --border: #E8EAF0;
    --success: #16A34A;

    /* Typography — Inter font as requested */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 26, 46, 0.08);
    --shadow-lg: 0 12px 32px rgba(26, 26, 46, 0.10);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.25s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: var(--navy);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-md {
    max-width: 980px;
}

.container-sm {
    max-width: 760px;
}

.section {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }
}

.bg-light {
    background: var(--bg-gray);
}

.bg-cream {
    background: var(--bg-cream);
}

.bg-dark {
    background: var(--bg-dark);
}

/* Typography helpers */
.section-label {
    display: block;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 14px;
}

.section-title {
    font-size: 2.375rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left !important;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
}

.section-sub {
    font-size: 1.0625rem;
    color: var(--text-body);
    max-width: 680px;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.fw-bold {
    font-weight: 700;
}

.text-blue {
    color: var(--blue);
}

.text-navy {
    color: var(--navy);
}

.text-success {
    color: var(--success);
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

/* Grids */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
    line-height: 1.4;
}

.btn svg,
.btn i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.0625rem;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.btn-primary:hover {
    background: var(--blue-hover);
    border-color: var(--blue-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 44, 112, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: #fff;
}

.btn-white-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-white-outline:hover {
    background: #fff;
    color: var(--navy);
}

.btn-secondary {
    background: transparent;
    border-color: var(--border);
    color: var(--navy);
}

.btn-secondary:hover {
    border-color: var(--navy);
    background: var(--bg-gray);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Urgency Banner
   ========================================================================== */
.urgency-banner {
    background: linear-gradient(90deg, #1D4ED8 0%, #3B82F6 50%, #2563EB 100%);
    color: #fff;
    padding: 9px 0;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.urgency-banner .highlight {
    background: rgba(255, 255, 255, 0.18);
    padding: 1px 7px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* ==========================================================================
   Header
   ========================================================================== */
.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 200;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--blue);
    background: var(--blue-light);
}

@media (max-width: 900px) {
    .header-nav { display: none; }
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--navy);
}

.call-btn:hover {
    color: var(--blue);
}

.call-btn svg,
.call-btn i {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .header-contact .btn {
        display: none;
    }

    .banner-content p {
        font-size: 0.75rem;
        line-height: 1.3;
    }

    .logo img {
        height: 32px !important;
    }
}

/* ==========================================================================
   Hero Section — exact competitor layout
   ========================================================================== */
.hero {
    background: var(--bg-cream);
    padding: 72px 0 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: flex-start;
}

/* Left — content */
.hero-content {
    padding-top: 8px;
}

.hero-brand-logo {
    margin-bottom: 24px;
    display: flex;
}



.hero-brand-logo img {
    height: 150px;
    width: auto;
    display: block;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-title {
    font-size: 2.45rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .accent-line {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--blue);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* New Social Proof Row */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.enrolled-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.enrolled-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-body);
}

.rating-badges {
    display: flex;
    align-items: center;
    gap: 16px;
}

.rating-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}

.rating-badge img {
    height: 18px;
    width: auto;
}

/* Hero Checklist */
.hero-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-body);
    font-weight: 500;
}

.checklist-item i {
    color: #4ade80;
    width: 20px;
    height: 20px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-btn {
    padding: 14px 28px;
    font-size: 0.9375rem;
}

/* Social Proof Bar — Below Hero */
.social-proof-bar-wrap {
    background: transparent;
    margin-top: -36px;
    /* Overlap with hero bottom */
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.social-proof-bar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(28, 29, 78, 0.08);
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    justify-content: center;
}

.sp-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-icon img {
    height: 24px;
    width: auto;
}

.users-bg {
    background: #f1f5f9;
    color: var(--navy);
}

.platform-bg {
    background: #f8fafc;
}

.sp-text {
    display: flex;
    flex-direction: column;
}

.sp-val {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 2px;
}

.sp-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

.sp-sep {
    width: 1px;
    height: 50px;
    background: #e2e8f0;
    margin: 0 20px;
}

.stars-gold {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-left: 4px;
}

.stars-green {
    color: #22c55e;
    font-size: 0.9rem;
    margin-left: 4px;
}

@media (max-width: 1024px) {
    .social-proof-bar {
        padding: 20px 24px;
    }

    .sp-sep {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    .social-proof-bar-wrap {
        margin-top: -24px;
        padding-bottom: 32px;
    }

    .social-proof-bar {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
        text-align: center;
    }

    .sp-item {
        flex-direction: column;
        gap: 12px;
    }

    .sp-sep {
        display: none;
    }

    .sp-text {
        align-items: center;
    }
}

.btn-dark {
    background: #111827 !important;
    border-color: #111827 !important;
}

.btn-dark i {
    width: 18px;
    height: 18px;
    margin-right: 6px;
}

.hero-train-team {
    font-size: 0.875rem;
    color: #353535;
}

.hero-train-team a {
    color: #4ade80;
    font-weight: 600;
    text-decoration: underline;
}

/* Right — form card */
.hero-form-wrapper {
    position: sticky;
    top: 190px;
}

.form-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
}

.form-card h3 {
    font-size: 1.375rem;
    color: var(--navy);
    margin-bottom: 26px;
    font-weight: 700;
    text-align: center;
}

.form-card>p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 22px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 14px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group,
.form-row .res-form-group {
    flex: 1;
}

@media (max-width: 480px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 8px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}

.lead-form input::placeholder {
    color: var(--text-light);
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(28, 29, 78, 0.08);
}

.lead-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A4C68' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 1em;
    padding-right: 36px;
}

.form-row {
    display: flex;
    gap: 14px;
}

.form-group.half {
    flex: 1;
}

.lead-form .submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 6px;
    transition: var(--transition);
}

.lead-form .submit-btn:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(30, 44, 112, 0.25);
}

.form-disclaimer {
    margin-top: 14px;
    font-size: 0.78125rem;
    color: var(--text-light);
    display: flex;
    gap: 7px;
    align-items: flex-start;
    line-height: 1.4;
}

.form-disclaimer i,
.form-disclaimer svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    color: var(--success);
    margin-top: 2px;
}

.form-call-alt {
    margin-top: 14px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}

.form-call-alt a {
    color: var(--navy);
    font-weight: 700;
}

.form-call-alt a:hover {
    color: var(--blue);
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form-wrapper {
        position: static;
    }

    .hero-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 12px 0 40px;
    }

    .hero-brand-logo {
        margin-bottom: 16px;
    }


    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 20px;
    }

    .hero-checklist {
        gap: 8px;
        margin-bottom: 24px;
    }

    .checklist-item {
        font-size: 0.875rem;
        gap: 8px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .hero-numbers {
        grid-template-columns: 1fr 1fr;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-card h3 {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-group.half {
        flex: none;
        width: 100%;
    }
}

/* ==========================================================================
   Pain Section
   ========================================================================== */
.pain-section {
    background: var(--bg-white);
}



.pain-content-wrap p {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.75;
    margin-bottom: 18px;
}

.pain-highlight {
    margin-top: 28px;
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 24px;
}

.pain-highlight p {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.55;
}

/* ==========================================================================
   Benefits Section
   ========================================================================== */
.benefits-section {
    background: var(--bg-gray);
}

.benefit-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: var(--transition);
    text-align: left;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(30, 44, 112, 0.2);
}

.benefit-card:nth-child(1) {
    background: #FFF9E6;
}

.benefit-card:nth-child(2) {
    background: #F0FDF4;
}

.benefit-card:nth-child(3) {
    background: #EFF6FF;
}

.benefit-card:nth-child(4) {
    background: var(--blue-light);
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.icon-wrapper i,
.icon-wrapper svg {
    width: 26px;
    height: 26px;
    color: var(--navy);
}

.benefit-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.9rem;
    color: var(--text-body);
}

.benefit-card .source {
    font-size: 0.78125rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* ==========================================================================
   Why Us / Differentiators
   ========================================================================== */
.why-us-section {
    background: var(--bg-white);
}

.differentiator-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

@media (max-width: 768px) {
    .differentiator-grid {
        grid-template-columns: 1fr;
    }
}

.diff-card {
    background: var(--bg-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.diff-card:hover {
    box-shadow: var(--shadow-md);
}

.diff-card .card-num {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 12px;
    opacity: 0.35;
}

.diff-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.65;
}

.diff-card .diff-detail {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-body);
}

/* ==========================================================================
   Included Section (feature grid)
   ========================================================================== */
.included-section {
    background: var(--bg-gray);
}

.feature-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    transition: var(--transition);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 41, 90, 0.18);
}

.feature-box i,
.feature-box svg {
    width: 26px;
    height: 26px;
    color: var(--blue);
    margin-bottom: 12px;
    display: block;
}

.feature-box h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.55;
}

/* ==========================================================================
   Schedule & Table
   ========================================================================== */
.schedule-section {
    background: var(--bg-white);
}

.table-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-responsive {
    overflow-x: auto;
}

.schedule-table,
.salary-table,
.exam-table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th,
.salary-table th,
.exam-table th,
.schedule-table td,
.salary-table td,
.exam-table td {
    padding: 13px 20px;
    text-align: left;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-body);
}

.schedule-table thead th,
.salary-table thead th,
.exam-table thead th {
    background: var(--bg-gray);
    font-weight: 700;
    color: var(--navy);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--border);
}

.schedule-table tr:last-child td,
.salary-table tr:last-child td,
.exam-table tr:last-child td {
    border-bottom: none;
}

.schedule-table tbody tr:hover,
.salary-table tbody tr:hover {
    background: var(--bg-gray);
}

.highlight-col {
    color: var(--blue) !important;
    font-weight: 700;
}

.table-source {
    padding: 10px 20px;
    font-size: 0.78125rem;
    color: var(--text-light);
    border-top: 1px solid var(--border);
}

.mode-badge {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    padding: 2px 9px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.table-footer-note {
    padding: 14px 20px;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-body);
    background: var(--bg-gray);
}

/* ==========================================================================
   Salary / ROI
   ========================================================================== */
.salary-section {
    background: var(--bg-gray);
}

.roi-callout {
    margin-top: 24px;
    background: #FFFBEB;
    border-left: 4px solid #F59E0B;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 18px 24px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.roi-callout .roi-icon {
    flex-shrink: 0;
}

.roi-callout .roi-icon i,
.roi-callout .roi-icon svg {
    width: 22px;
    height: 22px;
    color: #F59E0B;
}

.roi-callout p {
    font-size: 0.9375rem;
    color: var(--navy);
    line-height: 1.6;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card .stars {
    color: #F59E0B;
    font-size: 1rem;
    margin-bottom: 14px;
    letter-spacing: 1px;
}

.testimonial-card .quote {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.testimonial-card .author-role {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 2px;
}

.author-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-bottom: 14px;
}

/* ==========================================================================
   Eligibility / Exam Format
   ========================================================================== */
.eligibility-section {
    background: var(--bg-gray);
}

.eligibility-box {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    margin-bottom: 14px;
}

.eligibility-box h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.eligibility-box p {
    font-size: 0.9375rem;
    color: var(--text-body);
}

.eligibility-cta-box {
    margin-top: 28px;
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
}

.eligibility-cta-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.eligibility-cta-box p {
    font-size: 0.9375rem;
    color: var(--text-body);
    margin-bottom: 16px;
}

.exam-format-section {
    background: var(--bg-white);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
    background: #fff;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    gap: 12px;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--blue);
}

.faq-question i,
.faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 22px 18px;
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background: var(--bg-dark);
    color: #C8CADC;
    padding: 72px 0 0;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.footer-subtitle {
    font-size: 1.0625rem;
    color: #A8AABC;
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 32px;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.footer-contact-line {
    font-size: 1rem;
    color: #C8CADC;
    margin-bottom: 8px;
}

.footer-contact-line a {
    color: var(--blue);
    font-weight: 700;
}

.footer-contact-line a:hover {
    color: var(--blue-hover);
}

.footer-fine-print {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-fine-print p {
    font-size: 0.8125rem;
    color: #6C6E84;
    line-height: 1.6;
    margin-bottom: 4px;
}

/* ==========================================================================
   Misc
   ========================================================================== */
.opacity-75 {
    opacity: 0.75;
}

.text-main {
    color: var(--text-body);
}

/* Section header helper — left aligned */
.section-header-left {
    margin-bottom: 44px;
}

.section-header-left .section-label {
    display: block;
}

.section-header-left .section-sub {
    max-width: 620px;
}

/* ==========================================================================
   Two-column Page Layout (post-hero)
   ========================================================================== */
.page-layout {
    display: flex;
    align-items: flex-start;
    max-width: 1560px;
    margin: 0 auto;
}

.page-main {
    flex: 1;
    min-width: 0;
    /* prevent flex blowout */
}

.page-sidebar {
    width: 284px;
    flex-shrink: 0;
    padding: 80px 16px 80px 12px;
    /* top matches .section padding so card aligns with text content */
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Hide sidebar below 1200px — content fills full width */
@media (max-width: 1200px) {
    .page-sidebar {
        display: none;
    }

    .page-layout {
        display: block;
    }
}

/* ==========================================================================
   Sticky Schedule Card — fixed on right, with section padding to avoid overlap
   ========================================================================== */

/* On wide screens (>1200px), shrink the container so content fills
   the space beside the fixed card with zero gap.
   Card is 276px wide at right:16px = 292px from right edge.
   So we leave 308px right margin on the container. */
/* On wide screens (>1200px), center the container and reserve space for the sticky card on the right.
   This ensures the card stays beside the content without overlapping it. */
@media (min-width: 1200px) {

    .section .container,
    .main-footer .container {
        max-width: 1240px;
        margin: 0 auto;
        padding-right: 320px;
        /* Space for the 276px card + 44px gap */
        position: relative;
    }
}

.sticky-card {
    position: fixed;
    /* Maintain offset from the right edge of the 1240px centered container */
    right: calc(50% - 620px + 20px);
    top: 158px;
    width: 276px;
    z-index: 400;
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* hidden until scrolled past hero */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

@media (max-width: 1240px) {
    .sticky-card {
        right: 16px;
    }
}

.sticky-card.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(0);
}


.scard-block {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    box-shadow: var(--shadow-lg);
}

.scard-block-secondary {
    background: var(--bg-gray);
}

/* Title row */
.scard-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.scard-title i,
.scard-title svg {
    width: 16px;
    height: 16px;
    color: var(--blue);
    flex-shrink: 0;
}

/* Batch card top row */
.scard-batch {
    margin-bottom: 14px;
}

.scard-batch-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.scard-mode-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #e8f9ee;
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    border: 1px solid #bbf7d0;
}

.scard-mode-tag i,
.scard-mode-tag svg {
    width: 12px;
    height: 12px;
}

.scard-discount-tag {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.scard-dates {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.scard-time,
.scard-location,
.scard-trainer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78125rem;
    color: var(--text-body);
    margin-bottom: 4px;
    line-height: 1.4;
}

.scard-time i,
.scard-time svg,
.scard-location i,
.scard-location svg,
.scard-trainer i,
.scard-trainer svg {
    width: 12px;
    height: 12px;
    color: var(--text-light);
    flex-shrink: 0;
}

/* Pricing */
.scard-pricing {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.scard-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.scard-emi {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* CTAs */
.scard-enroll-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--navy);
    color: #fff;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.scard-enroll-btn:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(30, 44, 112, 0.25);
}

.scard-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--blue);
    text-align: center;
    width: 100%;
    transition: var(--transition);
}

.scard-view-all i,
.scard-view-all svg {
    width: 13px;
    height: 13px;
}

.scard-view-all:hover {
    color: var(--blue-hover);
}

/* Secondary (brochure) block */
.scard-desc {
    font-size: 0.8125rem;
    color: var(--text-body);
    margin-bottom: 12px;
    line-height: 1.5;
}

.scard-brochure-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    background: transparent;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.875rem;
    width: 100%;
    transition: var(--transition);
}

.scard-brochure-btn:hover {
    background: var(--navy);
    color: #fff;
}

.scard-brochure-btn i,
.scard-brochure-btn svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 1100px) {
    .sticky-card {
        display: none;
    }
}

/* Section header helper bottom */
.opacity-75 {
    opacity: 0.75;
}

.text-main {
    color: var(--text-body);
}

.section-header-left {
    margin-bottom: 44px;
}

.section-header-left .section-label {
    display: block;
}

.section-header-left .section-sub {
    max-width: 620px;
}

/* ==========================================================================
   Sticky Sliding Form Tab (right edge tab)
   ========================================================================== */
.sticky-form {
    position: fixed;
    right: 0;
    bottom: 30%;
    transform: translateX(calc(100% - 36px));
    z-index: 499;
    display: flex;
    flex-direction: row-reverse;
    align-items: stretch;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.sticky-form.visible {
    opacity: 1;
    pointer-events: all;
}

.sticky-form.open {
    transform: translateX(0);
}

/* Vertical tab */
.sticky-form-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--blue);
    border-radius: 8px 0 0 8px;
    padding: 10px;
    min-height: 110px;
    box-shadow: -3px 3px 12px rgba(30, 44, 112, 0.25);
    flex-shrink: 0;
    order: 2;
}

.sticky-form-tab {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: #fff;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    white-space: nowrap;
    text-transform: uppercase;
}

/* Form body */
.sticky-form-body {
    background: var(--bg-white);
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: 12px 0 0 12px;
    box-shadow: var(--shadow-lg);
    width: 260px;
    padding: 18px 16px;
    flex-shrink: 0;
    order: 1;
}

.sticky-form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sticky-form-header h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}

.sticky-form-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.sticky-form-close:hover {
    color: var(--blue);
}

.sticky-form-close i,
.sticky-form-close svg {
    width: 15px;
    height: 15px;
}

.sticky-form-body .form-group {
    margin-bottom: 10px;
}

.sticky-form-body .lead-form input,
.sticky-form-body .lead-form select {
    padding: 9px 12px;
    font-size: 0.875rem;
}

.sticky-form-body .submit-btn {
    padding: 10px;
    font-size: 0.875rem;
}

/* Removed display: none for mobile as requested */
@media (max-width: 768px) {
    .sticky-form-toggle {
        min-height: 90px;
        padding: 0 8px;
    }

    .sticky-form-tab {
        font-size: 0.6875rem;
    }
}

/* ==========================================================================
   Modal Popup
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.85);
    /* var(--navy) with transparency */
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--bg-white);
    width: 100%;
    max-width: 440px;
    border-radius: var(--radius-lg);
    position: relative;
    padding: 40px 32px 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--bg-gray);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--blue);
    color: #fff;
    transform: rotate(90deg);
}

.modal-close i,
.modal-close svg {
    width: 18px;
    height: 18px;
}

.modal-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: center;
}

.modal-form-wrapper .submit-btn {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 40px 20px 24px;
    }

    .modal-form-wrapper h3 {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   Learners' Success (Redesigned Testimonials)
   ========================================================================== */

.testimonials-section {
    background: #fff;
}

.testimonial-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-btn img {
    width: 16px;
    height: 16px;
}

.filter-btn.active {
    background: #e1f0ff;
    border-color: #007bff;
    color: #007bff;
}

.testimonial-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.t-card {
    background: #fff;
    border: 1px solid #e0e6ed;
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease;
}

.t-card:hover {
    transform: translateY(-5px);
}

.t-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.t-stars {
    color: #ffc107;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.t-quote-icon {
    color: #007bff;
    opacity: 0.2;
    width: 32px;
    height: 32px;
}

.t-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.t-text {
    font-size: 0.9375rem;
    color: #5e6d82;
    line-height: 1.6;
    margin-bottom: 24px;
}

.read-more {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px dashed #e0e6ed;
}

.t-avatar {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.t-info {
    display: flex;
    flex-direction: column;
}

.t-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9375rem;
}

.t-role {
    font-size: 0.8125rem;
    color: #8492a6;
}

/* Social Proof Bar Premium */
.social-proof-bar-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 24px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
    .testimonial-filters {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-proof-bar-premium {
        gap: 24px;
        padding: 32px 20px;
        text-align: center;
    }
}

.sp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.sp-logo {
    height: 24px;
}

/* Testimonial Slider Styling */
.testimonial-slider-overview {
    position: relative;
    padding: 20px 0;
}

.t-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.t-slider-window {
    overflow: hidden;
    flex: 1;
    /* Allow it to take up all space between arrows */
    min-width: 0;
}

.t-slider-track {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.t-slide {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
    min-width: calc(50% - 12px);
}

.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e0e6ed;
    background: #fff;
    color: #1A1A2E;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.slider-arrow:hover {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
    transform: translateY(-2px);
}

.slider-arrow i {
    width: 24px;
    height: 24px;
}

/* Response: Slider items per view */
@media (max-width: 1024px) {
    .t-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .t-slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
    }

    .t-slider-window {
        padding: 0 5px;
    }

    .t-card {
        padding: 24px 20px;
    }

    .t-slider-container {
        gap: 0;
        padding: 0;
    }

    .slider-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 15;
    }

    .slider-arrow.prev {
        left: -10px;
    }

    .slider-arrow.next {
        right: -10px;
    }
}

.t-slide.hidden {
    display: none;
}

.filter-btn:hover {
    background: #f8fbff;
    border-color: #007bff;
    color: #007bff;
}

.filter-btn img {
    width: 16px;
    height: 16px;
}

.filter-btn.active {
    background: #e1f0ff;
    border-color: #007bff;
    color: #007bff;
}

.t-platform-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.t-platform-icon.linkedin {
    color: #0077b5;
    opacity: 1;
}

.sp-icon.ln {
    color: #0077b5;
}

.sp-rating {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--navy);
}

/* ==========================================================================
   Questions CTA Banner
   ========================================================================== */

.questions-cta-section {
    padding: 40px 0;
}

.questions-banner {
    display: flex;
    align-items: center;
    background: #003366;
    border-radius: 24px;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.banner-expert {
    width: 140px;
    margin-right: 40px;
    align-self: flex-end;
}

.banner-expert img {
    width: 100%;
    display: block;
    margin-bottom: -10px;
    /* Slight overflow at bottom */
}

.banner-content {
    flex: 1;
    color: #fff;
}

.banner-label {
    display: block;
    font-size: 0.9375rem;
    color: #89b8ff;
    margin-bottom: 8px;
}

.banner-title {
    font-size: 1.75rem;
    font-weight: 800;
    max-width: 500px;
    line-height: 1.3;
    color: #fff;
}

.banner-action {
    margin-left: 40px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ff3d57;
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 61, 87, 0.3);
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 61, 87, 0.4);
}

@media (max-width: 992px) {
    .questions-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .banner-expert {
        margin: 0 auto 20px;
    }

    .banner-content {
        padding: 0;
    }

    .banner-action {
        margin: 0;
    }

    .banner-title {
        margin: 0 auto;
    }
}

/* ==========================================================================
   Delayed Resource Popup
   ========================================================================== */

.resource-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
}

.resource-modal.active {
    display: flex;
}

.resource-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 18, 41, 0.85);
    backdrop-filter: blur(8px);
}

.resource-modal-content {
    background: #fff;
    width: 95%;
    max-width: 800px;
    border-radius: 24px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.25);
}

.resource-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f0f4f8;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #4a5568;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    transition: all 0.2s ease;
}

.resource-close:hover {
    background: #edf2f7;
    color: #ff3d57;
    transform: rotate(90deg);
}

.resource-flex {
    display: flex;
    align-items: stretch;
}

.resource-image {
    flex: 0 0 42%;
    background: #f7fafc;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.resource-info {
    flex: 1;
    padding: 60px 50px;
    background: #fff;
}

.res-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #e6fffa;
    color: #2c7a7b;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 6px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.resource-info h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 16px;
    line-height: 1.2;
}

.resource-info p {
    color: #4a5568;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.res-form-group {
    margin-bottom: 15px;
}

.res-form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.res-form-group input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    outline: none;
}

.res-submit-btn {
    width: 100%;
    background: #ff3d57;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 61, 87, 0.3);
}

.res-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 61, 87, 0.4);
}

.res-privacy {
    text-align: center;
    font-size: 0.75rem !important;
    color: #a0aec0 !important;
    margin-top: 20px;
    margin-bottom: 0 !important;
}

@media (max-width: 768px) {
    .resource-flex {
        flex-direction: column;
    }

    .resource-image {
        padding: 40px;
    }

    .resource-info {
        padding: 40px 30px;
    }

    .resource-info h3 {
        font-size: 1.5rem;
    }
}


/* ===== NEW SECTIONS STYLES ===== */

/* Credentials Section */
.credentials-section {
    background: radial-gradient(circle at top right, #f8fafc 0%, #f1f5f9 100%);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: flex-start;
}

.credentials-content .section-label {
    color: var(--blue);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: inline-block;
}

.credentials-content .section-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.1;
}

.credentials-content .section-desc {
    font-size: 1.0625rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 540px;
}

.credentials-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cred-feat-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.cred-feat-item:hover {
    transform: translateX(12px);
    border-color: var(--blue);
    box-shadow: 0 12px 30px rgba(30, 44, 112, 0.08);
}

.cred-icon {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.cred-feat-item:hover .cred-icon {
    background: var(--blue);
    color: #fff;
    transform: scale(1.1) rotate(8deg);
}

.cred-text h4 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.cred-text p {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.6;
}

.credentials-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Accent glow behind certificate - removed, moved to wrapper to follow sticky */

.cert-mockup-wrap {
    position: sticky;
    top: 120px;
    background: #fff;
    padding: 16px;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(28, 29, 78, 0.15);
    transition: all 0.4s ease;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.4);
    width: 100%;
    max-width: 580px;
}

.cert-mockup-wrap:hover {
    transform: rotateY(0deg) rotateX(0deg) rotateZ(0deg) scale(1.03);
    box-shadow: 0 50px 100px rgba(28, 29, 78, 0.2);
}

.cert-mockup-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1024px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .credentials-content {
        text-align: center;
    }

    .credentials-content .section-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .cred-feat-item {
        text-align: left;
    }

    .cert-mockup-wrap {
        transform: rotateY(-10deg) rotateX(8deg);
    }
}

@media (max-width: 640px) {
    .credentials-section {
        padding: 60px 0;
    }

    .credentials-content .section-title {
        font-size: 2rem;
    }

    .cred-feat-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .cred-feat-item:hover {
        transform: translateY(-8px);
    }
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.p-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.p-card.featured {
    border: 1.5px solid var(--blue);
    box-shadow: var(--shadow-lg);
}

.p-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: var(--blue);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.p-header {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
}

.p-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    flex-shrink: 0;
}

.p-icon i {
    width: 24px;
    height: 24px;
}

.p-header h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.p-header p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.p-features {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
    padding: 0;
}

.p-features li {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9375rem;
    color: var(--text-body);
}

.p-features li i {
    color: var(--success);
    width: 18px;
    height: 18px;
}

.p-batches {
    margin-bottom: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

.p-batches h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.batch-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.batch-tag {
    font-size: 0.875rem;
    background: var(--bg-gray);
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--navy);
    font-weight: 500;
}

.p-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.p-price-wrap .save-tag {
    color: var(--success);
    font-weight: 700;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 4px;
}

.p-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.p-curr {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
}

.p-val {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}

.p-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 6px;
}

.p-emi {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 4px;
}

.p-btn {
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.p-btn-outline {
    border: 2px solid var(--border);
    color: var(--navy);
    margin-top: auto;
}

.p-btn-outline:hover {
    border-color: var(--navy);
    background: var(--bg-gray);
}

.p-btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 8px 16px rgba(30, 44, 112, 0.2);
}

.p-btn-primary:hover {
    background: var(--blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(30, 44, 112, 0.3);
}

.p-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy-mid);
}

/* Enterprise Section */
.enterprise-section {
    padding: 100px 0;
    background: #f8fafc;
}

.ent-header {
    max-width: 800px;
}

.ent-cta-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    flex-wrap: wrap;
    gap: 20px;
}

.ent-btn {
    background: var(--blue);
    color: #fff;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(30, 44, 112, 0.2);
}

.ent-discount {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
}

.logo-wall {
    margin-top: 60px;
    opacity: 0.6;
}

.logo-wall img {
    width: 100%;
    height: auto;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.logo-wall:hover img {
    filter: grayscale(0);
}

.trusted-badge-wrap {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.trusted-badge {
    background: #dbeafe;
    color: #1d4ed8;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1024px) {

    .credentials-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .credentials-visual {
        order: -1;
    }
}

/* Pain Highlight - Corrected */
.pain-highlight {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    padding: 24px 32px;
    border-radius: 4px;
    margin-top: 40px;
}

.pain-highlight p {
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    font-size: 1.1rem;
}

/* Training Gallery Slider Section */
.gallery-section {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.gallery-slider-overview {
    position: relative;
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 0 50px;
}

.gallery-window {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 24px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.gallery-item {
    flex: 0 0 calc((100% - 48px) / 3);
    /* Default 3 items */
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* Gallery Arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--navy);
}

.gallery-arrow:hover {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}

.gallery-arrow.prev {
    left: 0;
}

.gallery-arrow.next {
    right: 0;
}

@media (max-width: 1024px) {
    .gallery-item {
        flex: 0 0 calc((100% - 24px) / 2);
        /* 2 items */
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0;
    }

    .gallery-item {
        flex: 0 0 100%;
        /* 1 item */
    }

    .gallery-slider-overview {
        padding: 0 40px;
    }
}