/* ============================================================
   WEALTH FORGE CAPITAL — Premium Trading Education Landing Page
   Theme: Navy Blue (#0B1C3F) | Fonts: Syne + DM Sans
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
    --navy: #0B1C3F;
    --navy-mid: #112347;
    --navy-light: #162D58;
    --navy-dark: #060F22;
    --accent: #1A9BF0;
    --accent-glow: #1A9BF055;
    --gold: #F5A623;
    --gold-light: #FFC85E;
    --green: #22C55E;
    --teal: #0EA5E9;
    --purple: #8B5CF6;
    --orange: #F97316;
    --white: #FFFFFF;
    --off-white: #F0F4FF;
    --muted: #94A3C2;
    --border: rgba(255, 255, 255, 0.08);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.07);
    --grad-hero: linear-gradient(135deg, #0B1C3F 0%, #1a3a6e 100%);
    --grad-accent: linear-gradient(135deg, #1A9BF0, #0B7FCC);
    --grad-gold: linear-gradient(135deg, #F5A623, #FFC85E);
    --grad-text: linear-gradient(135deg, #1A9BF0, #7DD3FC);
    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 0 32px rgba(26, 155, 240, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* --font-display: 'Syne', sans-serif; */
    --font-body: 'DM Sans', sans-serif;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    /* font-family: "Poppins", sans-serif; */
    font-family: var(--font-body);
    background-color: var(--navy-dark);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

button {
    font-family: var(--font-body);
    border: none;
    background: none;
    cursor: pointer;
}

/* ── Container ──────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
}

/* ── Section Padding ────────────────────────────────────────── */
.section-pad {
    padding-block: clamp(4rem, 8vw, 7rem);
}

/* ── Utility: Section Header ────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(26, 155, 240, 0.1);
    border: 1px solid rgba(26, 155, 240, 0.25);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.tag-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--white);
}

.section-subtext {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--muted);
    max-width: 540px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.section-desc {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* ── Text Gradient ──────────────────────────────────────────── */
