:root {
    --bg: #07080f;
    --bg2: #0d0f1e;
    --surface: #111320;
    --surface2: #161929;
    --blue: #6160e1;
    --blue-light: #95b0ff;
    --blue-glow: rgba(59, 108, 248, 0.35);
    --cyan: #6160e1;
    --cyan-glow: rgba(0, 212, 255, 0.2);
    --accent: #a78bfa;
    --text: #f0f2ff;
    --text-muted: #a8afd4;
    --text-dim: #4a5070;
    --border: rgba(255, 255, 255, 0.07);
    --border-glow: rgba(59, 108, 248, 0.3);
    --grad: linear-gradient(135deg, #7c7cff, #5555bb);
    --grad2: linear-gradient(135deg, #8585fd, #28288f);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Satoshi', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* NOISE OVERLAY */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =================== HEADER =================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

header.scrolled {
    background: rgba(7, 8, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 28px;
    filter: brightness(1.2);
}

nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

nav a.active {
    color: var(--blue-light);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px var(--blue-glow);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 6px 28px var(--blue-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    padding: 9px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}

.btn-ghost:hover {
    border-color: var(--blue-light);
    background: rgba(59, 108, 248, 0.08);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 4px;
}

/* =================== HERO =================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Ambient orbs */
.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 108, 248, 0.18) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 108, 248, 0.12);
    border: 1px solid rgba(59, 108, 248, 0.25);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--blue-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-label .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-light);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7)
    }
}

.hero-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

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

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #00ff5e36;
    border: solid 1px #00ff5e;
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-wa:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-wa img {
    width: 25px;
    height: 25px;
    opacity: 0.7;
    fill: white;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, border-color 0.2s;
}

.btn-call:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.hero-app-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.hero-app-badges {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-app-badges a img {
    height: 100px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.hero-app-badges a:hover img {
    opacity: 1;
}

/* ============ HERO IMAGE - THE GRADIENT BLEND MAGIC ============ */
.hero-image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-image-inner {
    position: relative;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
    width: 100%;
    /* The key blend effect: gradient mask on all 4 edges */
    -webkit-mask-image:
        linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to bottom, transparent 0%, black 12%, black 88%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-composite: intersect;
}

.hero-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    object-fit: cover;
}

/* Glow blob under image */
.hero-img-glow {
    position: absolute;
    width: 80%;
    height: 50%;
    bottom: -30px;
    left: 10%;
    background: radial-gradient(ellipse, rgba(59, 108, 248, 0.35) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 0;
    pointer-events: none;
}

/* Floating stats chips */
.hero-chip {
    position: absolute;
    background: rgba(13, 15, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 108, 248, 0.25);
    border-radius: 14px;
    padding: 10px 16px;
    z-index: 2;
    white-space: nowrap;
}

.hero-chip-1 {
    top: 12%;
    right: -8%;
}

.hero-chip-2 {
    bottom: 15%;
    left: -8%;
}

.hero-chip .chip-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 20px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.2;
}

.hero-chip .chip-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =================== SECTION SHARED =================== */
section {
    padding: 90px 0;
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 108, 248, 0.1);
    border: 1px solid rgba(59, 108, 248, 0.2);
    color: var(--blue-light);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.7;
}

/* =================== CAPSULE SECTION =================== */
.capsule-section {
    background: var(--bg2);
}

.capsule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.capsule-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 100%);
}

.capsule-image img {
    width: 100%;
    display: block;
    border-radius: 24px;
}

/* =================== VIDEO SECTION =================== */
.video-section {
    background: var(--bg);
}

.video-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 0 60px rgba(99, 138, 248, 0.12);
    background: var(--surface);
    max-width: 900px;
    margin: 40px auto 0;
    aspect-ratio: 16 / 9; /
}

.video-wrap iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
    border-radius: 24px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 8, 15, 0.4) 0%, transparent 60%);
    border-radius: 24px;
    pointer-events: none;
}

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

.tab-bar {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--surface);
    border-radius: 16px;
    padding: 6px;
    margin-bottom: 36px;
    border: 1px solid var(--border);
}

.tab-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 10px;
    transition: all 0.25s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.tab-btn.active {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 4px 16px var(--blue-glow);
}

.tab-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.courses-carousel {
    position: relative;
    overflow: hidden;
}

.courses-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.course-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 7px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 16px 40px rgba(59, 108, 248, 0.15);
}

.course-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.course-card-body {
    padding: 14px 16px 16px;
}

.course-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 12px;
}

.course-card-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--grad);
    color: #fff;
    text-decoration: none;
    padding: 8px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: opacity 0.2s, transform 0.2s;
}

.course-card-btn:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Carousel arrows */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.carousel-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.carousel-nav button:hover {
    border-color: var(--blue);
    color: var(--blue);
}

/* =================== STATS SECTION =================== */
.stats-section {
    background: linear-gradient(135deg, rgba(59, 108, 248, 0.15) 0%, rgba(0, 212, 255, 0.08) 100%);
    border-top: 1px solid var(--border-glow);
    border-bottom: 1px solid var(--border-glow);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.stat-item {
    background: var(--surface);
    padding: 40px 30px;
    text-align: center;
}

.stat-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 48px;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =================== ABOUT SECTION =================== */
.about-section {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-connect {
    background: linear-gradient(135deg, rgba(59, 108, 248, 0.12), rgba(0, 212, 255, 0.06));
    border: 1px solid rgba(59, 108, 248, 0.2);
    border-radius: 20px;
    padding: 28px;
    margin-top: 28px;
}

.about-connect p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.about-connect strong {
    color: var(--text);
    display: block;
    margin-bottom: 20px;
}

/* =================== INSIGHTS / BLOG =================== */
.insights-section {
    background: var(--bg2);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.insight-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
}

.insight-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glow);
}

.insight-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.insight-body {
    padding: 18px;
}

.insight-date {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.insight-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45;
    margin-bottom: 12px;
}

.insight-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}

.insight-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-light);
    text-decoration: none;
}

.insight-link:hover {
    text-decoration: underline;
}

/* =================== FAQ =================== */
.faq-section {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.faq-list {
    margin-top: 10px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 14px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color 0.3s;
    background: var(--surface);
}

.faq-item.open {
    border-color: var(--border-glow);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.2s;
}

.faq-item.open .faq-q {
    color: var(--blue-light);
}

.faq-icon {
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    background: var(--grad);
    border-color: transparent;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s;
    padding: 0 20px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 18px;
}

.faq-contact {
    background: linear-gradient(135deg, var(--surface), var(--surface2));
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    position: sticky;
}

.faq-contact h3 {
    font-family: 'Clash Display', sans-serif;
    font-size: 22px;
    margin-bottom: 8px;
}

.faq-contact p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* =================== APP DOWNLOAD =================== */
.download-section {
    background: var(--bg2);
    overflow: hidden;
    position: relative;
}

.download-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(59, 108, 248, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.download-badges {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.download-badges a img {
    height: 150px;
    border-radius: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.download-badges a:hover img {
    transform: translateY(-3px);
    filter: drop-shadow(0 8px 24px rgba(59, 108, 248, 0.3))
        drop-shadow(0 2px 6px rgba(59, 108, 248, 0.2));
}

.download-image-wrap {
    position: relative;
    -webkit-mask-image:
        linear-gradient(to left, transparent 0%, black 20%),
        linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to left, transparent 0%, rgb(255, 0, 0) 20%),
        linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-composite: intersect;
}

.download-image-wrap img {
    width: 100%;
    display: block;
}

/* =================== FOOTER =================== */
footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 30px 0px 0px 0px;
}

.footer-grid {
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 50px;
}

.footer-brand .logo-img {
    height: 24px;
    margin-bottom: 16px;
    filter: brightness(1.1);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.social-btn {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Apply grey effect to image */
.social-btn img {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.5s ease;
}

/* Hover: full visibility */
.social-btn:hover img {
    opacity: 1;
}





.footer-col h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--blue-light);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--blue-light);
}

/* Contact info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--blue-light);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--blue-light);
}

/* =================== WHATSAPP FLOAT =================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 52px;
    height: 52px;
    background: rgba(37, 211, 101, 0.342);
    border: solid 1px #00ff5e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 30px #01b643;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: float-wa 3s ease-in-out infinite;
}

.wa-float img{
    width: 70%;
    opacity: 0.7;
}


.wa-float:hover{
    transform: translateY(-3px) scale(1.05);
    background:  #2af5748f;
}



@keyframes float-wa {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

/* =================== MOBILE MENU =================== */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(7, 8, 15, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
}

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

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    font-family: 'Clash Display', sans-serif;
    padding: 14px 30px;
    border-radius: 14px;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    text-align: center;
}

.mobile-menu a:hover {
    background: rgba(59, 108, 248, 0.1);
    color: var(--blue-light);
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 28px;
    cursor: pointer;
}

/* =================== ANIMATIONS =================== */
@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fade-up 0.7s ease forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {

    .hero-grid,
    .capsule-grid,
    .about-grid,
    .download-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-cta .btn-ghost {
        display: none;
    }

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

    .download-image-wrap {
        display: none;
    }
}

@media (max-width: 600px) {
    .courses-track {
        grid-template-columns: 1fr;
    }

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

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

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

    .tab-bar {
        gap: 4px;
    }

    .tab-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