.text-gradient {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--grad-accent);
    color: var(--white);
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(26, 155, 240, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(26, 155, 240, 0.55);
    filter: brightness(1.1);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-primary-cta {
    background: var(--grad-accent);
    color: var(--white);
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
    font-weight: 600;
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.btn-outline-nav {
    color: var(--muted);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
}

.btn-outline-nav:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-primary-nav {
    background: var(--grad-accent);
    color: var(--white);
    padding: 0.55rem 1.5rem;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 14px rgba(26, 155, 240, 0.3);
}

.btn-primary-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(26, 155, 240, 0.45);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-block: 1rem;
    transition: var(--transition-slow);
}

.navbar-wrapper.scrolled {
    background: rgba(6, 15, 34, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding-block: 0.7rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.logojp90 {
    width: 300px;
    /* background: #fff; */
    border-radius: 16px;
    padding: 0px 6px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(26, 155, 240, 0.35);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: rgba(6, 15, 34, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
    padding: 1.5rem clamp(1rem, 5vw, 2rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.mobile-menu.open {
    display: flex;
    max-height: 600px;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-link {
    font-size: 1rem;
    font-weight: 500;
    color: var(--muted);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-cta {
    margin-top: 1rem;
    text-align: center;
    justify-content: center;
}

/* ── HERO SECTION ───────────────────────────────────────────── */
.hero-section {
    position: relative;
    height: 60svh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-1 {
    background: linear-gradient(135deg, #06122A 0%, #0B2158 50%, #061828 100%);
}

.slide-2 {
    background: linear-gradient(135deg, #061828 0%, #0A2B50 50%, #041520 100%);
}

.slide-3 {
    background: linear-gradient(135deg, #0A0E24 0%, #111E4F 50%, #060F25 100%);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 70% 50%, rgba(26, 155, 240, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 60% at 20% 80%, rgba(245, 166, 35, 0.05) 0%, transparent 60%);
}

.slide-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(var(--accent) 1px, transparent 1px),
        linear-gradient(90deg, var(--accent) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1rem, 5vw, 2rem);
    padding-top: 5rem;
    width: 100%;
    /* max-width: 700px; */
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.25);
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-highlight {
    background: var(--grad-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.stat-item strong {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
}

.stat-item span {
    font-size: 0.75rem;
    color: var(--muted);
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Swiper Hero Overrides */
.hero-swiper .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.7s ease !important;
}

.hero-swiper .swiper-slide-active {
    opacity: 1 !important;
}

.hero-pagination {
    bottom: 2rem !important;
}

.hero-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 48px;
}

.hero-btn-prev,
.hero-btn-next {
    width: 44px !important;
    height: 44px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px);
    color: var(--white) !important;
    transition: var(--transition) !important;
}

.hero-btn-prev:hover,
.hero-btn-next:hover {
    background: rgba(26, 155, 240, 0.4) !important;
    border-color: var(--accent) !important;
}

.hero-btn-prev::after,
.hero-btn-next::after {
    font-size: 0.875rem !important;
}

.hero-btn-prev {
    left: 1.5rem !important;
}

.hero-btn-next {
    right: 1.5rem !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    right: 50%;
    transform: translateX(50%);
    z-index: 5;
    opacity: 0.4;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.8;
    }
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding-block: 1.2rem;
}

.trust-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--muted);
    white-space: nowrap;
}

.trust-item i {
    color: var(--accent);
    font-size: 1rem;
}

.trust-item:hover {
    color: var(--white);
    transition: var(--transition);
}

/* ── ABOUT SECTION ──────────────────────────────────────────── */
.about-section {
    background: var(--navy-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.img-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 15, 34, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.img-badge i {
    color: var(--accent);
    font-size: 1.2rem;
}

.img-badge:hover {
    background: var(--accent);
    transform: translateX(-50%) scale(1.05);
}

.visual-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    backdrop-filter: blur(16px);
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.primary-card {
    background: rgba(10, 33, 80, 0.9);
    top: -1.5rem;
    right: -1.5rem;
}

.accent-card {
    background: rgba(26, 155, 240, 0.15);
    bottom: 2rem;
    left: -1.5rem;
}

.visual-icon {
    font-size: 1.5rem;
    color: var(--accent);
}

.accent-icon {
    color: var(--gold);
}

.visual-text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
}

.visual-text span {
    font-size: 0.75rem;
    color: var(--muted);
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(26, 155, 240, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.9rem;
    margin-top: 0.1rem;
}

.feature-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ── COURSES SECTION ────────────────────────────────────────── */
.courses-section {
    background: var(--navy);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 1.5rem;
}

.course-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.course-card:hover {
    border-color: rgba(26, 155, 240, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-card-featured {
    background: linear-gradient(135deg, rgba(26, 155, 240, 0.08) 0%, rgba(26, 155, 240, 0.02) 100%);
    border-color: rgba(26, 155, 240, 0.3);
}

.course-card-featured::before {
    transform: scaleX(1);
}

.featured-ribbon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--grad-accent);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
}

.course-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.primary-bg {
    background: var(--grad-accent);
    box-shadow: 0 4px 14px rgba(26, 155, 240, 0.35);
}

.accent-bg {
    background: linear-gradient(135deg, #1A9BF0, #0B7FCC);
    box-shadow: 0 4px 14px rgba(26, 155, 240, 0.35);
}

.gold-bg {
    background: var(--grad-gold);
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.teal-bg {
    background: linear-gradient(135deg, #0EA5E9, #0284C7);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.purple-bg {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    box-shadow: 0 4px 14px rgba(139, 92, 246, 0.35);
}

.orange-bg {
    background: linear-gradient(135deg, #F97316, #EA580C);
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.course-tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.course-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.course-desc {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.course-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.775rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.course-meta i {
    color: var(--accent);
    margin-right: 0.25rem;
}

.course-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    transition: var(--transition);
}

.course-link i {
    transition: transform 0.25s ease;
}

.course-link:hover {
    color: var(--white);
}

.course-link:hover i {
    transform: translateX(4px);
}

/* ── STATS SECTION ──────────────────────────────────────────── */
.stats-section {
    position: relative;
    background: var(--navy-light);
    padding-block: clamp(3.5rem, 6vw, 5rem);
    overflow: hidden;
}

.stats-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 100% at 50% 50%, rgba(26, 155, 240, 0.08) 0%, transparent 70%);
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-block {
    padding: 1rem;
}

.stat-icon {
    font-size: 1.75rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--accent);
    display: inline;
    margin-left: 0.1rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 0.5rem;
}

/* ── PRICING SECTION ────────────────────────────────────────── */
.pricing-section {
    background: var(--navy-dark);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.75rem;
}

.toggle-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted);
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--white);
}

.save-badge {
    background: rgba(34, 197, 94, 0.15);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.25);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
    margin-left: 0.4rem;
}

.toggle-switch {
    position: relative;
}

.toggle-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    display: block;
    width: 48px;
    height: 26px;
    background: var(--navy-light);
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.toggle-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: var(--white);
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: var(--transition);
}

.toggle-switch input:checked+.toggle-slider {
    background: var(--accent);
    border-color: var(--accent);
}

.toggle-switch input:checked+.toggle-slider::after {
    transform: translateX(22px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.pricing-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 1rem;
    transition: var(--transition-slow);
    overflow: hidden;
    min-height: 635px;
}

.pricing-card:hover {
    border-color: rgba(26, 155, 240, 0.3);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    background: linear-gradient(160deg, rgba(26, 155, 240, 0.12) 0%, rgba(26, 155, 240, 0.03) 100%);
    border-color: rgba(26, 155, 240, 0.4);
    box-shadow: 0 0 60px rgba(26, 155, 240, 0.15);
    transform: scale(1.03);
}

.pricing-card-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.popular-ribbon {
    position: absolute;
    top: 0;
    left: 100%;
    transform: translateX(-50%);
    background: var(--grad-accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.5rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

.plan-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.plan-badge-basic {
    background: rgba(34, 197, 94, 0.12);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.plan-badge-pro {
    background: rgba(26, 155, 240, 0.12);
    color: var(--accent);
    border: 1px solid rgba(26, 155, 240, 0.25);
}

.plan-badge-advanced {
    background: rgba(245, 166, 35, 0.12);
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, 0.25);
}

.plan-header {
    margin-bottom: 1.75rem;
}

.plan-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.plan-icon-basic {
    background: linear-gradient(135deg, #22C55E, #16A34A);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.plan-icon-pro {
    background: var(--grad-accent);
    box-shadow: 0 4px 14px rgba(26, 155, 240, 0.4);
}

.plan-icon-advanced {
    background: var(--gold-light);
    box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
}

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}

.plan-tagline {
    font-size: 0.825rem;
    color: var(--muted);
    margin-bottom: 1.25rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.4rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.price-amount {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--white);
}

.price-period {
    font-size: 0.875rem;
    color: var(--muted);
    margin-left: 0.25rem;
}

.price-annual-note {
    font-size: 0.75rem;
    color: var(--muted);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-block: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.feature-yes {
    color: rgba(255, 255, 255, 0.85);
}

.feature-yes i {
    color: var(--green);
    flex-shrink: 0;
}

.feature-no {
    color: var(--muted);
}

.feature-no i {
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.plan-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    margin-bottom: 1rem;
}

.plan-btn-basic {
    background: rgba(34, 197, 94, 0.1);
    color: var(--green);
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.plan-btn-basic:hover {
    background: var(--green);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.plan-btn-pro {
    background: var(--grad-accent);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 155, 240, 0.35);
}

.plan-btn-pro:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 8px 30px rgba(26, 155, 240, 0.5);
}

.plan-btn-advanced {
    background: rgba(245, 166, 35, 0.1);
    color: var(--gold);
    border: 1px solid rgba(245, 166, 35, 0.25);
}

.plan-btn-advanced:hover {
    background: var(--gold);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

.plan-guarantee {
    font-size: 0.775rem;
    color: var(--muted);
    text-align: center;
}

.plan-guarantee i {
    color: var(--green);
    margin-right: 0.3rem;
}

.pricing-footer {
    margin-top: 3rem;
    text-align: center;
}

.pricing-footer-text {
    font-size: 0.825rem;
    color: var(--muted);
}

.pricing-footer-text i {
    margin-right: 0.3rem;
    color: var(--accent);
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-section {
    background: var(--navy);
}

.testimonials-swiper {
    padding-bottom: 3.5rem !important;
    overflow: visible;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-xl);
    padding: clamp(1.5rem, 3vw, 2.25rem);
    height: 100%;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card:hover {
    border-color: rgba(26, 155, 240, 0.25);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-quote {
    font-size: clamp(0.9rem, 2vw, 0.975rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-info strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
}

.author-info span {
    font-size: 0.775rem;
    color: var(--muted);
}

.author-profit {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
    color: var(--green);
    white-space: nowrap;
}

.testimonials-pagination {
    bottom: 0 !important;
}

.testimonials-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.testimonials-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
}

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
    position: relative;
    background:
        linear-gradient(135deg, #0A1F50 0%, #061828 50%, #0A2B40 100%);
    padding-block: clamp(4rem, 8vw, 7rem);
    overflow: hidden;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 80% at 50% 50%, rgba(26, 155, 240, 0.1) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A9BF0' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    max-width: 700px;
    margin-inline: auto;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-block: 1rem 1.25rem;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    margin-inline: auto;
    margin-bottom: 2.5rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-reassurance span {
    font-size: 0.8rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.cta-reassurance i {
    color: var(--accent);
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-section {
    background: var(--navy-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(2.5rem, 6vw, 5rem);
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: rgba(26, 155, 240, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.contact-detail-item a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-detail-item a:hover {
    color: var(--accent);
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.825rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
    outline: none;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(26, 155, 240, 0.5);
    background: rgba(26, 155, 240, 0.05);
    box-shadow: 0 0 0 3px rgba(26, 155, 240, 0.1);
}

.form-group select option {
    background: var(--navy-dark);
    color: var(--white);
}

.form-submit {
    width: 100%;
    justify-content: center;
    padding: 0.9rem;
    font-size: 1rem;
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
}

.form-privacy i {
    color: var(--green);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
    background: var(--navy-dark);
    border-top: 1px solid var(--border);
}

.footer-top {
    padding-block: clamp(3.5rem, 6vw, 5rem);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links-col a {
    font-size: 0.875rem;
    color: var(--muted);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-block: 1.5rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(148, 163, 194, 0.6);
    max-width: 500px;
    text-align: right;
}

.footer-disclaimer a {
    color: var(--accent);
}

/* ── SCROLL TO TOP ──────────────────────────────────────────── */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--grad-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26, 155, 240, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
    font-size: 0.9rem;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(26, 155, 240, 0.55);
}

/* ── AOS OVERRIDES ──────────────────────────────────────────── */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* Tablet: 1024px */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-visual {
        order: -1;
        max-width: 560px;
        margin-inline: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-inline: auto;
    }

    .pricing-card-featured {
        transform: none;
    }

    .pricing-card-featured:hover {
        transform: translateY(-6px);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

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

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

/* Tablet: 768px */
@media (max-width: 768px) {

    .navbar-wrapper {
        position: static;
    }

    .logojp90 {
        width: 240px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

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

    .hero-content {
        text-align: left;
        padding-top: 0rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .hero-btn-prev,
    .hero-btn-next {
        display: none !important;
    }

    .trust-grid {
        justify-content: flex-start;
        gap: 1rem;
    }

    .trust-item {
        flex: 1 1 40%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: unset;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-disclaimer {
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .visual-card {
        display: none;
    }
}

/* Mobile: 480px */
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .trust-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-item {
        flex: unset;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-divider {
        display: none;
    }

    .scroll-top-btn {
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

.discloser-wrapper {
    border-top: 1px solid #fff;
    margin-top: 16px;
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}